From 1c66f1edbfccdd1ea32b17347db122dc6f9b075d Mon Sep 17 00:00:00 2001 From: malo-dev Date: Fri, 14 Jun 2024 10:06:55 +0200 Subject: [PATCH 1/3] eadd --- 0x14-mysql/4-mysql_configuration_primary | 19 ++- 0x14-mysql/4-mysql_configuration_replica | 13 +- 0x14-mysql/5-mysql_backup | 12 +- 0x14-mysql/README.md | 139 +----------------- 0x15-api/0-gather_data_from_an_API.py | 47 +++--- 0x15-api/1-export_to_CSV.py | 24 +++ 0x15-api/2-export_to_JSON.py | 29 ++++ 0x15-api/2.csv | 20 +++ .../3-dictionary_of_list_of_dictionaries.py | 31 ++++ 0x15-api/README.md | 18 +-- 0x16-api_advanced/0-subs.py | 28 ++-- 0x16-api_advanced/1-top_ten.py | 45 +++--- 0x16-api_advanced/100-count.py | 87 ++++++----- 0x16-api_advanced/2-recurse.py | 49 +++--- 0x16-api_advanced/README.md | 13 +- .../0-strace_is_your_friend.pp | 12 +- 0x17-web_stack_debugging_3/README.md | 4 +- 0x18-webstack_monitoring/.gitignore | 1 + 0x18-webstack_monitoring/2-setup_datadog | 1 + 0x18-webstack_monitoring/README.md | 1 + command_line_for_the_win/0-first_9_tasks.png | Bin 92785 -> 133405 bytes command_line_for_the_win/1-next_9_tasks.png | Bin 0 -> 138336 bytes command_line_for_the_win/2-next_9_tasks.png | Bin 0 -> 149929 bytes command_line_for_the_win/README.md | 6 +- 24 files changed, 284 insertions(+), 315 deletions(-) mode change 100644 => 100755 0x15-api/0-gather_data_from_an_API.py create mode 100755 0x15-api/1-export_to_CSV.py create mode 100755 0x15-api/2-export_to_JSON.py create mode 100644 0x15-api/2.csv create mode 100755 0x15-api/3-dictionary_of_list_of_dictionaries.py mode change 100644 => 100755 0x16-api_advanced/0-subs.py mode change 100644 => 100755 0x16-api_advanced/1-top_ten.py mode change 100644 => 100755 0x16-api_advanced/100-count.py mode change 100644 => 100755 0x16-api_advanced/2-recurse.py mode change 100644 => 100755 0x17-web_stack_debugging_3/0-strace_is_your_friend.pp create mode 100644 0x18-webstack_monitoring/.gitignore create mode 100644 0x18-webstack_monitoring/2-setup_datadog mode change 100755 => 100644 command_line_for_the_win/0-first_9_tasks.png create mode 100644 command_line_for_the_win/1-next_9_tasks.png create mode 100644 command_line_for_the_win/2-next_9_tasks.png diff --git a/0x14-mysql/4-mysql_configuration_primary b/0x14-mysql/4-mysql_configuration_primary index c330089..113b8b8 100644 --- a/0x14-mysql/4-mysql_configuration_primary +++ b/0x14-mysql/4-mysql_configuration_primary @@ -1,6 +1,15 @@ +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License, version 2.0, for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + # # The MySQL Server configuration file. # +# For explanations see +# http://dev.mysql.com/doc/mysql/en/server-system-variables.html [mysqld] pid-file = /var/run/mysqld/mysqld.pid @@ -8,12 +17,10 @@ socket = /var/run/mysqld/mysqld.sock datadir = /var/lib/mysql log-error = /var/log/mysql/error.log # By default we only accept connections from localhost -bind-address = 0.0.0.0 -# Disabling symbolic-links is recommended to prevent assorted security risks -symbolic-links=0 -# Distinguish servers in a replication setup +#bind-address = 127.0.0.1 server-id = 1 -# MySQL's Binary Log File log_bin = /var/log/mysql/mysql-bin.log -# Database we want to replicate +# Disabling symbolic-links is recommended to prevent assorted security risks +symbolic-links=0 + binlog_do_db = tyrell_corp diff --git a/0x14-mysql/4-mysql_configuration_replica b/0x14-mysql/4-mysql_configuration_replica index 00dbaaf..ed3393d 100644 --- a/0x14-mysql/4-mysql_configuration_replica +++ b/0x14-mysql/4-mysql_configuration_replica @@ -1,6 +1,7 @@ -# # The MySQL Server configuration file. # +# For explanations see +# http://dev.mysql.com/doc/mysql/en/server-system-variables.html [mysqld] pid-file = /var/run/mysqld/mysqld.pid @@ -8,14 +9,10 @@ socket = /var/run/mysqld/mysqld.sock datadir = /var/lib/mysql log-error = /var/log/mysql/error.log # By default we only accept connections from localhost -bind-address = 127.0.0.1 -# Disabling symbolic-links is recommended to prevent assorted security risks -symbolic-links=0 -# Distinguish servers in a replication setup +# bind-address = 127.0.0.1 server-id = 2 -# MySQL's Binary Log File log_bin = /var/log/mysql/mysql-bin.log -# Database we want to replicate +# Disabling symbolic-links is recommended to prevent assorted security risks +symbolic-links=0 binlog_do_db = tyrell_corp -# Defines the location of the replica's relay log relay-log = /var/log/mysql/mysql-relay-bin.log diff --git a/0x14-mysql/5-mysql_backup b/0x14-mysql/5-mysql_backup index ce204ee..4e42ca6 100755 --- a/0x14-mysql/5-mysql_backup +++ b/0x14-mysql/5-mysql_backup @@ -1,11 +1,5 @@ #!/usr/bin/env bash -# backup and compress my databases +# This script generates a MySQL dump and creates a compressed archive of it -# variables -day=$(date +"%d") -month=$(date +"%m") -year=$(date +"%Y") -file_name="$day-$month-$year.tar.gz" - -mysqldump --all-databases -u root --password="$1" > backup.sql -tar -czvf "$file_name" backup.sql +mysqldump -uroot -p"$1" --all-databases > backup.sql +tar -czf $(date +%d-%m-%Y).tar.gz backup.sql diff --git a/0x14-mysql/README.md b/0x14-mysql/README.md index 6892900..35e8a57 100644 --- a/0x14-mysql/README.md +++ b/0x14-mysql/README.md @@ -1,138 +1 @@ -# 0x14. MySQL - -

- - -## Resource - -- [What is a database](https://searchdatamanagement.techtarget.com/definition/database) -- [What is a database primary/replicate cluster](https://www.digitalocean.com/community/tutorials/how-to-choose-a-redundancy-plan-to-ensure-high-availability#sql-replication) -- [MySQL primary/replicate setup](https://www.digitalocean.com/community/tutorials/how-to-set-up-replication-in-mysql) -- [Build a robust database backup strategy](https://www.databasejournal.com/ms-sql/developing-a-sql-server-backup-strategy/) -- [Privileges Provided by MySQL](https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_replication-client) (***Replication Client***) -- [Creating User for Replication](https://dev.mysql.com/doc/refman/8.0/en/replication-howto-repuser.html) -- [Setting up replicas](https://dev.mysql.com/doc/refman/5.7/en/replication-setup-replicas.html) (***MySQL 5.7.x***) - -## Tasks - -

-0. Install MySQL
-image -
- -
-1. Let us in!
- -image -```sh -mysql> CREATE USER 'holberton_user'@'localhost' IDENTIFIED BY 'projectcorrection280hbtn'; -mysql> GRANT REPLICATION CLIENT ON *.* to 'holberton_user'@'localhost'; -mysql> FLUSH PRIVILEGES; -``` - -
- -
-2. If only you could see what I've seen with your eyes
- -image -```sh -mysql> CREATE DATABASE tyrell_corp; -mysql> USE tyrell_corp; -mysql> CREATE TABLE nexus6 (id INT, name VARCHAR(256)); -mysql> INSERT INTO nexus6 (id, name) VALUES ('1', 'Leon'); -mysql> GRANT SELECT ON tyrell_corp.nexus6 TO 'holberton_user'@'localhost'; -``` - -
- -
-3. Quite an experience to live in fear, isn't it?
- -image -```sh -msql> CREATE USER 'replica_user'@'%' IDENTIFIED BY 'password'; -mysql> GRANT SELECT ON mysql.user TO 'holberton_user'@'localhost'; -mysql> GRANT REPLICATION SLAVE ON *.* TO 'replica_user'@'%'; -``` - -
- -
-4. Setup a Primary-Replica infrastructure using MySQL
- -09e83e914f0d6865ce320a47f2f14837a5b190b6 -image -image -image - -+ [MySQL primary configuration](./4-mysql_configuration_primary) -+ [MySQL replica configuration](./4-mysql_configuration_replica) - -
- -
-5. MySQL backup
- -[![IMAGE ALT TEXT HERE](https://i.postimg.cc/3NtKg0gR/verizon.jpg)](https://www.youtube.com/watch?v=ANU-oSE5_hU) -image - -```sh -ubuntu@03-web-01:~$ ls -5-mysql_backup -ubuntu@03-web-01:~$ ./5-mysql_backup mydummypassword -backup.sql -ubuntu@03-web-01:~$ ls -01-03-2017.tar.gz 5-mysql_backup backup.sql -ubuntu@03-web-01:~$ more backup.sql --- MySQL dump 10.13 Distrib 5.7.25, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: --- ------------------------------------------------------ --- Server version 5.7.25-0ubuntu0.14.04.1 - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Current Database: `tyrell_corp` --- - -CREATE DATABASE /*!32312 IF NOT EXISTS*/ `tyrell_corp` /*!40100 DEFAULT CHARACTER SET latin1 */; - -USE `tyrell_corp`; - --- --- Table structure for table `nexus6` --- - -DROP TABLE IF EXISTS `nexus6`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `nexus6` ( - `id` int(6) unsigned NOT NULL AUTO_INCREMENT, - `firstname` varchar(30) NOT NULL, - `lastname` varchar(30) NOT NULL, - `email` varchar(50) DEFAULT NULL, - `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; -ubuntu@03-web-01:~$ -ubuntu@03-web-01:~$ file 01-03-2017.tar.gz -01-03-2017.tar.gz: gzip compressed data, from Unix, last modified: Wed Mar 1 23:38:09 2017 -ubuntu@03-web-01:~$ -``` - -+ [Backup script](./5-mysql_backup) - -
+# Solutions to tasks on MySQL diff --git a/0x15-api/0-gather_data_from_an_API.py b/0x15-api/0-gather_data_from_an_API.py old mode 100644 new mode 100755 index 9ab98b2..6f6d8b0 --- a/0x15-api/0-gather_data_from_an_API.py +++ b/0x15-api/0-gather_data_from_an_API.py @@ -1,30 +1,31 @@ #!/usr/bin/python3 -'''A script that gathers employee name completed -tasks and total number of tasks from an API -''' +"""Accessing a REST API for todo lists of employees""" -import re import requests import sys -REST_API = "https://jsonplaceholder.typicode.com" if __name__ == '__main__': - if len(sys.argv) > 1: - if re.fullmatch(r'\d+', sys.argv[1]): - id = int(sys.argv[1]) - emp_req = requests.get('{}/users/{}'.format(REST_API, id)).json() - task_req = requests.get('{}/todos'.format(REST_API)).json() - emp_name = emp_req.get('name') - tasks = list(filter(lambda x: x.get('userId') == id, task_req)) - completed_tasks = list(filter(lambda x: x.get('completed'), tasks)) - print( - 'Employee {} is done with tasks({}/{}):'.format( - emp_name, - len(completed_tasks), - len(tasks) - ) - ) - if len(completed_tasks) > 0: - for task in completed_tasks: - print('\t {}'.format(task.get('title'))) + employeeId = sys.argv[1] + baseUrl = "https://jsonplaceholder.typicode.com/users" + url = baseUrl + "/" + employeeId + + response = requests.get(url) + employeeName = response.json().get('name') + + todoUrl = url + "/todos" + response = requests.get(todoUrl) + tasks = response.json() + done = 0 + done_tasks = [] + + for task in tasks: + if task.get('completed'): + done_tasks.append(task) + done += 1 + + print("Employee {} is done with tasks({}/{}):" + .format(employeeName, done, len(tasks))) + + for task in done_tasks: + print("\t {}".format(task.get('title'))) diff --git a/0x15-api/1-export_to_CSV.py b/0x15-api/1-export_to_CSV.py new file mode 100755 index 0000000..6b2ffb7 --- /dev/null +++ b/0x15-api/1-export_to_CSV.py @@ -0,0 +1,24 @@ +#!/usr/bin/python3 +"""Accessing a REST API for todo lists of employees""" + +import requests +import sys + + +if __name__ == '__main__': + employeeId = sys.argv[1] + baseUrl = "https://jsonplaceholder.typicode.com/users" + url = baseUrl + "/" + employeeId + + response = requests.get(url) + username = response.json().get('username') + + todoUrl = url + "/todos" + response = requests.get(todoUrl) + tasks = response.json() + + with open('{}.csv'.format(employeeId), 'w') as file: + for task in tasks: + file.write('"{}","{}","{}","{}"\n' + .format(employeeId, username, task.get('completed'), + task.get('title'))) diff --git a/0x15-api/2-export_to_JSON.py b/0x15-api/2-export_to_JSON.py new file mode 100755 index 0000000..bd7fb2f --- /dev/null +++ b/0x15-api/2-export_to_JSON.py @@ -0,0 +1,29 @@ +#!/usr/bin/python3 +"""Accessing a REST API for todo lists of employees""" + +import json +import requests +import sys + + +if __name__ == '__main__': + employeeId = sys.argv[1] + baseUrl = "https://jsonplaceholder.typicode.com/users" + url = baseUrl + "/" + employeeId + + response = requests.get(url) + username = response.json().get('username') + + todoUrl = url + "/todos" + response = requests.get(todoUrl) + tasks = response.json() + + dictionary = {employeeId: []} + for task in tasks: + dictionary[employeeId].append({ + "task": task.get('title'), + "completed": task.get('completed'), + "username": username + }) + with open('{}.json'.format(employeeId), 'w') as filename: + json.dump(dictionary, filename) diff --git a/0x15-api/2.csv b/0x15-api/2.csv new file mode 100644 index 0000000..fb6be51 --- /dev/null +++ b/0x15-api/2.csv @@ -0,0 +1,20 @@ +"2","Antonette","False","suscipit repellat esse quibusdam voluptatem incidunt" +"2","Antonette","True","distinctio vitae autem nihil ut molestias quo" +"2","Antonette","False","et itaque necessitatibus maxime molestiae qui quas velit" +"2","Antonette","False","adipisci non ad dicta qui amet quaerat doloribus ea" +"2","Antonette","True","voluptas quo tenetur perspiciatis explicabo natus" +"2","Antonette","True","aliquam aut quasi" +"2","Antonette","True","veritatis pariatur delectus" +"2","Antonette","False","nesciunt totam sit blanditiis sit" +"2","Antonette","False","laborum aut in quam" +"2","Antonette","True","nemo perspiciatis repellat ut dolor libero commodi blanditiis omnis" +"2","Antonette","False","repudiandae totam in est sint facere fuga" +"2","Antonette","False","earum doloribus ea doloremque quis" +"2","Antonette","False","sint sit aut vero" +"2","Antonette","False","porro aut necessitatibus eaque distinctio" +"2","Antonette","True","repellendus veritatis molestias dicta incidunt" +"2","Antonette","True","excepturi deleniti adipisci voluptatem et neque optio illum ad" +"2","Antonette","False","sunt cum tempora" +"2","Antonette","False","totam quia non" +"2","Antonette","False","doloremque quibusdam asperiores libero corrupti illum qui omnis" +"2","Antonette","True","totam atque quo nesciunt" diff --git a/0x15-api/3-dictionary_of_list_of_dictionaries.py b/0x15-api/3-dictionary_of_list_of_dictionaries.py new file mode 100755 index 0000000..a2acb3a --- /dev/null +++ b/0x15-api/3-dictionary_of_list_of_dictionaries.py @@ -0,0 +1,31 @@ +#!/usr/bin/python3 +"""Accessing a REST API for todo lists of employees""" + +import json +import requests +import sys + + +if __name__ == '__main__': + url = "https://jsonplaceholder.typicode.com/users" + + response = requests.get(url) + users = response.json() + + dictionary = {} + for user in users: + user_id = user.get('id') + username = user.get('username') + url = 'https://jsonplaceholder.typicode.com/users/{}'.format(user_id) + url = url + '/todos/' + response = requests.get(url) + tasks = response.json() + dictionary[user_id] = [] + for task in tasks: + dictionary[user_id].append({ + "task": task.get('title'), + "completed": task.get('completed'), + "username": username + }) + with open('todo_all_employees.json', 'w') as file: + json.dump(dictionary, file) diff --git a/0x15-api/README.md b/0x15-api/README.md index 2f2670b..a5250f1 100644 --- a/0x15-api/README.md +++ b/0x15-api/README.md @@ -1,17 +1 @@ -# 0x15. API - -## Resource - -- [Friends don’t let friends program in shell script](https://www.turnkeylinux.org/blog/friends-dont-let-friends-program-shell-script) -- [What is an API](https://www.webopedia.com/definitions/api/) -- [What is an API? In English, please](https://www.freecodecamp.org/news/what-is-an-api-in-english-please-b880a3214a82/) -- [What is a REST API](https://www.sitepoint.com/rest-api/) -- [What are microservices](https://smartbear.com/solutions/microservices/) -- [PEP8 Python style - having a clean code respecting style guide is really appreciated in the industry](https://www.python.org/dev/peps/pep-0008/) - -## Tasks - -
-0. Gather data from an API
-image -
+# Solutions to tasks on 0x15. API diff --git a/0x16-api_advanced/0-subs.py b/0x16-api_advanced/0-subs.py old mode 100644 new mode 100755 index 38874ce..2a5ff5e --- a/0x16-api_advanced/0-subs.py +++ b/0x16-api_advanced/0-subs.py @@ -1,17 +1,27 @@ #!/usr/bin/python3 """ -Contains the number_of_subscribers function +number of subscribers for a given subreddit """ -import requests +from requests import get def number_of_subscribers(subreddit): - """returns the number of subscribers for a given subreddit""" - if subreddit is None or type(subreddit) is not str: + """ + function that queries the Reddit API and returns the number of subscribers + (not active users, total subscribers) for a given subreddit. + """ + + if subreddit is None or not isinstance(subreddit, str): + return 0 + + user_agent = {'User-agent': 'Google Chrome Version 81.0.4044.129'} + url = 'https://www.reddit.com/r/{}/about.json'.format(subreddit) + response = get(url, headers=user_agent) + results = response.json() + + try: + return results.get('data').get('subscribers') + + except Exception: return 0 - r = requests.get('http://www.reddit.com/r/{}/about.json'.format(subreddit), - headers={'User-Agent': '0x16-api_advanced:project:\ -v1.0.0 (by /u/firdaus_cartoon_jr)'}).json() - subs = r.get("data", {}).get("subscribers", 0) - return subs diff --git a/0x16-api_advanced/1-top_ten.py b/0x16-api_advanced/1-top_ten.py old mode 100644 new mode 100755 index 23ab6cc..b1ae443 --- a/0x16-api_advanced/1-top_ten.py +++ b/0x16-api_advanced/1-top_ten.py @@ -1,22 +1,33 @@ #!/usr/bin/python3 -"""Contains top_ten function""" -import requests + +""" +prints the titles of the first 10 hot posts listed for a given subreddit +""" + +from requests import get def top_ten(subreddit): - """Print the titles of the 10 hottest posts on a given subreddit.""" - url = "https://www.reddit.com/r/{}/hot/.json".format(subreddit) - headers = { - "User-Agent": "0x16-api_advanced:project:\ -v1.0.0 (by /u/firdaus_cartoon_jr)" - } - params = { - "limit": 10 - } - response = requests.get(url, headers=headers, params=params, - allow_redirects=False) - if response.status_code == 404: + """ + function that queries the Reddit API and prints the titles of the first + 10 hot posts listed for a given subreddit + """ + + if subreddit is None or not isinstance(subreddit, str): + print("None") + + user_agent = {'User-agent': 'Google Chrome Version 81.0.4044.129'} + params = {'limit': 10} + url = 'https://www.reddit.com/r/{}/hot/.json'.format(subreddit) + + response = get(url, headers=user_agent, params=params) + results = response.json() + + try: + my_data = results.get('data').get('children') + + for i in my_data: + print(i.get('data').get('title')) + + except Exception: print("None") - return - results = response.json().get("data") - [print(c.get("data").get("title")) for c in results.get("children")] diff --git a/0x16-api_advanced/100-count.py b/0x16-api_advanced/100-count.py old mode 100644 new mode 100755 index cc50b04..12963b4 --- a/0x16-api_advanced/100-count.py +++ b/0x16-api_advanced/100-count.py @@ -1,43 +1,54 @@ #!/usr/bin/python3 -"""Contains the count_words function""" +""" raddit api""" + +import json import requests -def count_words(subreddit, word_list, found_list=[], after=None): - '''Prints counts of given words found in hot posts of a given subreddit. - - Args: - subreddit (str): The subreddit to search. - word_list (list): The list of words to search for in post titles. - found_list (obj): Key/value pairs of words/counts. - after (str): The parameter for the next page of the API results. - ''' - user_agent = {'User-agent': 'test45'} - posts = requests.get('http://www.reddit.com/r/{}/hot.json?after={}' - .format(subreddit, after), headers=user_agent) - if after is None: - word_list = [word.lower() for word in word_list] - - if posts.status_code == 200: - posts = posts.json()['data'] - aft = posts['after'] - posts = posts['children'] - for post in posts: - title = post['data']['title'].lower() - for word in title.split(' '): - if word in word_list: - found_list.append(word) - if aft is not None: - count_words(subreddit, word_list, found_list, aft) +def count_words(subreddit, word_list, after="", count=[]): + """count all words""" + + if after == "": + count = [0] * len(word_list) + + url = "https://www.reddit.com/r/{}/hot.json".format(subreddit) + request = requests.get(url, + params={'after': after}, + allow_redirects=False, + headers={'user-agent': 'bhalut'}) + + if request.status_code == 200: + data = request.json() + + for topic in (data['data']['children']): + for word in topic['data']['title'].split(): + for i in range(len(word_list)): + if word_list[i].lower() == word.lower(): + count[i] += 1 + + after = data['data']['after'] + if after is None: + save = [] + for i in range(len(word_list)): + for j in range(i + 1, len(word_list)): + if word_list[i].lower() == word_list[j].lower(): + save.append(j) + count[i] += count[j] + + for i in range(len(word_list)): + for j in range(i, len(word_list)): + if (count[j] > count[i] or + (word_list[i] > word_list[j] and + count[j] == count[i])): + aux = count[i] + count[i] = count[j] + count[j] = aux + aux = word_list[i] + word_list[i] = word_list[j] + word_list[j] = aux + + for i in range(len(word_list)): + if (count[i] > 0) and i not in save: + print("{}: {}".format(word_list[i].lower(), count[i])) else: - result = {} - for word in found_list: - if word.lower() in result.keys(): - result[word.lower()] += 1 - else: - result[word.lower()] = 1 - for key, value in sorted(result.items(), key=lambda item: item[1], - reverse=True): - print('{}: {}'.format(key, value)) - else: - return + count_words(subreddit, word_list, after, count) diff --git a/0x16-api_advanced/2-recurse.py b/0x16-api_advanced/2-recurse.py old mode 100644 new mode 100755 index a113c96..af39549 --- a/0x16-api_advanced/2-recurse.py +++ b/0x16-api_advanced/2-recurse.py @@ -1,31 +1,28 @@ #!/usr/bin/python3 -"""Contains recurse function""" +""" +Using reddit's API +""" import requests +after = None -def recurse(subreddit, hot_list=[], after="", count=0): - """Returns a list of titles of all hot posts on a given subreddit.""" - url = "https://www.reddit.com/r/{}/hot/.json".format(subreddit) - headers = { - "User-Agent": "0x16-api_advanced:project:\ -v1.0.0 (by /u/firdaus_cartoon_jr)" - } - params = { - "after": after, - "count": count, - "limit": 100 - } - response = requests.get(url, headers=headers, params=params, - allow_redirects=False) - if response.status_code == 404: - return None +def recurse(subreddit, hot_list=[]): + """returning top ten post titles recursively""" + global after + user_agent = {'User-Agent': 'api_advanced-project'} + url = "https://www.reddit.com/r/{}/hot.json".format(subreddit) + parameters = {'after': after} + results = requests.get(url, params=parameters, headers=user_agent, + allow_redirects=False) - results = response.json().get("data") - after = results.get("after") - count += results.get("dist") - for c in results.get("children"): - hot_list.append(c.get("data").get("title")) - - if after is not None: - return recurse(subreddit, hot_list, after, count) - return hot_list + if results.status_code == 200: + after_data = results.json().get("data").get("after") + if after_data is not None: + after = after_data + recurse(subreddit, hot_list) + all_titles = results.json().get("data").get("children") + for title_ in all_titles: + hot_list.append(title_.get("data").get("title")) + return hot_list + else: + return (None) diff --git a/0x16-api_advanced/README.md b/0x16-api_advanced/README.md index f140b5b..3cdc06e 100644 --- a/0x16-api_advanced/README.md +++ b/0x16-api_advanced/README.md @@ -1,12 +1 @@ -# 0x16. API advanced -In this project, I practice with the [Reddit API](https://www.reddit.com/dev/api/)'s many endpoints. There’s a lot of endpoints available, many that don’t require any form of authentication, and there’s tons of information to be parsed out and presented. - -## Learned -- How to read API documentation to find the endpoints you’re looking for -- How to use an API with pagination -- How to parse JSON results from an API -- How to make a recursive API call -- How to sort a dictionary by value - -## Resources -+ [Reddit API](https://www.reddit.com/dev/api/) \ No newline at end of file +# Solutions to tasks on 0x16. API advanced diff --git a/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp b/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp old mode 100644 new mode 100755 index 1971a17..1607328 --- a/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp +++ b/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp @@ -1,6 +1,10 @@ -# Fixes bad `phpp` extensions to `php` +# A puppet manuscript to replace a line in a file on a server -exec { 'fix-wordpress': - command => 'sed -i s/phpp/php/g /var/www/html/wp-settings.php', - path => '/usr/local/bin/:/bin/' +$file_to_edit = '/var/www/html/wp-settings.php' + +#replace line containing "phpp" with "php" + +exec { 'replace_line': + command => "sed -i 's/phpp/php/g' ${file_to_edit}", + path => ['/bin','/usr/bin'] } diff --git a/0x17-web_stack_debugging_3/README.md b/0x17-web_stack_debugging_3/README.md index 72c784f..ea2bff5 100644 --- a/0x17-web_stack_debugging_3/README.md +++ b/0x17-web_stack_debugging_3/README.md @@ -1,3 +1 @@ -# 0x17. Web stack debugging #3 -This was the fourth project in a series of web stack debugging projects. In these projects, I was given broken/bugged webstacks in isolated containers, and asked to fix them to a working state. For each task, I wrote a script automating the commands necessary to fix the -web stack. +# Solution to tasks on 0x17. Web stack debugging #3 diff --git a/0x18-webstack_monitoring/.gitignore b/0x18-webstack_monitoring/.gitignore new file mode 100644 index 0000000..2eea525 --- /dev/null +++ b/0x18-webstack_monitoring/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/0x18-webstack_monitoring/2-setup_datadog b/0x18-webstack_monitoring/2-setup_datadog new file mode 100644 index 0000000..18128cf --- /dev/null +++ b/0x18-webstack_monitoring/2-setup_datadog @@ -0,0 +1 @@ +2uj-4wb-rx8 diff --git a/0x18-webstack_monitoring/README.md b/0x18-webstack_monitoring/README.md index e69de29..7d3a48e 100644 --- a/0x18-webstack_monitoring/README.md +++ b/0x18-webstack_monitoring/README.md @@ -0,0 +1 @@ +# Solutions to tasks on 0x18. Webstack monitoring diff --git a/command_line_for_the_win/0-first_9_tasks.png b/command_line_for_the_win/0-first_9_tasks.png old mode 100755 new mode 100644 index 9b9aca83345315aba971c4d2d1b378d5a85f7a54..e72a72d55c0c9e7641cd3172b2ad6f48297c3a09 GIT binary patch literal 133405 zcmd43Wmr^e8z_t*-Q6Id2qGatHzfA`}e;eut*uh9Ca% z#N~sG1VZH))gJuIQwwoLaRh{#I82xkGWK|sJ8?LC;KLQ3vOc@j8xE50wt)`0ZI>dEy3VRXFK6d4O&Ivjra?B5plgd)Y&qjk0 zKS@$V#*jxQvQ@R#S=7#%Ad#OIk!w60e4o77_$c7vpP)VE$INcW=AdiP<5+idin`HQ zv}xO!ExPd9Gm11sCbl<*TV)lN_UML-W>%@*W1?*r#l|CI-BcaoSh;v7cVdett3uZC znT3*mUkrq}nhJ^zz=t^=EuyprFzF|~0H}Dsp^YM*Pg)(V$b|N0-~QtwdOkBgo5fqd z>9@>m)L&L$^hX*H**R1vs4QuRpF8E*iukn$l46pe+iRas2)8wF+d1(8-qXRCcUUJ~ zXqigNRzBrTXk8H8oFBO;VYr9WQ0nw^6866G#h)iVgvxm(C1{|>H4jdczG!`6hZAt^ zbqWB68~~fnNB=q#C%hg%*eU5lwkjDphTi$ecq9H-gt{`MGK6@&dznHJ6L0s3t9#Y2u)MLZH~ZpyQY>x3kLyzvDnyioQ)ZuKi%&FLcI&;t*EV%~PO41^=hbem+1N zxd#5-X|cU8xD0i2WGC&6kT}9$|3_|eN14OT#Fl$m+rxw;ZeDc`g7_^X&1(Vuz|92KTbVeDkVn{#V$97!N+I777$a>w`% z!1=8fwa!R{WdpWu{1RdLuE-}vr&K(3w2()4jk?%O+dfH{$&mJ_zV%C-utRC;@c5t2-2HBOc2KGVcx<+qV96ql#@qFeBaidyh5d}Ym)m8@Y`6+>>mo;Ocg&iH4NRXb}F0gKsHrPTkWw#0YQ)v+ur z_D{~ZUl{UXDFB*iUd#6hiuQER`HcI+@xRoe+hgs8p*j?j6HCKh|5t;QQkP$g^x%?UjDXXsg;`A zPDVEe4LJB7Bp>*XPCx@%MUK*R=2FnEY0d`*35!HxV0+$r`NYY84ApyI?RK)FB}0^dCz%K4#KngJs+YNPcMMcKvT?k`_ z;DCh7|Fq+8CiW|^2H^6ziSlRIlB9ngW;;BV*nq3E)1gw{a?dt2fkkiM8vst%8p*pb z2DCW7U?|RLf%-0wk_;+LA9sqoHt~Z$lOZ4BAs0OnMjlj!M>}ob%i%ibSq6Rh9opXp zP8=`Te;pdU%2H6^s-|>%PY2roGs3P(u~Xlyg}=mS1&4gZccP{Hmn2Rod)74c`)hqZ zs2ZGrzGe1j*KMFpx@%veF=CSCO8fdfDXKg}Vo51a`LH2QIi9%(enXMqf;I*C zvZpFz0U^O!PW z)D=*YC1|iRLGUz!DhB4i2zrqqWl_8ylOm7bzP*_C=(>(+AX36A@e+%#4Iz_m5bX;c zx_A4N2tn#2Oyy);mJpdVRsIX#YdCxv9o4}3H0+Gi@7464Q{->m zpBTQ!p*@I^;Fn-Rdy4qhhTG8)xBAqebNLaW^wm4@{~Rbo1&%`g`-#24yva_BX7=;p+aqtkLy=g2$1q3kpKU=4Xz-D z7>)x5kQt>lG}VvIah|aA`wmi(=~1UsFo>B&tgT7!8~(z1O;f^uFd9k>=dxnPLpI~d ztxjqH@(?3V9Av%YYX;(oE<%BJU}m}*zTm&%Gg^RilH-1EzHR%(aHkyrhn>+Q@7q_j z_o>LgQV?|3FxX{Z{)dAkqnScNK4NCl@INYaUeP|~a<0pK$#Hn@`Aaj$^3BN_h0}|F zE3;=<0xuUbyv4~74(W~8ZaSUS(JUro*9Y-01P#H3oma=GulMSd@itCektK5RkSXW< z4VFEC)l@ciFnhX%Io5e7HaExsGd(h!->5%fNlwNnXZ{~W0hD`(7^33&5l_k4`7Hi= z_3?>xvW<`uSJ0E-EMK%-j|auVZ^V85QRGeFj#j7h`Y2915JrOj@{vckzDCICfkEF# zv1ZC~$Sf4I8;KJI%-d=@kl|a86fmpSe!ryOxoRYHG>5Hu zzp>i1#ivu(j>Qr}+iA?wzIwa-wdPvf?vVp1zZypJML$n$otlIM>a&XnJw+#YF8lS_pBEWT z;wv&}#W-CE>sKF6G719MMAoN8xA`6S5;QL_MpN-QlP+3Sul5AnU~md%0f!G74g2X@ z-BtK6nYz#14jdsCU2jGi{X0)QSP|Sg^dq zf|0;k+UP+Fd;!>QiQ)_xVlsUm2lQ$bi;Mwt|4V53(f`oDOg`7n$T4>8P$5}T`*To{t4`tQIDRCRjM=Adj<(IT@K@OhI z>TUAa!?J6|D06reRJQ@#zQ37my4o5osc*)^2od~JRzpCk-$AO;uY>fJR3+cV_8=MQ zCj?mf>PR~qJDs*eHq&{sJKgBq>Z)w@Gb)=}Yd6-#E!tL84GgTdP@PZG08PDeXv{TU zO=$9JaJPTmCi`8m5mEUJvdCxB%h(dfvQHC3tmzhT?dM&D6%}yueD1iqi`dO>U?<2< z>%03H-bp@XH9r^A$y)yPEqfVI>{gMy(%+K!6-EBWq?FV3$Y}VlI?s{orFP94d+t|z zf*Q};=|KUG-1@hJv#vXYndD7@XR0X<#hrTq=xM$$AURI5p*|-gy0(m_^VJw?yywJ* zVQ*tB4N{xzdSoL@>#z3fuF!hWJlj6vP8aclFUS5Ok#2*w?ePz+f8_4v3#UwMg|E-R zZ_u}tL+KS#LrV2ASYthu*d-Pl^)b|FY(lt}w&AQi#^cwrUM{v+M8Mdjl$iRHT+GbKE58 zdRea#cI@q`X6aIwT<2tG>2*<$ZSE9aGVw;PN3!?HiO>obK zV(0px9(c1d^_C2il&;kAUQBIXh1wT+>|6nEI*43n`CYui_8aXq8K&xhco3 z-;bR%b_W}6nAP7{YlPT`x6_#A`tV7MbgScQU!Lgg-}v4$jKAv#8?uB9ORzvK8*$Wv zv!Z>*Y9ta7d4k4CN<9Ur;`qecc;!{s5n zho3E(ec{OllNo^qe<@rW^Bst~*JrHKS8Tu=w!#fO>8 zT-G>OKnE;vVtcHAK6FmhSJJZPgXlP#o@;-kiqy`Q$WHc_1C>{(-E!oFUdout-7v{2 zp0}yq7Ux;@e{`2D|DeQ5CR~~E>q#VXm2T|u_s5YBN#NQF>Q#7s`cz-5ut(NP#OCwIsA4QP2otoF z3=0s+;D@-Da9vD&+chD|tMq^?(QR#3*N!_l+VVFdH`$K``Z4r2(^*S3bZ2MjTMi#a zGv#}SNb{!v+#_hCsno3yS*E+e(6NI>ZT>X@JxPP4mYQ6Lc^QC#h5rFT9`R#+uG)Mb zRoqy=Yw?nX32PoRF3k*1Kluz(REz(4w^R8fyI+K}KG}SqPn?&qzE;z2?*RElbXW^* z%3tdHFD`tkjF$~}XtAQtS{)}ZP6*5vZiyrHSAJlkvLYq2_8inuN zgvnYv_4=iS-OM0uRJgxxOK}@>ERzr0s0VvPeeK;7!D*Hl3 zpeIGW@*cZGTZPC=b2zpSO7kqlRd#Qa+?xj}e0UtY8@FxDYB9(7!de;|KcR4lGKa8=(+!n-K3RfyVcOg}Z0&pKO*FZ<=(M4|_UrST>k`9;WL9 z$Lo&rxh4+cx>|4=8{FO;E}VG6sl;cZ-(2*mYHd>Qhu=3N&^1xVLmJdXrKYQp`MI(% zTYvBeyPqwH9yaN#o(;(z^zX%;l;y$Ho>orf64wiDzD&+L=&3i38FVQMJNfTpgc0n0 zGR0N#FZI9an;fGBq@fi$(Qq#)*B(J-c#^2^>ffbt6~S;c6)v|cIGMNxVFc$ zPxrsfY$y9z&3#Rf;4+Csl2T^Sv>QuY;<@c?chVP&&E8j9!7k(9(D1#TEUw4T14q@$ zuzo7@AJ`NA@GM`WqoZ?B#4NGr$~4SMe4GVp3+GSoUtQ#34TDO0&D9GO$HHdww2pBw z)l)CPtc@(jM*BAap{YiKQ zW{K?AXx?lE3fzITA@0P;sUTryf^j7;`-D`Mt=_J>JWbvUQ&PQ$#fJOU5}&gJ6qad} zNKASq`3!?@-|_9wiACzLr7!Y45ZZUQh|lHY(6~1-Y#APW;e@P8raGm&cRf43uW$0f zPhl5wZ~KV^wRCuC&vz&^5B>oe=`UfSjWLPQA1)65p%Y`X(e7Z&)I>IJlk$(d{pS${ z2nY#JM;-hL<3w+nI7&62?MvH7%ka2;F&HrxNMIb^tBkBA5j*59cJ%#w)=^h zA{wDK96A>2vr0%QL>yAo%xBnJxD*G@gN2T@fges(M+|&1Y5eRIJp1LktUpmt@hVvK zD0kCs2Of}wk+Q7Z5U`0_&~tsuCu$lT97uJf>3B%b+PLtt{V~Tyx7Ag>jQ)4z0sbVN z2m~@qIXl;WKm)mqi^wV~YeX8B%|;qLoTW5Dmu#dsSCGVfy!DEW=UaC5Z8iNg#vdds zK%cijk=n-li^L0fs^N+N6y*n|wIovTU>Jj_;_AZn*)ttEoUiBt_%c7({M+qEuAvy8 zeEmz>jzr_!gy@Ta=T5!K#)*Iw(a+e*GUb+G;XEFjTLYb+JFqmwev-%O&L$AFz}+xM zZu<#;Yz&3-_*^?6LdYX-yd3>o@YN&egFP_NFo*t z_?>o5>T#RbD;^^>zV7aA0^LjBhrC&0G0LRA|ByuuE3!FydC6cq%)f)+?7MuRblPgF{b^DvEp#@|(7ctOa_L@Npp-X3%)PJDogkZK)i*hq>9n!erqmQPzV2U&68VhQs41&&PFsQF0nLaF zDJdrUyuCVZYQ>P9u40Tv)>g`cw7Tp$@}`>``6e87!|r{@+bU0UVqV*_;8C@R`YTYh z*V2zKK!=7Lc^80Tnh*CYb+MpUCWx+IKSLsf3CF#>^Gxa{jmN`xh(xdQY&l-#v*{7p z1-V`vtImqz54hQ$Up==h_Q5>JLse1L39M(g26Y8?nDy>sgSqNX<#cI8-M)sOVTwGU z*se9mEBqw({IIokBBa}~%T&6Oy%v?ibKpt1YLZm(ZR$a8<<9Qt9^l8G1&r^xKG@)P-2L^ ze-XXuxfQ-U5j+g=Xnn{lW|3e!@>FhWs6f-xTe}pTaKl($nm8M~AC|PSTRPsgkQ&4O z?R%}xgAN1|L6l25nY6STCC)m9P`?IvWGACH48F6ma=`7U&plr}9oOn;Q5RaHo^N<5 zNqV_Wj)a{eil?pPR{qJJt;ARn zi*6=wf0=*BjIv)Hou6`kCsHC8romnF+{EUm!U>kh0JIX+kUd;h1;nuXf-#LbS7KfX zd#}DT9ce{Yt^ftLu(7D&w`rgl8d!^(@Tr!5s&}u$vIt@I(Hg<)Cnss zA$8sAF01#G9I|Nyx79|#d79nCr2am<$^^Ty9Y<&__qyqU!dGvZPgB_K z(yIylSkV_-R1)@KEuyDuBsyZj5y_(pcAzuJLA;mW=VHTO_o4RSn2olU`?~~DBKwGg}=&>(ca6L+MOy=TR2YDN;M>= z3WjBn&FwTXZSZ$UOy=KW6$uaWwIrRLop+OU?9pfE=UIl=J)a^zaf6i^+*>noa&jK~ z{f^VYztG{lLRpV7riQQWq^5P{GDI3?@9Ak*!plY2*(h-F_E6wo0sZeM>d@Qv=i->r zfXsm)NPjY`&boUmr{Ars=Idl75D@>manZJq+#(||Ihn+Exq-FPtOlN@l1kLorx9`|`Jh|KHh(f*rKdEjBxMyecr;C+> zpY*T9ucLP7`Mwk;V@7Q?*Y$zHqu|3%zyqq5me#7S97p+EdwcsnyT;Yfoh%=vdw6n{ z-wW==YVfVEDV$IGU6%>DL4?C8$C~XtN!b6XH!8`(%NzWKMzr0u0kE1gI^lo^-(A;? ztyY3lPGPSz)3%%K^pdKo`B*p*8CVN7ry-~{x1XN~X!SA;ybopmQKmrU5k`$FrWw=! zaA&ORdl0pde?-nMrxFJdfNY$b+ej65WI z##Aj%D(u$`Rzc#(ii8S$h;WycYe}Jlbp+C`@Qdu5J+I(*g5bmLcrZJ=;YxJ z5@qn8#56eZ4?B#>5wJLuV?N(4aaBrnw(seIq9PrPlbizbh0k)#{Rbj{(Zq8 z|Jw@7cVU3VU|`&#Fh^w)AiRJg)(wA4!7ra_KLKK%!VC7#7#Jjl${ebbPL>@2F*cRW zD6FikOZxv^>-1~LcJN1({K@bt-z^q0F@Kn}FtaFmTcK z*u!wxw1Jl<95a%Tyi6(#H!Cf6cx-S6+GF&K$WHPP>>4@VKx-x1P7m@2CRiL`4D`l@ z&U@8~aK3KBxV{N^$N7gu1HV=S#$xPzx)0v=Y#nO^K6<~q`zuvTh5b8ijO7o2S3V#3 z;awW&Rr6&>*xi8N#9VP-w%fS!K=1{RQD1w;N!}4l{wTt-7sPvD`GZOv;cd6>n8}Yt z@^{2YI%qpY2~^H1%l}!KC?+Q6dd#Ea3#oyxDs#}{JUdI&qFE2M$I6qieAJMliI{lw z@2SZuCHIJH9BaX?*rb+#4UPkP!^h&!42Q{Is_N;r>@b5I1)W%?=59E>UFKCz%5>^C zi!tIMwh~LdOO;^Ln+C^~j+3T_O;hvhjj0P@yznAKjkpE@^?XDYdvIbfj*TqVY$`})Bma!1U_zs z9B*^cBerIiR933Xo30%z8}@RG&D%HHc!=D1(eEjEvU@c{F;mkt!&|X-X!oM^P9+6@ z5H#IEI;R{$D_qvR#i=)x$P9dw)C4z8=qrx~gE_uQs7<_G!h; z+F*)uC91$yITCb8DnYWiCQ0*#yCGQZ^H1z+$9h4SXEYVVpCaWNqS1p9!iNl=2_ntf z?A^4sw)Vc@rlRBH(_sC;=Y3&mrwlSIJSkNxt2Q5{sP}u-Ng}ZFu3$I$;V)8^w?!fJ`&ZEIt`?*fhcJt18pYUE*P-AFnl$!yiYo4KQs`!&g>wXQF$VlvVB1OSP+ZPfbA zZXjM_VbpxidU2FtLzT?s#tSsd)=gkCaQ;1lyGV?m#%jrtu$F+*=xcJ!zAqbhB*JU6A~J~Rl3=! zr!c?k?gS?>@V%rY5)E8At+-Ar-eVlrZe+tdCYbZ_%=NK-mkJp!DeleX3AkciJ46ez ze0rC`NAm&mdxAh5(&Ni}8#H2|83*iD9-e#tQG2n|`tZ*hha#Fg5;pPKcIA902iDlk zvp@FD2=5spxRYePey)jRBjLPI_*4f&=&;kETi%d||6ci<)Enb1vOiT#E(=`rpJGGB zMlgOopmaQZGVS_Bb(zBILYCDM5vLwj5xf}EV>^l($gAg~sd>V|MH>`S)~ zt}?c{*1Yq6YS4jir=cVsrrGs7eg@{?mqb7!ZJ3yc-WVCzNZB=7*P^x7eIV%)*0H+z zX`Oxcq8wZ4FPqX2HxNP3E(Sz~&5g9XWPN=GZGCfn+m^1>9SxeM-5_Q}qL_!C8b|#P zc3{BMJE9J$fY>wf5%7mhb1h-nUAAo0S&{Mp>W1vFd$OzKU^64yp2D<8@MOB6%5@xW zyf4`GD4MA*B%{`z9f?F_d8=iL@9NnRi$Xo2iEKMYpMkC9gOGo8r0`2dSFHkBpV+1T z`3GxU3=n2EpY=z=+5oozDpGPY*``CM0uhgrb6uQ5$Q!x?(kli|H6g`Q{@S|De7P^}Io0=0wukjs+|3$%aZwdnlE>f+*mGPb^p1gK&gBcr*WS)Q&@OlFg{D?YrL< zy?5hXJoF6zan(#0#oM#$fm81WbAFq4*vKgv%1FP zC*9VDA~(6kMIrAq9HqzG?5#_YsBu>B@dwnN{(v(2TE>IKHTu4c8c@7)_(T zFw)lT>w1Gh`nK3E>K#NttJKlQFS8W3awD}e?{JL17q}??&*k}}6usfRI;FdCDDx?v zTexuFVPgMdK$3B4h4Vr{_8i?N&O9I*^Z~OK#NvH{%fYL@V_0rO^tRV;CaNL>~;9R`mo44d~JsM0{&ow~O{XDP^1AE7{CC zU$xj|QcVF~ToW>Bb3I|+uHJ;|C$yoFKYEf#VGe!GAX-bx`AP5BRWSf*n7XGPfSq0r zd`|^=vE_5?80k5)NDDuBg0fZ#e_VCnPIWV7=*(^Txc;~qXgO3erNY%HV#$`a5xG}P z!x@fQC2nSVME{V4Scp-fEL`Cpl3V9xPbsYrK%0C0(E=&;t=F?cU*<>}AIjw6jTMJf z+3O)8rtAAmrqnea#e`bMXOLteqbdKeJq!Q2(RY2B3h_m6;u5#US}^ti*XS61A)5@G zZivnf`CQbJQ!`x9Ky7T&}oI915t%&)R$`BOwRBnacjV zKe7BH4fpkw+><~W9^DbcDG3=;=#lYpVOR1z|7o+6&Q zT zg8!%vI%#n*P?PV0kFY#2%=u!2;JN95Z!EXWev=JhC zug@pJL1(h4ys4cx@LCn|Bm25O%dQ@ za!t-{k-y(~FuA=&cv$inFM5n9wJo3!|DD1gus_^ia!{(F7C3vdy_mvK`dEp^3wgVl zeJq|N$akpReA@`=lI#E0rx%;}0(}0Naqeb!!Xu0 zPKR@k19!W|7A{26E`+*kb3^*hihr&2Ls>yl_GN;7WL~hDOT2V|-?Dy~je{p`f@43N zgDvyU^QWA*$v!(LB`K+-(Od+F)qo(@W>m&~x+|4= z@_uxDYdSuHnje_hZM8vvJ9na$>1n&WaEpQS!10ZZsKXc6x=g@9JKk@L8hjp_j$B1|m4+@m zwG`;6N9f;3QOYMNCwzTY?e6@BQ4^!$tBug>6~ zGooAad8eP@snYBVt-26h&z>vwVk#gP`Y`>SWH;nN;*anF{O*q?rXDkB0lubV5ze3} zQsuH&!_t)!*uDu%^gYuEivI)cdU{;RJ$_SnZ)O!sdqC&UKt*fsm#F$op`^a#RDIn! zSRqFzmqyUi({If)t0)v$aBbKOIL%VCt4$Z7*@;cwp)W8vGp-g_YrL?=w!tXjr;5k=?OFQ9f+UO6pz0G65 zdM?)Zu<72^sMe*EFO8arSR07SoM!8k6pJyI-Z&n}O5kv*-0ik`{)sER?UbYU)xm8~ zrmP4HE&5nR3Eb;cK*N^3@RP(+!OKkoFNS{R0AG)@f zXqic+6?3zFSf&<5LOf8d9WoH-hpWP_TsjuDW1j7N-^7_!7JGcpzF%wV=6xk)EupXFaj<06 zc~U4sH&Clda|sur#c$gM!XQU+#b;X{W$Cd2?P?_!b_IZBmwsx{1s_&{B~?}DU(O` z7G^xD&6Q_2)ApOmzyt4M7DIVn$iPst&mSNhm(wZTB;6V-I4k!aux$W*zCeif!*UbU zqO&}z?k8%3;B~k8$B8R#d^eWpURWcJ9ZQSOZtYgCiGrqh@+X+rWg}**zVvcg+6E60 zx?g>%{@RYlY|$poi*Tv~|I|W=Is&ALbnsq%^NIMJd0)P@NXCIl*0j}@P+=><7SJO8 z!P&#$8$N9rx(rtNt>Q_@th|;r69A*|AnogAnMHh^WxV?Zf9(}bUD=@~3GsMOkWPG` zl^rNNHVLd}MAFssGqhc2(kUPjkr}u~308?DWx*0*J_?I2GkmoZkHeQ{pj-4hCvNQR znF}!$;Q02w;^6o|i=2v1f6W$z5mzgFR9SvN=(5w*Lo&L($K?OhMql0NMz>Iy+f?Zjb(?^`5g5rex*bY-}&hT+Vs`SBu705i8+re*BBGx z<9ECO-4CJ{F0;sbmiIdZ*DbyQGYCppbUaK(5=$C$ou0|tk^&HKvH+M+R@7aS|unKy$e&o&d7j)P*P* zTMG$BEeuE-$T~K{j1)3=t1r^Q#9aaH$f+W!Lq@H0_$XLj?e*r7nxxBkp2|nN(m6%y z%M{O)VQ4Y47b$`;0g$)ufo(u|tplqBh4T68<(ot0U}b7FbkJ&O-d&}HyA`dk95l?1 zFYku(Dp*fyx4fFI38NRcQWcZY&0xZw|3}acEreOhYiMTNgV#KQbo?#Gy_>CfZdu;> zMs4*Sc5#dwh0`hX`O>EN6Ic0j%unigE$qF+?yVPKc$uEPhkZ$Eue<+5s%w; z&`6Qib-K@|XC@1b=vep@R=sYg4Z|#=t8b_2BRzg{eE<4nmArFS3w&e&!KivVMk2VP zMfrv%XvffVm}~FM{=szfC!uIz#=vK`STmA*me&&vCr>`0yZevRjf` zoE94~)UNBU(HF37Qa1v*!ge(J**Ih@MR|?J-YTQagxVHb9q~j+=0-ziMZ!46Xp?l} z6G_)7i1;v0VY|{{3T#K+z;7}}^V6r0st_cDW<8-(w9x2Oue+DraC(fW;Ar|CSeur@ zEM$hW=|zF{c&DSjx)D2#B7#I+lifK=4szFrx&?bHj-Tech}BS5d303o&dn_SImXJ- zifGMp64Vq_6n1*fqr_6*Qzit(f5*OFhO*~WiqIm*`F`&H=+(pX-elVnc2nDb(iLq3 z=FwI;85ENhZsL6%P)!9qLwoc;82|i}wVXrW(YUGi592S+ulh$%@apwihz@7fFFRO; zG5OjmJQ&|=G!@rOYS=zpJ~{0fXBa%_v{>^;Ft|T(YijdS^z3TxL)xdRzrTfi79#n; z&j<6sJ8f%JYqorQ`oWaVpcG1-$$G+aFyLF@FFG{)Hh4xSo{OOz&((oeQ)d38qEL2+ zc>+NF<+hjPlU3&7euz}{<8_C4n!6C(xRFoY_A7v6uD^YHEoJObF>_m5Z3IYQsgzny zS}b{}(nwSW6-1nG-1bt@&|{8$H`H={S$*hS@PVt3jicDI3Zs=;E)B<}Eu^kUIErX1 zwgBhYV>YXD*SNCT7Q1$QKb@f2f*y%ly+EJpr=yW>C_9{#!^!j^w3`*7aiyRAe_CU% zluy(uy*+zN(iEwfuenwsjrz!%PVON-*kpNZh}B%fMm%KL1W_-*RVNAW&cU?&LOkAI zP<7KBu-lguTA_c{fwNr2APVHE<&KTpLFcS`Xh$N#(=maFf8h|PcX>R-Peqa&sD74CCH9ibg-e2t9(`-+I*-( zr-r(I7`yKUr71+4Hd%};Sw>VB8+L5I-a6eqWSp$5Q zhze>!x=R~&>XH!Y)8`}<>VK^|*OdZzKzhGGIrr48xPXqYJxuP$T_d$B2`&l14{MaC z%_!(HEotCpwtGTx2F6^(Cb6*<$8f(TqKX+>5q3~PE#I6_`^(7m{#xm|B}pv*fl)#G z3E{75=l%{FJ0#bmoMA(QZ|ViQ?;&rlUOksyvr(zBN&bG3@j^@-(c^fp)s2Xh{6Jqa z@QiPn5I-c3c#bk3rUL!E*UV@t)<7VqAWG|x(>U zi;IDSYE|7-bN!GDg`$tK;d+K_K#|>R4&fA$^V`PwhnRzU2(u*63?7Zdm(2h*JM_xH z(Y0%s4Iv@|#q3^Ga)srt891xd%N!g1Y2#Dkz;o#Z;!vxxOeWuBEwUmR7_YJn;?52L zAPFKdx;}GxIakX7>DhaX;TdS=ra~R_$c6|?wU5I{#`Iv9Hv_GYcvAq%OOf_x-=ycF z45ZG?WKKQq*I0Jfy&0?orC}zNBlGXhI#sXFQR-Z@hIJy_K$d0|7wT}w5xtl6jObq6 zJViu!-Apfd1SA~YBihqlL#`=&71FV_^MLOhI!*mzI-crBKjRwuw26<(#p+(aQ*~s= zV`hc5IbzCqMn6rMk?d07hg|_NZHrD=O!`;ZqfyT3pJHauP*&M-aufG2@^(VqlLuxZ z2ss38*gJ$bai4#Q?m~JVWorI>W6pu>^g#d=+;7=c7pdWR+VUu+Ewiw9p&>fm-T5{D zGQ9S$A)Vdet!A(`y98cv!e?Ys7*!)H=0;FW6^q%4U0Hx6u@u@c{H8^WFT6uKJ2>XC zrrXmn+g&Qv4=SnI{zJ(wz(&0lHOmK^fw50+ zeu4i$=Kf8N=P{w*==dkzdDX?bz5xFwnn(d&vlq3G7hXN*1j866*^9vi@Sna$m0{Rk zy-mpe;Y;y&@ml)*-rn7l9i2uGr!Kr7Hk-3ASBFYBn7l&JkXIa!y^&*vtE8TJ=XUrf z1~R;xifD{;U+Zi>qztP$TVgLgGU)JnId`ZRdBXq#+U>xor~{upKoSHds%}yQY3Nv3 z!f7A9enK%VHAP6p?z^AB%nK=`{u)p*#``@X)bdrt7~lW#p)mqtF)1uj2tBKBkSsys+R?-18uj$>;Iio|?u#uo)o=r((|xd>|9W42 ztF`ebw-U9H#wgCrBNR&33p{W%aN{l22px}O!v3N!B-qgLd4HV5O%3fTVWMSzvXZru z$gu^Si&v5J#$53&*zZw#$*ezh-~UtTdixP2|Ajj7N<6LxsGXR{V@$fj9DkWG*T5jO zJFX4K$K_Mo<>$NDWvA;3YR7j0VbJoWyQ(8qx{+X-W_Urup6bj_c` zX6q*FKDR+ExM8@eHKU9?Sr+>DGTB|D8k^d@nJK)$Jr#O>)ig1kXXA#CL)4DeS2)PPo2?VI6d?C5i+x4d zozABQle66%&aZ#6(7oX@*BjNAMimi~!N*K9uf6mB#p08L6JIkNs91Z4#-;6}ChmAk zW@c1}lg?(u&@{Rr;RiwoDsZ6s&i|BbV1 z^E^S__^LzC^YX~N4XVUlY7k)MYd9IQyX>2ZKi=cJEkOb63o-!I<=^k>+k)Vo}Rwzstm&8J?ve z0pRrcSqG1v7Jnm59e3HV`5QS34a}Xqbd;Ut`{ok4^5)X_0F}GPdLL&0s|Szu6K#$P zL(DI58JgX|va;& zDZxiFCL7k?U6t4)VSvUC`^Y~zv$-J=UA$pM^>7wbY`<03Ol1i88LK$n?GHIZ!wCgx z#SG*r$b|FxX_FE4_ys@9NKF)rjTY078_BQyyc25I%T*_Q-2%P)m0Q;t9)H95O;S*n zhMb~m79}!zXJN2642fn|W zV^9Ccga5hZpYK4c;OpNz{~0O#6)*h1HbXcltMnv#@N*a1?nPp{fY3iZE$}nwp@n?@ zOnc&m5Qpg~P=^HEi-b?1CEzLue*K2>e7}zR--nf`LPtT6p`4g3J;GD^ojJ%5Cj0jJ zqP*Jd&)H321d7i3yLUD`U#!9{IDhQmbLq(cMoI7kFuA*8^a9@b0RI;Zzn`P3P7jaP z-Mjdsyx?d|fQCTxa{X!&_nU?%N4lOKHgY-EwpDguiN$G7^MKqRFkGM}v)W=C-AM4; z{q7ARq&?pKEswvKCrnbob98&F91tZP{nkjFhQOERx##K<`WGy>1%fuVg5rW_Jc~q7 z^xezm<$rli3Y27eM#>0O)sE)x+6$%pJ$PXse@Dk>^0 zYw8gOlaHOTbT+GL0froHtIV+pmSdTY5)}2S!JwBqhJ>cbl7;YhPY;-aou0v}{h%PJ_Uja%E>hk_t7N=m#qG{R45l@Z_Q0C)bV zSVy3YTN_NedHjU5;1*Dz_zOB=TGTL;GY? zDs|H0$l3Z8@Z=o!f2CCYeny8y1dSQY7|1_^#g6fIW-!hn1wEq@D`8bCXep_7d>R=Q z<+wXxG&4VM@@pV|pTnWCv5}!?4k*h04a+*Y6Fe1SS(0R zHmf#}+r9wF^=`LYZF3vRZ5-pHcF*Z_!r^eJHZjO;A+I-dqSV9OJ}b-SV7PC>zd0~m z5Ab*JyRsGZ$yBcSo9Yj0KZH{mE=fNQZwkT*23ytel*`iz)mS>iQ$x8T?rG{M6Qpz5 zhag)X@p;_%u!4*g#62m6`5d+~;t^V&7Q(+(Bh^pARXBBVb%Z-6YS7^Xh4ZbO$_opJ z5v4HaX)Z@hPi03Cgp&`hkGSoMwGiSu;Am~-aNu>rkeC3g)rzrW$El7hTL^Q9SFhJo zr#G3Zs|2_m?MS4*`T6$*Cy6b0PL8?7pKpVl@LNsLJ&Hthh=#xAuimvr8+iAm#Esn%!~|} zsBL7$FSmUWw@cjiao}xk4*1H-P03dY=UP#%wcC zkVfB_rlY?)Bqs)`NV^c=xCofO{3l{5zyK3Unz+dQo%wt?g+s?=yD zP-ARP@FU#>q?r<^f%3xdr(4#U%yPZU`A;=vLQTozcM;_|^lAzS6}KnG8A z;USuy9&bb zggby-Ub(Duao{q+ffacX1x$3=;Bv)fhszO9Q{_$@*B7kJ8|*Sf_fMj_CO?~wvW~%$~ zF?JoHqxfK@Fh@mOTN`XGEeLVFCw_(d4rdFcXrQ>`yuc_?;-b39Pjzr^$Pcg1fB;>SMD(6uT_RkGdQfci06mZXAM|=yIB}u6Gr{eE*a0^|4neZ<$Xl7e6Jw5cD3(~d|!?^MoFS>|%D zl)Utp%WWhuT+aD?KF)t53S=r{Mg)+VY(NsVoo*i;PD(5xIJ0@KMit_W2nU)HlvjbiVN(sOUcTdI5*vbGLsQiZu(A2pAdatrr(V=w;K!T*lbHO@(gr7ngCC z#i`9VC;Bmed^#>WBO8mSW>TNsgd{`!ci?tAGu418BQ2O#M)6=Z!q)0WdmEJnb~nT2 zfuVA9!j%b5OG-cC)P{2%<#0hb0m&cPwNW{h;f98Ut_9;P_`+Fv+RiZSS7}RSJ6?RJ z9xg8liLCHqMI8yj3655bE=WOHz6A|-54Kg=5lo^^CZEHdWU9ms2|-LBm5MK(o!70g zs;qP2@qZnHQ*RkwVLDb|5KcTI3k$Ht{_#eYk9H(bo>wdDb6$0{g*$>gcoY#>xKk7T zzN|cAVbNmkp5OSM9d?+lIS7)#>Y;75`Z3=-p0z#0%3}vThZk|`j};!@p9M;{6A2`| z>Zn7NJ$5>B#!QDLzl2_~XMvVGhi$dhXxg}(iC@Lya3gN+t z+mP}x%*tX`DqnQbQss}4_f=F>pt7y&jj6QF%> zz4bO;ef3p%DZlyIwVB8;LkE{BZqxa1Z)6Z|S6OM#zO;{Ldr0p*$zsH1CHZ)A*M2nm z>HYbgdW)t!o0XN0G=m;**0&&$zTZEX^;JB0fSeWZEGxydT?SV>%v6`%n3o9?9c!iS zH|*`$>7qE-NT&LBT(SuZ(o&F4?a6;yJMg~4i9l*5wAS$m+&5ttEL^wq;L0GNqq10F zPC<*u11HC!F#K>?<#yZaMgnbzSRUdwh-GQ&-x{d8WFPy9gKW&e{`ae^_an&9W7#|y zevgEJFDxUo;mBajhUM?0a-yUAmgSjn*%>(~%{%&_?y+!tgZTHyE!f}SLQM%j_G>?cQxz_mVks<~n6R?vbi(UFS*{Tiin|I)Ji1trX~di{>8cNM zsICJ+9#y1{e!3|E3#R5G$7(`hRx)Z^TG860oiVPfkRR;sb}kBY}W!1o}5(m>bdj+=qvIZH6=oJ)~8 zYBG$eR(i#w$1xu_rDY(qY$Ea}pNW*L0wt(q4Zn~D+mXOwsS7rI=`EtlmQ!~BPkqn{Gnu1aJR+Q$X zAp?-`2O4;0rX zqfsp~$J1IFp5~g7k%`8}M&4+!%ykc+S;b>nVp@D1q&7^t7L}1v8kyM zcDoJU0M&2e7OGF^d~PIAegD<3eifHqda0VC9D&oUw6qjuWo7vI{G=Vzw>B$M0IXb>ofhj2w9nF+)8iZn$9~m#6>mxALeeD-*dybsL_;?ilYff+Gx1?9^Pgp5i3ED_8qJ& zWvf1w&J+e4em1{DbRJcmKyNs|bLX5p8l0zMpWowq)3;G)$DEO;EOpIU`LGt1BXjg* z*!S;*ueAjxi&ZJmbd-+f^ehxio(o4)4Rz4y*?sAxv7kzEYEI9_xC^dEB6Sj7_6GPV z-b`tk)Gz9r;Fn10$M2gpY7)}&N20ZQCjy*i{9Z#5|3X(>4vZW(8Q=TU8qB=l3QRrk z5=>ouDP~;w1AVb!30bMhsBLwijyhKs6R&Cx9B!e`AuDJGyNvK_QT>x-FrcKQ z7%3@726ow>a9&;>Dl4nh0&u)ATtsQyAJ~U52VR6{{`~n!Pd_3ru=|Lx0=fl0?gS6F zQdkX~@!(uc+s-loC(en|!Holt0UD^BoVR!}7E_3)xaa)GKAj5+^6}yO?<2(VdyG6O z^b>B+xzO^=i{7BpfzIcFF_kXe({EUy`uM!U9Hdd*)#&zMS1Z-eTpoJ+J|vUmo04#L zUIt85Ue?w$A;|LDP`B%x-&vu~b#E6Xb^^>nKho%@lj^Q_+nq=86HLtyg&Ln9ZPbn= zQK541%*ALpO}UO3EbC1|Pw(z^wo}s=KoZ57yC;_wJzz;nLJH5cpzG=Fg#JKshr#Q_ zH!m#0nd8ziIzL&tNML1bWle|jgKx2LyLhC&#=n_$wX;kmL=dc5NuFu5cJbv7@W+UOc@5Uma$9PWUcHItKWz;%lXFn2uN=NJvw zj)M+tJHP@O3Eur_EPDeh7g;IB0w6c8%A%7R=OGv|K5np}8=30Jjd(=xjePfsK%`T_ zoh?TBj?>bd-Exn>9TR&Q=?r6wV_mPetVw%_30=`O5lxi1JZ9 zIDR>Q@wf2%_hs5Xe+zx1$5xL75-=?}Bb0JBk+uW$J#0113f#PjXCi;{T%}B7Wo+H2 z?~!mx&*@8f;ZsSN4N-@ydG9uO>h>bh(S(-DPf_#f2hdS@NY2RZvvQc-O|ViqcfxG= zsWa+oJd6-qG;mrEReA0;lwbH=c%X!pMXX>{fwm)c0_QvKEO&WV&WjYduHfSwdB^=* zVxYJlIc^GOU-BiDU)U802i`WAl2JbUY?Mrzg}v{uhr6{UTsDU48#tag4!J(%x<&=6 zU)5jQM|mnp@!dgrqhZG;l}{|W#gykv(9t>76%{DU*HLFghs;zRrj1I%qUk31{2?4{ z@Q1C?IUTuN4Q1zq+Xb#mD9w2>n!L1RYUi@U%3$r3-ooc|2dluE0=L(X{Y`D~_yTCB z?XY#)V5da_68v6jZ^J99M-;Ulj|U%r{4q9c*r+U0HaJnjGeEjcbrH+wh9y&LLo@b=*<2;*4@6hA31{t2(%!~Wpbkj}LoM`VJmjvYH z<>RA|K2q=I<+@53e0ZRX>#)A$Va{JX5XXbW11Mtyg7W{=%rs;fld!e94F{Yo8^y>A zT%Yo9mRb03^f77|9o)X8n3Yoat-9u;mYqR`^L=djB}|kK7g2p&O&Ep&~L9*RA~Zk#?ECS=F^%PZN9{mm~fgNl%u&T+~;IDE?V~ z;C%xf_@#1JWYuBO)C_7n!tcW~SKiyzhUShCa&vR(HFfkVA-E{6)!=1Q6AU3Y)xFeq zhCFaM+R@P1f>yg79qnysYi*_NRx~v?qm}v~L9c@z(*c{!PN7w`cU)KN_5AJ$^w)s) z_I8ZS2`g43vx!oZ^{AkJZadGS?Q5IJaYyAbo4Ux~Tsi`US=`4NS~&h@m!~P063uKe zd@Q4!;X;(cr#xJeL@6wsn4E5w!qm8X-ELSd29#v85UK5sgW0GO=V zhTJqWYz{Zd3zG4f=~>5YL-_iaHa4Q&N7X>AWzS&3!W9cLB(Nm-=`a0G;O9jNohLmk zn(@vR@GC zMdd23Qge%uQ97RbmPg7(fS$8=-Ad{}w1&U8PjI|Yr-kD0%sI2Mbm>w|pEea!r%XY> z>%oo>-h_wl%a+QlpzbTIthN@9fgw2sw#x0ahXh#`B##$tt>tuR`NNBJOA7L`Gm)K{ z32UkaT=G4R4ut62J3BU9M%e8E=dnn>;=t!btiex|azy1Puc#C=mwrLp(Vgt#GNf2D zv2D%Yj?@c70oS7u+O=y@Q&USF;v8gUg)OCYoF)T+ z70T@AmaUCBy{fCLm9Zd ztHpxcyzp%-oIfJ%UZnovStJa{eVp=ZH6e;eXvr_1`214OM9DogkdcxK7ss&%e~FdiG25W0=x>GJ?SO^y$c5A9;Ii3gVc~>nD9X&np2Pbo zSsXBtEOkOChB?lhZQ;6=1N+TZ@*UM(N{*-0iR3R%83AlP;J{C{Sz?oyy zF=tGga-lG9d^*M#nNgN&!l+y$#*Hvx-ncZ?r#*XO25npE94m6t4A@uGh8BCfa`VGM zM`ed)mBS6KY8@T!Co|lBumMz4JH=05>jjE0W6+B$&(6b`!mh3zhY~gnE6O%uTU9$e zJeaM@%K*}6Fc78iDG!$zQ3?wuCMSbZm|Gievx;ANU+TpB1g#G44tD<$TjY!X67_5dm&E;7$k&kCZmt>CVc?Kz?2xCQh7)IdkS9 zKR*w(wRLK`vzt2fJQB}-6vvJohh!7wt55(s`c7W$S6QX<_az@Eg)l#pg2QX^k<;qf&eGqrvXV9Vh(lgBZL`)xqWl2^8rrwAj zOs=aV%3+QV{!Q^<2>7UO3n0k9)j(+<(uw26>!EUOL_t9Twr>3xhY!~%%VCQptXS{U z{fHvg7eSERrgVy!f`$%<>NGh^A6X?CRT1~d6?sum0(;~ z^ItBbT%Kai zjPz~%#ZxoV@QJMr9YHEzTz;azaVX*Z%kQiDHI$FFI)vZW!v+DpR0@Z!j@^~u6T_VeJB*U|0H8Lv)7tff7FV0(pQMrXk zBl*=rd95fb7o+kD@y?D<)Ihs$(CX_x!uf;aNyRBYx+Uq9qez0ajAbf=Z3s`{N-{b4f>+k?tV znBl?8=Ei!QF(&NZAvIZtc4q+XE_!bw(_%oHS+86k7H6B(B5osdlaXgND&MDj*f|Qz zzM3}dY(=WsfRfx4q)-FW>hPkB8qv`O;l|KU=d+B=9pksR+wtN%4cJeOwB3^!_OHak z#1J(!Je`(Dwadqwu<*i6OqrdE@zX3QpI}DG=w$U?%{3HvBoGHrBrCvp@Vl`UBma#k z6JlXuiUSMy5uuvT?MX4md56zu*B!$R34e(}KjjM@MvNGNGtQWUw6s(;^_ZtS@7lEs zUV1-PjJCA2;NZc7aJgK{+O43VP)+}8qmGY)6?Hwu$xy@b%JJJ%9QOuJ14^%qlCj7x zpW1mJFLfaH{QEDc+43fu_iclp)AOj7hQ~nNHvugT4VW=wh7w@IyAx1EX~33$+c&)n zSDPK_MWd-$hL1c1^3?%tU;;*9B+Dj8W%&7Cu)89JSTq zG#KoBMP*R$_h4*cCQ^)p8#mmsG8yz}ZgndE%Ie)Y{<*HEPM?nU6S&>X37OX9ew^J$sOvnyR^y7=%3A13YCmK%Lh^hYlen#jFPOyqv#TCh5!j zM?-aDkn-$hmt9ICNjNR|n{ug4jvqH3#U;hCQ@haG+(ey-5cE_o)j~d8mr@=XRbs%! z=ci)oBojJ1f>eGfo;kiLj*|2`=&1~ZNN&o_$;O2jUWj>f=b<1!Up*s2y48ve8#buL z+(Lt_KvFJ{cwtmlv}np|u7gJv7vax;egW^k^%ivXwHQM(W4qUf1p2m_`UKeO>haE& z&Dgr_Q>wEHVX&lPU$wR(J1Z*r`<23L=+gU?f)!X?9%Jjmh!TvI!d!M(IYap>B}tFT zlO|zIc{xnf&hX%b5+tJr9Mo^VFYk-w8{WstWd1$WiWSP^Jb<>p-GPZ2sTiAP!ML;( z6eb&Bp~u^tP9)O%Of;KRJ={V0aJ1QoQVuC5lv$EdLV*{kJM8ixWKKosXl>D8!_VUS zk>ilviE-S~Z*H$m2|-FO+TRO!z$!#_VTkJmE*soW;&Q=mBZfdGaZ{a_L1ph?V=X>E z=Nz0_J~6E9H5!qZmVv1yqp*nD`9%|FV8QrlD9*}N%Hvq9DHgoD>r;3s|M`!X5{~;1 z9AEr=jw}8fDHB}BaCzW5o@98HKD>|RFCL!bZHD8VuVGYL(mgrwIeadcJKoQ5n(%&h zfyetJmdAa7XTg=_C1di)u)qA4b|3XO>!}{kRK^eN>VXF@Cl#A<p$CU_-JoCDh@g*ZS^S1GGSbiSsg#r&_?a8g|e@X zx;G*0J8Z|?ap}qxLjwJ`>#!3Cn`RA( z6?rUNMy8-dwqu3benX8R3jlmS7HaiL)S+^y5z@W2PHIH!v1lsw-icQ~Xhgl;hx2FU zV|1YfqY5k}AB6Dffey9$D|dt+TYU)c?6AS%3F04{8sRrkgUFp0zCQ~aL)Li-LFaKG zztDiCU&w(aRZovhAi*+$+OGh(uprBpG;HDJrocik zrw7MB2aexJ6!#`yD`A>C{B*yx{1S{^a+Ok&X$P@$^)qO#sX~yIBD`1_r_(??XLLPV zvotidVB+|3^fUaPtcc>psMun-;-ifu*ZYuGP)2>&aHpiB{s6YW`lLE9wV+h(>j_pG zr{cV+Cw)4uJEL(#r z>*h2o&i(Su+JT<2WaePXxfj#9w;;E4G-`KkgQvNk`g1+h3quWkd$J`Rx#MQ4K?e3` z?QE$>Q*9mQP3T&VxeZ}H+Hwd5Q_n)ysL5#D`B8XL!@+!aPHgH_rcvElnv>R<2L=;f zfR2^DE3+y+woC(w5!>k}|xL?#L|E$SS0HPO;R>8u7I`cmE#l-%KUIVn%;lt1CD zEOz5Gw4F(gD^^7F^Y|Tj07VV5Mr4%!pe)cls_u{Efe2i#GptrMv&3XF;?Vy6NThm{ z6~ioNu}hdAem5IqMj25u!hlH=j9B}h4wcuqeCs_<=%~Iv_uPfJ;QR}am6;j0u3-P% zZ@>KxLaN^FU0u?9=$rVvxID9U9K~P#;X~NI`9qkUPAtnz$Gp@Olo*q+&*N2=%9muM zVT##=Ny+rht*v;U+RLf~2f~Yva(%)|9G)>VXtLmG09($oOs&eAme05@;C7wMO+-0G z?LE7;TC!w`TF8<8au*d9AtNJ0<-Z`OXQZy?>mvg{k$lC9GEN^=rw?{sih;j_p5tkNnXSlzR+z2jruB^J28>Sxic5xa{>6y1pcb z>c^6>QuxhJZP;7qL1t!_YM3xYXS4 z$Hd|z3%T)(S?~2G@)j+?Ksn4ay`@8LGrVLvObDPC(CDM`; zm9;TPAuEy(G*Mpetx}lUK<>j{F+W#XD@Wt@h8HA^R$jYkpTiYU%H!V1FYJ%L%^6UJ zUP&Z_@HIR$nAdWM_+(}{9(Y#p*1h)dIswNkPcotuKIP%uB}!r8#H61}VMEBTIvzou zj%+fZC@U3(87V5{rJIqRnhdkiKth|B+A(K%5fy5Ldu=(aMqjB(h)e}D@pSTjG@`wM z?@Nuqp++aF8@-r4CS8rRa>M`1#s;LPBw@^mBhz)#%m#eC&#qQ|<*6r`sRq39DG8?3 zu!dMD8;JE#A28|sFu;q8mgSHT({m%1o}nlCIT8DJcOZcU_95;-4-ASo7LZw}jc%Bo z?XVaUFs?9z1kZHjTg@t;@ghfQ<|GmnJk;;u(f6oMI(H&Du(E5o8+qlvf-kJZhlAfo* z?cDqx+8S$-l9{JmbnJTLd6?3&P&9k7S|IG0&~ws9jE4QdF8Gw&lc>Bm6i{9^QrG;P zbIw-Qy@P>=(qPM$EpV~#(x|i<6#QN_Xn4^rKhkzklu=zSZ&c~sTKY*vTIb3#z zvkstgWGx(ptkF~Gox=4kzgzXTk8$pFBifxI)Y$?^H7BUfm7Y2*pX~EcIj|tDuncDE zkT&k3xZ$=>)!BnkHn_Y}yE?AGsw~Zi0{%v}Qmtnnom5{WQe9q@X;D7;EhHyIzM|FX zfz6@S*L`k}5|rFwPBtMUWB8_+LtL*k+ z^yqT+%-VzdRs06nV$Yh0+#Fu`E`&{6T-dSOOULN9qaEYMj>W|nUyQM1#&mZ4%DW%J_oyZ z?W9jhL;@?fxqJ+9-1Fc~BE54m<)>}cd$7CqAl2nm9}-5|$Aj*iJsR5Vczf3;cxBVu zsI@h#cbru=R@G7MZYTcn(FXPHN(ncda31BBh|{0*F6CpMiBUX$8YZ4|J|>=h0sXxI zqi3Ckk&|bsFlxp;jGlQG$u857HDV;Pi%QiwW9KeJM&1bOVp!CGosPbZWgK1zH#IW{ z1?3Y^Lf5C~7NEVM1|F)L!!zNue9Q0B7X?1G-}zPpCYM;?p?d%I&CPHJ^lIRSVPC>& z#t<%3#>cA9P^hZY12^ApZJpy;6!^b8bGW z>RoWszRS+cfs6ib*wKmwbX^AZbKl$53V$e3$O7$D9A`rt6n#?b|}{pLA{Zif}_KY zH8+@SvB(`+Zn*n09i=~T!^{E|g*l^BP@1V%jV?EyS!qcq$vdJj;rFks?V#`G?@LlX znqJ>c0w-V3jr}k+CMGygFd_*PrtxAp+Rh%xD@?+!PpAR+(TNcu{zQa3rrf!R2>J|L zO}HH>$xc&>;ApEV-sZf=;^wR1oOc*yF$>!uvg%rnoVF7(xRwg#T z`z9K8ey9|1th^g{;WaQ?(kU${&ne|LogcnPT^ozCdZzR2)fJRJ-02>I^x?e3R)y4& z%FoNCJT*aeum%IREZMeg8$u~*gI`AIokNtT&im?jp<~5E6udaxj0-MTis6G>sB_5m zJG<_nZ@lb#|BEYr_zR`njaCSA`3O;59Lu!_!yPp4%uPM-GHm|G3)Ehbpv_9Wfx>xP zP5KI#7x=mHJIXtjC zH6>qP^BtE9bzC(qIT^>~@aQRre^g^|8DPMCe*bPQS#SSD=`C|*qL5I_p^Dg~Opfo!x z&4RO2Q>fk6j%&m!g(Kt|^cZC_VspDAT)&!A2fv;=)#3P3147hJce-HXGDPK%6>?lR zldP0O?eL^YlSvfrTEB98sn_dJRaq65lQ}(A8Kmp^H>V5VkLyN0#$|fA;BVsRvaG1& zZ+aKMABEI8nQIA`PtGkJBt!0T)B8pga{S&bx2PFrbj?rcG)9do!^M|etj=p{Y=ps_0zaqAFyN#3Bnc0x)K2k&eIM@IiH*Cr<6oa_!kTR# z;-4RXfPZiM2)k+zB8|@RQax9anTs>WOi=l0+kr}K-M<&9X(aoxY%`qj06ym#&KUGw z+)mB9=!?qQH$A5SMvBLHG6wJCW7fPvWEYQ8vzU4_Lq$*Ji?1mtpNMLT6JAVNl^y)ow zehe=rcm9klr4VM=kMO9xWTp7s-{{5*Z`EUOjSEHDMl6|@iMiv`)j8bP+IiTCR*E`q zhq%3Ai}rSQ;ZkCODJfA|7B_a#xAkVAgoy z_=0$8Lj%0jP-UeWI(-=*jRW*OAM9yWvw&xeN<{|s)p=pQ5BIiV>c~{2YH`3AsLt?H z8?=2trHhi~sg5`vh*J2JhjW%Fg@qH7J}QL`K|j15ZOBeFVNy|+n#z1ESYgcPHMKd_ zh-`qTT^$mG*J4PEr$YjOSp$>dl*@8s64==P3;`{P9u;PFP9&U-_ z2pIz+6ojwMf$>vQP*B{vj&W;?AI){1ur>3E3da>Ic_5iOv}c}q27N*TKK$?_l$MS}Vc`hu-o1;m zMNnDf?AuqVP9Hsblv;Ra=gys&IB^on%SS6W61*TCE0A~Z*%S78HyFyHo}m2eX|thu z*GEWfuSebX_ffxdi&Dm!Gjfyyl&u3&vI>whb~*~Do{g;0lVL3?M{52^Sn`UMO9gB3 z7-eN#ICCLJo_RiuX<6C>y5g>{M8lqKFs7!%&7HHshOJO2A8gsOSt*Zl^Sb)Cs6;|Bt-?j<1s$DQq8hzo;2XM|8Z=?=bSApD59nXLM?mqnW|9*h8mtEg0#V}(| z&%nqjv$5l?*Wuw#*gyvtsZLJ__)wIugE7$ur`<{Qjh1&+dQgH;-Nl`^k~5be$r7dP zqxfj4uE4HJJ5ut?F>dZ6Z2Nd0l5|0gF3?jaFNmu8pc;tLQ$1!sv==&`jc!Nr*k8*P zM;n!EdPj!dJ;!2Hvv`IYp61E*^vG=X_1m2Wk_Fm5R9-ke`ubg*uP8rQ)2*Gpc!v{q z{o`QExB>d9R|7koS4bu*FE3Z^#IayM;5t^&QJF0u*{CGfj2x>G>@upu_E z&OSOkwU+$}*EcpHA!!H}nu`z&Ad%{_xt3&{mmYs$rYEH^W1)J_OmVfJ&Ixk+cf305 zCp)Y_jVN^)KmBI7ZlQLD{Y|smhoFwP>AE6+d)bzCFAn7d{35hS<%LRQwO^p z=?SG+g6 z+vy#7L0F5~qVk8I@(=$_A-TwsmVr!?@7k%)c*Pm#AcubYDX;vC+Wf}$R`@9HkEO`A zP#w>vL?Mz9jdbr6`er{}LVL6``iL^zp}$m*v-^#i7hJBaf?39>c>4`CV4b8Eb?yq! z&InNcVQb)MeB9R{dK#z?(0jA1vSdq|l7kLzBUzF2D(5>@Uiy;v65w^ZFug35`aB+N zuIx~2N<@^?Jd4GU=*PVANBZ^bZjTkADMlR@Pt8;d$i-qd>B8lnqLf`pu!8sO309>< zWrc8r4Lj`A&(bNSFrUu`D~(MpN4GHN@3x|qz_7AZW>r|%1$7r6lYVV+`Gn%uVYsdys%AO zOZ(AX7_h*`3#S#NV9~T(l;)+-b$T4ArOs`CJI2wlqR~nBq6W#F5X6i;1LhT(FrUKQ z5hk2nl8m{u&8v2ETlnrl7d3o(l;$6?#^r_Ow(oDn+(HwqM(VIo<1~l1XVdl5@{%w$ z$B2@&L?lr>HMP4*n9&rRgQYNHNSI0RxlukL1v&Y>yRXX`MD;EQLPKqJJy2NaN}#;O z3vfh~>lAk`>J&EcB1TFeB>CSLKz*wVyK8M|chfoiUA*cq3tX%?V5<;i88g5<(^uG1 zkUGIUEtsu@S-D$XU9GG@Sny{-pM4AS!bR-=i@%1a@qYU0cI88I>eTR*b9ODk(~8T= z%HZg5prxrv`<@|!%7oFN$2Y$5b8D&E%XWstv<9PkIKgY}~Z^6Vl^W)yDC#?A+&{A^%2e!T+t`i2L0HABx9m=#xMqK~p z45eGBs-`-M2Q^rc&+Qs@9+Rjp8ae+Wde0-@!hRHO)jQy9ZNu~>pGE1^Gw3oOHf-35 zsiUZUG$r7}-CpIg#h99j_S!1wJ#|#?QC-GLkN&(jE3DZfhwD&kg98(2j!ZycA;+>T3=o!D zMUHml=+xEMtF~c$Ng5`XT9tCx9|)nQ*^O~y$0_$Xy@4%+H*DMhV~Pc?Au$uya5<5g z5W)r4G$i-X9vn?6%w$nIv)|!%E@y*XPn{01;*{$Email6r+!me;(>FXg_57wW8PsU zB+D#er7+bWTn1Ur;`)^9IF_mT*l^00{0;m}mJwOTX88H^jboBY2B)&cxrAyN)Ovl` z;iB{STe;HacjvfZdFnXkC$!;+kgTh2KjbIQiTN^LzWv76f4 zuxiUjlEt#o%rnh;fGtzYQc}=DvXz(eCtKJCDBXM>UYINePD;mq)mr?HoQEm>^GnMy z^MWgs%)zc5HoWvlP&xEcK5npk;BfoV?Bs=n!+m&u zH20D0ZB8tie#8)imAX?)Q!%SN4OwYNS9GSBbeK)&&7WXJb{elep&ih8?Sn>&x@5K3 zDm_st!aE!enCZ5AYF*e({223n+g*OOsNS&7c!)-n!lyhe$%|50I5Fvi zQkboLLv9Dg7G$W=ZH7BGtxhiv+d5F+>Quf0*>aNw6}D`P)aU${-AeFrZYTrXD956d zA??bk{lcldqJG$!JX`l2XmG&Gqj$X-f$RyT5N?On5WRKx`s##_oimCCP znrFmW#bF2hb**mdo0AZ#MybR185k5VJ~ymcdK8uRuJLko1h8+XGi((&DDNeQ)fsxe!9q^GBAQ!{nSLYSvr?b)*z4u?}MHpjyM*s)_VWy%yKXt8py zxw%QXonY(YoZK87+`pgtJ|t@McMZXJuytdy(TH;wE>y}E?wE`&FIN_|bqA|)@Y4^J z<)bMrlcJlOwf++d`q8*$of0nFJd|!j0_6*j8#(3EP%vWwS{iDx`NI$J;ieBzbGSyO zL1tzq-dM8+Bj#SDETEYHbvhb$ZALa-moai2(h5du%J81zoc2@xYTmbPa5|XWQKt^j z)mLAo++1)vaDGUl!1;&kMAaGOK$Q>Ymq>agn@m)cf>^h1y&81jj{ec$X~BHm{_5&* z*%?Uv8Vi?6ieqO(4Mt9xqkQqjBfEIC>WH!8*bryXqobt}um0*DSc=Bs?Ekt4+3DsU zQz9O$n6>7Oz`HL#8BU*p49;=dQfO*$W7=dBW==^)Q?noS&55vN7r@tUQ_7a2IZL{^ zj^K`G%l@74Ia)E{?DLf}JS9B?2P!_Mdcce6da|R# zLG38TBezcjfER7znsmpG?fBq>P1w0}7aAHGU`jSAU#{`qp`o!6mHR4jsL_FKRdx!k zsA+al(bc20tW+uXVy|PR#^IV8Y~1)B-g^6OtXsbx6+3rAN9E0(Xi&$81eWQjKAmPZ zVIqZh+a1{D_F$wjN!4EwdQu9%P3Q07^GV)h|FFC0JS9U7Fy7SOw&IOXHeu7g9q>{eZc~mM;-jZ)(@2i7wKik^*vYtR z-eP>=%!ODmek#(E&DeeTfSN(Ti`4aLh69%~?kDho0Oi^8+2+Cgy#Kw z!sUjo>-qgTU-lNNADV1V)Z08rO-ok`2x|vaTh>bXe!--SZVRbJEPf9)x$)`#4s6)j zigzmP*jm-DeDC@KA?0&7#iUot(b#X{h2K_v*sQFClcOxDxy`Jsv7?G)qHrD13mKB~ zurcVtm1pPCGrQIq+!pcsv2vDOS`0S)S!=empuEtGQTbh!!c1~f0JA_$zalp7q_$u< z2e_gUrSK^a=Xg;H3nwOhPzt9|7ly5lM&(&M1^Qa*-0iBh!RHUC1yEchjMds4%1Vey zOEz{kF5J*|xV&h0db(Sya>M9$z@!Ud(e%8|DI*L!o!?j60dGhX0Q-xp0~v-OZkUmd zu~`PC%sm!1R}hEV14=0z8J*+~SW}A=3rpF*t=iQidOD%ZYCvJC0b6S+PB=39A^`LR z-AA7og2V2?*eNOCg^G@aqn+Y$hXVl}3B*IusTv4u?ZH$3ltrBOZX8#f-rQ;7z#U8y z!gABh7@3oX9Qw;D2?r|`Sx94_p%K4wkxa+1l8vVsM(#IQ@O>#yb#{s(f!>o9a)%Ee z#@@aA)Zz~;JRUrFQ27vMD=$`5utJ#kvk=6Al?|1ZmFgT0ZEd`ga0hB@YjNn%A*HzB zmFHDQF8X=AkH2exY0AFOeAF>z<+MffN6BTDI~!xl%h6_Q#;#3o!B2v0M)BCLaok7r z9gW!Y-dY5yQ^p;HA%P`ww-cimehwL>+|80PqwMfLbT;qLqj7D95|?aDMxpDSozdY-=JAP_CrZ`G&oPS+t6}g zAI|vfm%BVS0;d7{+l!|VW||IGVcnk|#{64;iJTE7$h1&h&_|qYcD%dtsqiZE1GNC5 zj;PP=!=AlvoITf!N#jk}@`(d_YZ(froduV@8Kckr9Gw=EX7ueXm7l`fX2X~{=g?~; ztBxpJ8|~k-4>QIX@qUFHmi#hU@=D-ru7&NuZk#jEj6Hi?2qkhE@7jUt6&&ZR?4-IT z-qjZo)3JE{L6RFf;L}k$_NOhR`Y(yv)yU#H(eNM>zbCs_;Ch$K zD_hZXJ<7f}xlBa6oM0b}b#?XXT&`caUgmSXUSFr*#8`!Ckm7@9cm$OKvG?UN9(?Bj z<^Ke#dw3;&j_c;e24(3#X3UtV4u2SSH}v}J|3r3H5a*tif-`5CF@3TL#YG1ANKX26 z`+jN?yj>JVjLmMx%9Sh8*whRk62ZpjTn_w{r-o#fMg-1x)VA}&at2D6=bLOeL~%Pc z#iU$9MCeH={6do*)zrR^BRP^4!|%6Kn@RCCsO>nn;rvXF2bM#I+d_=pyRh$YE=7aY ze#ArFm!83jDD^BVe=NIjbki{-$+x_Q0q6NxT3TAduCDm~IG*^OBT877+gLtR^*7&a znBh8+-!8LVFKkCv!B%AWOyR8)$ zUU;FBucF~tv{QY>h680~rK&FC89|wu8I%?_Oq)8b+kme%Jsqi*RP5SO0jo6wE-Gio z3s&kTQ(1CT{#rKWOq^Xd4rdgP!nm9Q>}zR266KeUqvVwWqmks}Hhg38C0H7E(KwiMMxr3={ok2Ryxo^Q}@0Q@up_ByZddk|~O{gJBt%WfXP=#_pzg zZ32d?hxD9$wa}cN%Z&yrhewQ?ij2HMDnbeH)4jPpKXP3HGDnQ0bEZ%i#h`rKR&U>o z_NLmf0+q{6Uk8G?{-b;GVyoN+@}PbMHnw0Nzf(q9lM&Y3j$N?{%xTC=qUONJoxbgdno*EpQSKyi(vnrDla+RSj4g-FMqWfG+&FPl(Mlag zw(jg!;ZkF&_j|B-MxOGK7fqYfk6nk_5in2%9!Fs96@DM|UMDUcYr*J@uASJU!E)wD zwQh_muyiV_Ki+3Ynm&Z-`Nm$|hZV=!W*s#~!2T8z!nxDIQpNxYCh$t*Zqyz0pk$PZ zg(z-ani&t@5@5qxbfqawfw$M zK15^XcBJMN!_beF#?1+S)V=#MT=e};N}g~G3<1;ueKA2x2>hzjcH@pRIf+B&o}x1g!HS#=I=HXE9$!_F4vO-;=z*l0hy z%HTZ29ZJqOJgx9w|N5tzYB+xUIO-Dx5Y(*a`FL7dIx6?=MM%wL7~uOy!+C=`;Vo4= zU^~1YQx;vKp4S)b^@o*0chJSFRoy;moDnJJM0~LEFhefK*~cKqMMgmhwr_j~IjKP$ zXz;_BU52!RQaGFIV5jphy)YH^w7;c^6*yYjaN6~zyz`(DD@wQ?B(hS&`M2Uw3));B zSj>8*ylrlGBa7-%F5g@p4>Yx_#o~@*w2!DW{&&s5z?;mtnp~Pv# z-^}$##1}6WXph68%1`V-1j{J9ckfXa>MGvV;623;U(43bd{3@ddo5KD5s?9Mq9nzH zT*_l<20aY)oi$E3w%gfN7r}W(DbkML`|^4d9gX$M;&xoS3KEIdfXew?$ivXm?q zndQ*d){2?4W+KDdz3;{|pI9z9SXBuV)sMsNMj`^&EJ2qO*Uwsj(OG#&GbXE$VNSuj z)w>a(GUkqx&v{Qa$(qg0_4wTEvvFoQ$)Pdw2**KQdIq&wZLoK=!qpdfg$D%KAc=#| z1HB~+8O38X%h)6DbFgA7*8b^XjG8gGbFi9^#~U!=eUWQ-Zdi-AUwjgyXP-qyD%>`N zkFoKJAB`<-*!Sk&5a61Z+dnQxeR=-~REBi{pOWXIT`2L|J3PQSGS`ISoFjECyBAuu zsYxkA*(dKU7Z-zFL`*17!K4z4QqGPYVaDEC7vB8T21~MDEuL78tA)2Xmx~@fBY>68=V-Ds@Gzn_sqyQB8?x<)+mDk z#beNzg4#nK{Ogq_G}eU$;+|0YNA*u%-+UP0v`yiT1;I*;j+nsvsH4u7<_DYF(asj< z+I9!8D$UB-o~~o~-h;6Jk)6qkg)6bxY2rOU-+6h zumTU7@INSUUNuv?QoapQdN;N?uzmMFZ1`XkUVmc^{{GrO@Yk1L!CzLc#9#jMB3AzO zubttQzx_?QBjG^>_EpWWr8!$ajvqG;nHd?%9Z9r>30oksMY2*53^rPQr#e^tNN*i= zuGpfs_3*w<7e0OA?LYq>?M)3-R;Uv_Sb{!lMJZpr`@R!(4StLnO`VX85Dstok9I=O z@M1N!dp=dl7KSZ`OQ+7kI~5^N)2TXHj8ZI9o-!sS;Hy_zaqhfim_iP!*IL6fA9@4d zi}NLSP^q3_S5K_8H5n6d{;YglbVdO#m|Xy0AfOh4W!S~jp_X<`8*RlUb4OrQeu|n6 z6jA1S{C=DTYHsoa*F`*<4rXH-@-CloqDtCYDV=A*I zin9o89n1>hw6t*h!In&O=CHqJud2t?KpK@xu7|t$c&2#az=~j2oH9HWcEW`5IQQH| zo%drUS#fa@#*8Uf9q>e|E0ncyFl=o$6mXqWTi<{c&p(gDwRK1|no-}-sH~VLPhg*l z-OB+_5uP(6nUh%!ASF@VQP&W@2VWcDsq#Y&D>_+G$ZY~ES}CpAA8_PtXQm|M+%$`l z1sfjV^9aZ@4&T2eHe_!2C?K8vQ%Ce%SJU$+9 zouj9C=Q?NM!Ua^8Wxj(`G{(<+XSUVa7;hfCuD9y?GEhy&&wn)(>HMbwy|Ug#&r3v-v1=bX{2o*%^rg zIAGX{dNBG^g3uFGS_I)#plc<|quV@%pI0}Hg)7}Wt6BLMX6qq_D`{RCS0CM37*anfC zqU*EzC&QG8Z2C@R(J)A`kGG&X9SwDU{PmA@_~5NpI34jDQoo=5K+?u>5)_XK3zDqh z4K64j-;je&X`;^Oeg8 zw*25Sz`pr-ksn@kE+fOL!q~B6uyf~5Y~Nm?&Z(@dQp$+QlP4*GD?ELZI%d4${Xi`p zdw`$Y=Jg{bHH|ul?_zwr%B8$SlkJKn?A=O04V+kc0Lgn0$sC+PDa zNSzY)&+Be$!Qsv8VR6=Bs?m;5H*HW#SU+3D4JGs*VawhGxa^JCvvwurf9i~D9Y+OQ zTqGsa`y`_Ea3v0Z^dG9&D1MdIc^FQvpZ5VfHVp`C_sGii&x^Z%PxhH1$MrM&gGS;>*~Ut;fQkhAFEbj^X4te`i9+t zaHo^uj;8WysOqNp!gRl&&QAj6i$!0)8CU-3*D9X-N@`{fa*9V``>RhJ#S3B2T>aDE zW5oC=KwIUdHftax)3{`2f3I9Ra- zu8ua0oIDfB);#d|7AwKSr-#3lbubxLow6AI;dfb?PdlRW=TYH&!yR+BV&obij%=sBs6>=T*4BXW;n zB$M4nINI@rE3Qy3A9{lQinHwJjcQMLwgT^qt?!~?OHRJGv%O6{>v)hv?`R;IBGv$? zj>?se_Vdh(Sa^m&2A$3`0&ZAz5mG3B9kw;$q17w#?@u>l?e;Brd@a?@nhcO;PEr1a zv(*58FX8;lmY7^O(R+BD?Ic$`iB`(%b#@mTTHR=O`H)0yX4%ZMRDHmPKpa@X>tt)+ zHeT@BO>MtVEhK)p#f4g%8%=EVf8oB_4J#^ypxy9bW;4phGLkFcD`gECxh zB4w#RP+b&O_;-z8&Kv30OlprEV0RA;E3RLBw_YtEcgEOs{Q2#AINVg0W8i%+ZD_#K zSy{?zc*UD_@bUCkqOr|~-G`l2XQk0Ix;8+O!PP#sg>-(9NOhFi2*m8-LypcwEOuiLmaeM|wU?0QmQ`e;}B*i1DY;6>6p~jXT1_V_{k{#Sf z!=sZQ>}rOawSLixoW8=sJl$(_X74L{{=zMF9#q`|m%ivh1p_#*S5g!mih! z#iy_Q9$Q~{5WfANV5F`MpMJ7cDPdBwbK&Nd=%{&1+z7hn^Nop2BzzrF(he(FJt$!Nyc z&rgKY9fDpP096*lT(x;a_~*Yn@W7)@xc7lZcv)k}ijclS^&wrUtb8+4ld$7Jn;PU~ z#uuj{FVm!4L+JD&oHZ%C(_K;~ojY?(rgHm~Y)r(N<1;DGg!6fRW-|Sze4`7YB-e}u zQ*vOSc8+KFq?^0CfnvCG%|49#-JW|$UN9Jxe@4!?B_$=a-L;d-=yc)57rAa_1q3HO z4}y#wS)!dm&1I5->gG~q9n98vk%1E)^o=Yy7Ykb3SU*A=Q3>2IgLk8rxxHQUs8 zG`IAehZ~#1dB)-Ps&?bJ!1Z8cFjmWRvGAgC9N48qEWF1^`77Gza0IoF@6Ur`gWVRg zvV-55@@5jrNx7p}?i6(TIB(Dm%@>*6bO zk(#bYOQS!0Ir|JBPIxLk&z@ifaa3O6MHyM%ShZ@knqkrnj`x&w`rEyo99DQ>jPrxC zxb%jmQJ4*(E)iic!sD|@k=N>?I-NjwNdY45T% zV(076pn2~n)CRaY~p?>=Z>Uv(s!RZYs zt6+yGpxh^V={?(Pt8r-adZl=--?8b448nB{Kfm8~SkE7ARqh><@!XrW>NmSn;JBJI zCQY>o`y1TKuQ0nwV0oVdZ}UDr#^t(jwjm4V6 zGjbBp)OO@pL_r-Ph2#^bqeInE&CShJHk@jk-QN{u^McFTi3BV3Bh=fyYQ|ZnrF(t* zKE03AOV8oHqaX|sEU}7DVd2E24?cz2A3Tp#kI1le8v%|7TLrUU;fxd$Qj?REf2-=o zHW*VZ@bK!m+&GdzH)~7=%13B|S`>$xT-dV5hM<8OaTZ|v3qQx_!TF=iNa2s@1?#Jw zcx{&hwO&0c9lWrRhdR;*?5}sA-AkQbzX|)Bo%pogjgmA2GT8#S7c{#9*xgJGo$?*m zyLagooF3c(BVohc>cX6Jx?3PvGpUnI0`lQX2SV&u_+){npR?dktvr9`^wM1AyE@Zi zQhAG4xeuSGStXqy4Z6Fd9YsYWlp^8NPq!<<<>0{sm^g8gQuwlPAGTtHvJ_^e1uG=B zZTo~ei9yVqIa3Xwu)=TKr=Ny9J;N}qiOZ=uB?a{)V6o*;`Is^E*zV6|g*Cg$V8u#J zO%3er4rGp<$>T4m+43eFO|>Y>&&JhX`jYaSS5sSy*IxSvjHzibp4@^)}xJtf7Q|G zMZGxaP{+2t)vnUR*4}ZXqd^@luhWVBRaI)?soL7Q@U;Ep6f}|Gyl2lYOrJ5GJ|RQ` zHw)h(%8&b~4x#U7#mhk9^5|&A7k^RPdj$Tj zkyGcO;_ZK;c-$luj+vw#=^d$Zu|Qfo#VlUbBvfdMvrr+8n9qe2)V)CXl!h!4qOnq<7Xq;nuCtI{jeX{ zrHcHT|8TpLgb?R3t_S*J9Tg3wGyB@h%P`^n9nCPC^vFsx!kDDP=mHC-mZf8SNjlO} zqUun}(m8a__>weCq+@(dbDIaRZLEQVI>FOMXJA}$8b;=&C`Ize`&yM!nEe;0QM(^a zE!EYH?e1_M?N2&T92%$%<9de&I*N*lRQ`yC>rGxXi0<-X={DV6v;Dg8|Jxam_&s$(0=2b*2k zwU-rSDaWTSiiXpd%3d;sS(dH}#3Ex7=BK5gI4QioL$puf9D^QnQ&TX}Z0e@^_{8Z( zE$apbA`c!7jx#FH86%7sH9r&Cqf(GJE)@lnQjuAbjO27Z<&_YE9v=cOif69lSUzE8 zF9)tixgBAR1gB4Q8nD%|$Au}gQ*qv&qg`_$huF;KW|WUVy2F`)L0 z2UOLn-tBPU zU6M;acDTZW6Z{QaUitl51|PziSFv!PiPuf>dEB_<;!8SR*7OLS|NaLb(4PdgCI!O_ zT(Z(`{=9izvQ{j74O=09wD}`SrbGl1ba4k~hKeN0OF7g=t=sb{+ctzkznQ3jvbJ96p~~?;+&%;DTv$ z=>7(H>G%88rt9=cXz6iwP7EAroZg&wxU6#C=X+7vWTh}KFzjx(sd^`o@)gf$Q~uZK zT^&s|>iE9(FDV6YJGIZY{X0;%?L8bOdAGjeeY8|o(6JA2_`~%$@ctWUpz~S}?Nw_| zr~w!*WBg2J0QoL~%4q_z1C4GxwdSx=z+QcB0rIRySj~ED+S{($_Zg#7;R;g!U7xPvBNlE`xh)K_ z8;>~0dxYLI;PFt^6C$~yYgyp7?cE)%BtsZ5rqB$RCxGAm>#$PpmgI!jUYT8-_45OrL(ft@d$k0-`;D2 z%g=5ZyS7)uiue>hbCKaMd0M)>Jx?^#9rW4=_2e>r4=S zE9a`N&Kce4ZseQ@29N}kn3SkEmSo8u+bidp-5Jl!?(_WX+1Y*mnOTp$^Y1vxNwypm zEK!*vDP|G`h@4}ibMCI3Rfi(?YxU2<3k_W%@9CbaV=ui+(I6^X;;%%x~9F7@y2?NbrOjDn+cm?Q$M(``zy; zhvIA$%cfV+(4tr;!#-FmsRqx6b&kap0w$32``J_+u!=O@Mt+FppmMsS*}RobOPSmMr;*B zZ#Il{pT~iJ{%bKPEI9YhEBM-PeHy;uzT&Uf!A)EKmw$L2yPp1R@yz^j_Klz6+}kfJ zT38lmcRASp(q^%E4$Nr4^bkx{a`YSj1tX{4DPB}SMhxAQ7{1#(3OQCuElf{jF&47) z_l{*@FpFVB$F+dhlg17mO(0JvpW4)scP$d^cd7ryfiPlX>^-};5o?+YvUfa?z?Gq} z%9U6e0>qCG4y%Y_7SL+uvfsjwd`3i!s7rDWc^L2ELE~+3GNugat79Rxr$9vX0P>Dx zhD&ONHR@{mdxMh>Q!;z=>EK2P0f< zC8Q|FY`s_d?L;(=LvlSGNR;STlfsJ^OFQ$0@OrCT_yh|e2Zx+q#;BvpjQaIXbUs*x zZJ%nyuFp4N)3f#Hdbk>`J1bDP#sP1m5l&YY7F`VbSO6|p2ChmO-=dQkMf2UezXJC@ zQlV(AglJeL#aQ`zO$VJ~rPK+Ofh>d^b#?XV=;&0-v3Kp-RrsBJlh@OcNC-~v0|-x!AR%&|eWc_zbxigp-^mFK%JC)YSPcGQ;K*!rkj?3E ze8_;WAIM@PkVR)hVRLw5L#qS7_govEySG-(+tk7DJh!1m$|j(k?`*JQG?>Bj$FsOF zX%m?~v+l$)sIn|{JdvjeKVc5vp{W}q$QdbYHR+Y3nld^qwsk@jSznmJ3k9$~ZFM$$ z>fUPTG7_b7WEYcpF}y1c84+IPa$o7A05IP zJ`}h^v@;DFmIexXoiOpfi4dm3g(W<*fr7n%Dh#i~0=uO!Bg)yo#!9D(AVxe4yGf^V z8 zrjW?WGp^-xENt|aGFb4F%MrZPT`+d$0(a9^C@Op_4YB=k)tASWDN(+nd3f9Gus97; zjvIyW9SP2;^H7F}QItWW+PrW&c+So|)l_<@aM4(y!bb<#`vs-E>o7SrrP4u=1{s0& z_~VbM$XYsjnXiu;jRebw9-%&Y_X9IWl&q`lK#)s73%pKdX>0WqNt;f%P_M#|hdUUSepeB}5>4K7f zTR;aC74b5|>LzeJ(>N%BMh59e9TCN=%whzz-t&>-1qCn%@s(G1|+z-&cp{2asKjrhOiI9bYE1gQ9Av;@|h`GSX zN#-nOITmaPFBQ^%k%S&EzIJ2(5sVP-9T20Lj)*%21_LOCxtyQQo1geY_<10V$$83v zpUJf^$uTO|kEGHFkjIgCtt4dZ87;S#wFa{ujw%x>SJ_0?xzKix7oGd6u=cSUY<#*7 zTRvWomQ5BU$NjLGGkE4RHQ2t_Evn>o+NY=q`ZF-vOv1XQr5Giq(o__qb5{y z#7$mI6A3rMyW_lFfl=GOyA= z)VOc#|Jn*O9^B|fQ7FsB1}XN3 zU@VZtPmfF@!&S*EEnhTz=)sYqrH{~XXJP^ABM9ad*5|VDg<~S`bTBb@p9sE^jYmNh zN~Cdq(5IFvuWj_I<(^b-7%4Ooh#}w)qE>{|qdV&1ao#AblBq1-IXj85pa{Ei;ky)2 zff9kduhj-q$tha~ijkf`8s9n_#y}*89A|&&NGb<~JEKr3(94}1thgBLbeQ-16BrI> zP%naPwy5MG`Tfj<)J-W0Ghee5usBs-pk=KcV^JOY{A~9^9o6qrf4d0#sh)`RTNZgS zGN}vQQDA`>CC4aXwiA`EL==?{t0*@%r6iPte=-^^!rW^mnqiJP?%GVH?RFdP1Phf; zAQB2;a&l4>bFbRfo}Z144OqK&4H9Cw(BaFm!RVa5d+)`L9otm|Ty=G|iY%s+I3bEL z`{@R{yG>y5dtSy4jl&BUE~-=(+yKvLGQm=&pmVu)C>%mx_eIonZHJESE^VMU8ZmPI z82q6yj-9`xqC4(rkoLsbwR@_t{-eK)mR*mbcHK@i?|cN7vXlTBp+_zwWJHLfxoI?c z+d-P2ji<0|90PPLmh)3yE5D5o4`TJ|cI6aizUMG^pXaqpty9>K`#$w$v~Ju{JW)U_ zu0!J(ruwYefwax`s!2qsQa3Fu_$d*>(UtcqY~*Nw&( zF%in)^%F_BI(NgnYMr{Cd9I_AW74l8ik;wrsS( z<1WayP$Y}5{jDFdjI{0aiJ|usBo3j4xX|8ahfQcB53lHh+nx5(9Ew7D`Uq|~RYF|G zfk&?2YPaHzP!!`7NTjQ!@}{{UdWW;x40rvF?Rfe1DNJ0B!c}XT*=a0AqJG7wVuOsE zm@kFigMK)ydhCC;3QfWvcn#-8;zEKlTreES;o{LSs#n|5wBCxiKZO)?Y?8)TsvnCo zP8Eg@FixIx@}2Z7d?p?Ws?E)qTlnP3Q;2aQg}<>pbZqf{{!MKM4u>92V zx%!Ru5Zd4b>A`V7ULT#pYa^359|#w8V3xfk2b3d=bhLuBRD|1ZLug_Q_uqd%ni?C6 zXXi#Z5>YG4n0}11xdi4u-?Dkjy!aMvG&=duo;d@jr?4sL?LtiSZ|2bVN5k0MvRY(K zAzGEGC7P>hu&u2V+g5doPG13I(eZt%zZ?I2@C}%(RwP7MVP5DG4DvM`4xp*BM#fMY z-+uQsktIgNu3s{LkX|W=N_>QRDZi7h`AIsWuB3R4T&oPtjiC zGr36_ub~X&H5@lw<;Qa+{YyP#iQoi>j6tSSnhjjJM7?}Ni(RE%SO^BElDIUS5E*mx z=5poWL6|5w*iP`Rdm8 zD%4k6aBk3#{>iY)Cm4z)uyK_~ZFb|fQFs;~EMSE2YbVC!86to=BfC`Nu>>lNnG`nH zh@wADnNNtIVX6p5`A#t+OWvEGY3ET&EGjOuMI9<-ppa|v;$%W?w$te1ENAieBF;~x z(d`!ngpQ6CP^5LDgk+?Rr$RXxs%93_W`|J>8!McZM&yzyBq$BpMpTliV6Bw%WIj*^ zOSGVbQ9x5EBScA~Lzp>)r-O2RJ37<|1IyLt1e;78KT}9;{KYkpSFJBe~IHDXFN-riMDJSdB z7Qy*9euB&Iy&-JUfST6TGNj9{n+1~tJ!<2&pZ@WG!pT>Dhz$7wbNQ{*_~+nECeYq& z65~vdlc(cyihMM$B7R+Ut*RY^1D7#+;x#<6%Yuf=o6B;dJB<@pbLf2JvodCEif@dZ zI)D_Hchj-F96Xu*N#}wXso8V}gX0m@ctj4^jA*L1p{?Gbj+t`R(usWN!ju?QdQ=oA zau1#>nwY>qe?MZ} zxRf+il5ymBbbgVqa-y2wsgo?1uD(#PJalj~h=9?~l#&G)d=^Ii_&^gSFW4k&#m9uz0 zAb&f5{+yC2seBnhuP{is$ENj^g>lZ;AY~A}%&q zs>r8HpkuN^etY-QX&mjjgsAZUyx0iSuUiy24oDlNvXM4O<0YMy^isNpAkC2GOTUxu z_&d+>JD2xUldnQ;+I;^SHVNXY4WzRyuA_s*RnJkXNMDGmX z2CWm56C&GbcP+Ahe31;}fzb$>#b&K=8u9!=(IwJ(MB^gk+PI;(9t~cziXMLTlwall zT~%XMoBDn0tub5~kufdi-o=p^>MG1CC-Twm5dQhVxN;JIeqWu+G0gjZa(EJ4G{=0& zbUMFqY!YYtV}<=1mP0>TDm16?T@O;3<`mX&XJUa)VInU|U{-H}S(GgX5hX-%WE5~l zgtJMgeQk>e4{fbQeU%w@n;!jQd~&9b2Iu`7Yt$#1e7S#%`3c`VJ%JG}>7Y@$tV*W5 zNQAmhO5Rz?=jss4~nZdwk6|4>e>gr8!izJN(QZUM= zA(uvlJBLqx){Vi7ekA;&Y}2XA8EM|cgG%^ZZLn0(p+W_pP6RrI)wzNpQsc7Sv~f`h z(PSFFh!`lPnS3f{RN&HbuH=}wonRdpDL_YvvjTbfWaNA-7RBiB2)etw)v`WD-bw+L zV)x1`ub`*57m-*T$(#-uPEM#ckoxmkq~qIN4?^fZ7mL7N+ltkXd``-e!qDY&7@wTP zrHhwv?AUP}I&=uzckEEg{iTzK)kazN%3A2f=n4&XBOaJ6^yx~{&T@cJo?=i22Crc9 z(s30XY<9ZY@+x04%dZ^7LX(013rKOPFZ=j|3igK>Z?SL?U0q!&mC5*oDEZ1jnu8b4 z2V$`FoO};QfBJ14`N_9%>b0Ms@9c2|13tBROkvZv8I*AHV4?e*{N^9*#pzdns5Ya! zbm$FSeD_s!?z&%w`Hhaesi9u{93 z&kCFVEtjldJMei$e#p&JN2X$^_0SMAE9Y*>Akij@4~uM5B59;Ds~HKVSeNJf1V1!&#^|nv66H}2%V&Zam4&7IBP62RD{-~4C5CfGSqc) zR2nK z&)y1be6|(K!}6CLc~Yl(lM(m0?5Hpra5k2Nk9Fl{v%H@5;;Np`UtK(tF5b5DaPglo7IZJp<%gi0w$4%w9{@E=&)t5 zLogh|;qLP|+1D-a&kEJ(REmj6B96y<>_G5u&_EbR@T5F zVj%*;hB;N19}A{S-Z{@#E(we0cq|9~ogkpKoizqm4DVFcrZo z=Y06tu_>G#kTF+p!!JM9s2s!0C;a0hlQ=&VN809=XUFmCNgsO0lZAapsI%M&(44|| zJ;+%!r?7@Q6N_*P6BRZC8Y?I?>{#F8k;8?JtK8Tm24h3jjXPtvH#pJR-2veU5;72;)#5H3Lp!W_m!NeqQDI6s-ffx!gc?299q6G2WRujEWzD)~Z+4xP-B@2l2#C3%Z(ari z^uu@KVtComcKB<7rmrOXvN8;W@VVoDIAco@I!wP1B_VZX-@yn4kwUjM4TMCIDZq_9n8S$5?bO;_hn7b^b?+Do0{Aei9IXE z&PNatebm?Nisp}{icw?X5 zHjo}vS>)h%9zrJup}F-oD^fCsk49sNu)frvSYCdzzGbwwQsBxXMq@wv$RoGh#Igj+ z1@1ZFaM*8%0wq5p-wFhR*s^)E6n}o@w@81TJ9}2uxjZGq?Lb1tFjrhzgyvZOE5idS zXYjk1&*IJVCvmdxikjeK)Nd4ek@a&stwTb;0XfpQ(Ybv`LeaXkm)IMWX>`6%he4lL zk;3G^-+gyn{)Wi)+2x+Fv1TD|72Fi$hiDn*L?x z7*@8E@D!$}>=_CnE3$!`$|=WiqYVQS!o!j}Jl$M}M;oir>a@Woa(_dG3k`M)24e|q zYIopYJXo)EnRGUXm!wXwotE;dNnPOuQsz82y{1ieC&=^?G^g-g4{E5IQ&_{DiCZ{@ zsq@jn%NfT8j}cp%EO@Zfj?MD9s>*~Kml1B8UKp=lG3;CEDAY$Ncqq?#^o>XH#;I|H z67mBL;FVJLMF`|X;h2o3Fc!@soHG@ci%=jexATCFK!=JbVp$P7!9*6Lkqmqy#FRsL zC6)f7VxCWkaW3zz?kMJbEP`LF9Xd2ix3g~vDil`fLxQMG$CqaH(}y;A27fKyl*m(spGq>u8VbSL~{ zhzBN+6GPKvbE0bXCRGo6RXs+}9uzw}b7v`)w*tpSJOZ82sUeqv+v&t3kL*{uqG@n4 zGHGOJ5UFS}qHMAJk zA55Tj<9(=EvrX!g$Iyv4Fnr>zf|GA0qgRR(S2W1Sr=mFD7gVR+b~C(AGb|=%_bb$e z`G+^Ju0V6OT{)01421B?u`!GXY`tYvTuaw2oCE^F-5nC#orXYgZ`|D>xI2X4&{*)` zmc}KxLpSa;9^5^+2FTavJnu8!aqoBk^%z~Us%r15y;jXR*EfY+0ZqZ3E(kLTaEd9{ zUsyGz{z8s8^f{3E6m#Z6Q`>m*?|3Q0k24ZVN^upHnvt1_l_fm9?Wq2(k!V8~LKCp^ zeDnfm@Oftaeprq48F{1&3e0(0^-Vz(r)lHJAwTRn0EZ|i#4Q$&52li2DItw6psVCk zHy)d=?2S5F`jsPD3kQNQ1_xTaZxZumJ4|~r{a_Vc$il*1C@DR#&1@xQ%)#BFiInu# zw^Ps3>`k&xp~AvX|8dw`Zgbu0L+NCCQyv$T*U#liW%!SnZ#il1_O8@ToLq_@T|%B* z3-UEG6t@-qI7a1Vg&CUnc&vTdav%=K^U0p-Kr5!Z(|P&5uLlh%1$;j!hZShnWBZbR z&>3Fy)TrvvCx2sBY;_I=783a?t{yJg=1``m&rmOVs~zz1=uPDoQ@gP8h}^YO9aR_CiycT0V(7KsOa(4Bi*RKzsF& zLQUT$uuG(oydsAM@R*OO{yegM!xPlu^(z4_lq+dQC}~Cygsc%xm-y{U?diM|rNbit zb;*J9uJVF9b#4>F_^0Mx@bw`NWkT7odgDU$PxrLftOBRxBa4NsMR8_$O_1SzRo+lO zWv|A|CRrahz#EY{bu=OY5)O#NR1wU4p!E}?G9O{3vnL~2coMWG`_By%dJRO-znPFh~3;#gyGxWGY-3SW#s^{Lt~7V5762Db0g@UvY$jX0{25v3he zA;Nz3n~4oT%uiBO+-fmea26G$;9_*u1$+McS%1@oB$+75&3RQS7RD2gXZL(zFVa@$ zO@)?;GfT4lpQ|rn7a37dYAb6*s&w?Vv=X>H5Q&cUrq(HzNG$V@x7gPd_b3rSD#od! zfX6@2NP}9eh&9VqZtvWM0=2YK-H_7haHF?o%QOy7k0sM$g5{Hf#ArnF8>D`I zFcL;&DfR=)fXX_(DYM3WAn0)+6ep}iEVs<1>|moJ8h>IidFWgeK%sD_Q7t7cmXDB( z^m6)YUH-A~>Pz03*=XDJ^mw<1D@{fiz8aVw=17@5A}}^<^qxdpNR~pdx51d?y#z_C zbnY-CGAmpqlNUIu8?T3bqCX1kxxa^5aP6GnN`nwUlBVCV{wd&~n2U^^o zj}jIJ6#P%)Em(H9>9g*U{ZSbFEV*}YajeKxIrPK@TOVmj2D@K$x(!5lgol!W*&@+I z#`h#E1O(h28ZJT<3;cN7qIjSwUIW&5C})00W#C%RQ9`a9r}3`&pN} z4N|NasKKVz&&n09r+a{@V<+ac6rs%{t)KvQzh(yB(#lz}3kC;AB__9-V={%ouWXkk z&_U+dc6hx+djIhO_TJv2hDLJu_@ZL6Bn!HtXm|iEQlws_%1MFJ!Zfq# z=si>0MxN0DwCM)3VOBS_$p3vt1n}Nrz$fyeG?No%@Km_z^i~!$5YD%fnE_=|qBFE> z2vcH0!{<{Ga7b{a~#?WfpnId{4)H`!B#kfbJFuZL=wR0yL8rW$%v z<6QX%>D>*b^NTgtJ`eM$6yX|ToFY&TchNO4)D0EQwss{hzdl+dY+%n(l~RY0yVM+~ zG1FqXQ>DP{SoE684<&SPJ@KVz`u24x)u5ILh(YWUCsm^n@$w*+h@$|W1D!oxF{dcR z@97>TTR6C@rSc)rOXOi7f3n!r8nG%xAZwVK?q=BiWU9cGp)q(7D<>uC^l>E=Q>0}n zK=M$cj{N1I-3+d#vv@vj@>(Ow(C;BD3Uos^iJ}hBa}pTxKBO)Tjj>2O{CY3nJ6@*< zCQj$R68Wo*M1rGJ?jlco;zb>t2#=a zFm?JeJe))!?A5dBLY=8p#@Nx3@_gSKE61iYF@i-Whm4Zc&7+K@&K~73Kb^$U?FtKF zRy-6gS|Fg9kdpl17a-Pi@ri+vBL9O?s7PwOHlI`R1nASQjZo>fx--*ZN4D)oJ>%bD zgG19+3f1_>LcF{0)$dP9%yNp+o83;*Mhs%A+qIEN&YJDF0=uw{t+8`&TbZ$f4zOq- zvs4n!1WUX@-~ySF4?;=U07J8!`HV>#4#$_Q?hCSWpAnxu-eQ;?pReauABtI>-a&DW zGOX)CiBx%f{OEf@f%x35UO{^HHHq))t>f~=P*FmUh@*Kk`OBwQ!H?izq?}p4q9p_G z4<6i2_SxE+Emo{)c4YR)mxA6_*i_3Jp|^mnTKegn9qMj2)SYu#*!?35-GM`u zw8=TZxsdhdA>h3K+vmKLWfb}?J1@(N6Mg~s4Q|l+{QDqp3*nO)m~_A8$X1lXQrVl4)m}tQ%kaZ&LnG|CG?Q=T=zY!2ZlRU1#c=6(==? zO3&xn^+cVFm~mU`m^v2;&}61{75L*m5TWP_&X5_gZdKJU^aMBk{Yvdgy^b3yMjMm0 zwAni~t%EkoW#eYN5P*q1K z^7UR95Ea3v`&iDG_PVd6l!VD3z9UK~EY*D*vycN2ZfTf&EzpqZx-NtE2I9^T>I=GW z#pe#EB9F2dONZz6!7I}x)-m}@`EA;iMr_@Yzo|MTo)u8RcqhNVBmV)JoZ_tHssyFU zjRCu6({~MeC9($QQYrHGa3BxVVXr{JtXZg_JL{t+P}O&e-rYB6dA5m-%j{3 z;P!-sTsY`W=*x!VWT)>!$g@~hS5L3FK90T(bD@ZxtZjq^U{X2uz%<8^Z|skh4ytBY zDeE+sJ~MLBwH$LvG&0SB0w)xtK@krLoNEH=T2Vroq!Mel;D*(%l1-yI5&e zyw&?}YFNCPf3n?+92tA#V$m08`ySR1=UCCx4d9{Z7U$fxpPUn82x7<66k6Vm95vAU z3Q#~j4(8|QA?yKBhY2mdCF@k!4}d7BEao;??3sz49&AeZOW{M<4?%W8@eE};$gJUJ ztwP9PgSXHR%_Og8z$!5n85E~gj2JujLq{AR*LNlE0Q4b+)lBDSFvpXU#~+D?_chZl zL=v{lG)9VpRlioUSqOGasFBb?kBJkOb*)vkG!zuwJQO8b8OR)nuEoOduOT9#Z$*__ zNr>9eT<4&Fxa;zhy^me3c|$McD7RlY`LzYr%(`5;i^ab6^hUqJr5DD$w&ui5<|>lu zM@H0tjB2MWmQik>g~!gT<;*as9PraW>Yw_)XOO%E*U}2v@E%I3%~ec(V;`IRh@~^q z=+|*usB)6c$~{c(rbMi`9TI`jy66z`>t`rO7X45r0$)zg;|~SR*1kksrHHK-&J)SB zWJ1<$<%~@sZ`|Lva+~cq9)!_b*4PMQqX%+7URoTt&7(~{a#J#aCd?1K*cq|$KyHA| z!F6frIirn>fk9Rby{N|lHv8QzQ8p#16NbzvY7MQ5r!Lw6iF`!6iA^{%I2;Ufp}U6d zogf1Y?P`f8*2GPhbmy^91JirB2kBg*dhdtm5*WY#2;Es}br*z-!@|s0v~_eg*Zj{? z*HQ7dJ#f44w-n{LyjdwWNO@CwQV5ig#x8o~$&dt7uy2VD;^K_}s(YghB$+D41=)R< z&Aqz}9;NBmEzh4fWLH zJ!GOuj_hqkKo8^4am)k}F}%1^d1GLZ9;;j46v3_%C~E-qy3j%fcUV|uz*g6b*vi2` zS*E3maB)oLJ)SElA^snaJ~Ah#UbX_SKo=?aJb>z&kfFT%^Q^*H)D%;KCVhpr+X_xp z#FXv)cE$0pYH2i{@&3H*GieiUjYXb=(06R=_tnT&Uk4)L9|r#f8pURRu1Sfz+K7tC z_`76s7HJdjsy!BKq$ZiKkVn8$r#Ur6qlLu}!N~?GRtQCTId6*snZJF~CNT%C_=;KA zq`za|eLs?JZr^g%8?>!%2wO!ZOC61IGycTj;<{B@+o3mr6Bhtr-VyOuc6N5w!Rb$? z*+gN<_P?lpvz)5tG4fhN^Y6h2`kJlYm26E6dEt}TU6(1_797K0KxkbT=G{s?5zwYL zX<;=`OWEToHu%DKH@jfl(#;LGruzj6cTD+Nd@``w>_NOU+9K1V_h9@|9v5&fxP}tH z{ctINxdl_8`HE>KQ}tQbxUXnR(ZE}OoD+5O6iA=+{;Z_SpKN*gGk-7pPOo84cK%OY zR+qLFW`#APc>H2SJ68I(aG0I*=ImDS8@s55VVXnHeR4; z60=|$U%-7n?9#>EtnQDfrwK(|D7?p+kB?S)U$H+OFbOCe9K zGQ0(0Ug64G((4SlV$R;(Y6T9Cs<8Vn;_j&HH`F!r*%0{YWefMKs6JckUJl}EX<&Z+nwK<2rAe3Ts2ngwdm(y~FQE{SNDleH z$Z*a!fQIo}hJkBKt9o+g%bw-8h~3wRV0^t&v)vwfWiIlMKyZv-^Rgqe^hjS{aZH$Z zYc_LReAaY-25tC2@jL@5@5;yg4!Z7=2|0=k-)W}i^+8wB3XM;WKUo2r0RoiTI474v zlEyoF>jj%o6qr0SrUrd9QVmHC27ju>qB)EXdwk>R6aH$EYnY%)e{>brS7k_@1c{1p z%uNxnzi#|XB-Vc}{Ne=cTigqT!uf2c^2MP_8H91g;!tGFR`Smd^nHam1Q`9~dDiuB zqooWThO-xw{470?-nS~qgd$;(u3>S0&c->+&iL*OXBMw|ymxOL&Z+&b0?ok!sFf{D z7bwVnM#&Q{<~7b#xj7LIzhcZ6hqu5JB7+bYg=H?)fP^9KU_2ATSH&hV zA*9Qy?XnQGM*!qbjVV2loiOU_IndoS#~|gkZCRC*Lc2_3xg-2}8HXwQgG28ikW_SK z<1;590tJRax6k+J`xic%Ge29P8HP7IJem(Tlovj>P4@6<(=Q9Es!#!^l~VrntA_yi z4u)=iA-Hi(o4eDd_n%_op%HhlziZrANB(mUx-a35Y7d{6e@6S;ocJe6V|{l_fQ=Mo zQ6ahvaTUMiwf<-P|EUQ5^KP6eU_laI<9{a?=bu5r|H8ug-!cAAEB`GJ z5C!k!-*x@R{{NK!?`%jS!k6OzD*tbTNElSK|IFS0S^j@Y-ebdGmH$r2|Iwg0H1Zuh zocaIj=--N>Qt&;G^f%_tRk%foYx`Q!|D$6l>OW22Z_p*bF{hzsmeud7!QWW|bVVYs zm;JwrBV+#)Jw+y4V#SWlANVGlF3YeEo!Z@5;g?Bpb?BvldO@GZ{&!f8B_L zAwZXo@QsU_6cO?Qp$V{+X6XLE2k-_U#On-#<9sk2`#I_*iO?)OCHcC30u$tTBZ37f zAaLE7+V)q^+~dAeTy$r4Uaw3RPakuUD5AzF8g13r2*e# z)8z1m5z!x5Ny$i6H8c>~SK}+Qu@Ju!laoscGJ_@@-YV_AIUPfS=^C#IE%5!bOtps8 zldaL+YCYYPmxlkWfGF!wF(D)i zOpfdba@h1c^)hsFZG`#emMK-M$hk^c_VmFhj*$958pJ}o12*j)*4wQdo-ZT7;R1z7 zwgjut+J3lTYl`ms9B1vpOC}xOY`p28r7FJFvw9TYF9N*3;-OF11|)R}d`FEGkG~v# zrMBZKK?H2aFnNS=6c!aB5XMR`g2d(M6FdNMw!AU$?7f?VVlPP|@>n@jO4kOV*@)4Nrdp=kPxXQRw}sM+E;;6#7Bze~BX zw4$Ncj1OYY-Se40|CdGYFKZ$Y5=FpE20l-yNRD-h=#KEB@x{BbCB%+-k&_5kw`fG} z;lfZGA##%o;*(ayruoc^6H?^wMl$I4$#OGG+Qzy4UvCnzM*rdiIcB1a(H1=E^! z(a|Bg{oP4ar;9&qi|9w+4yy5mz&1J5Y*h29xwty$2KQhU}-jj;)apm;ho5`gilc+Lp;Tn_O?xzX?v253oQ#JfuCY|Ipae!`6Re< z$aQR#fo|D(P?sH;i@!E3Il&f=bnr>@lrFHR%hdmZB4AHpnsD&LZq;=(`-kn6bv*_+ zK8_2euS-#(^Dt_|J1x`^GJKVqVm}&!`!U5<bC@S6`hJ&4oBIi@H-M z$T8=fl}jvFc(G7b}K)kfCa+wh3)QZ~zHsuo}BO+N?eZ|%f( zHH`WE%?T(QZTL;0oEE_GUf}QEIx~0}o~#1n+E^r%!^sPpKD1?EBYjv%XIVGRWUfmF zLkX}B#WSvW9UKe@i@z~A59bIFcNk)Q*}!^nzNdBFVQt#Nh#wz$lNZw z*6IW!p6wPZtwriO^~*~_SJho!O}-^;w0Zw^K_w0W*5xaMUSG9Cfy6cC<=N)?7myIc z|0A9-%K98K&16W4XOV)Fr080%_$MP7C%_{PL71#Ee3sDdaZwIetbeeZf%*af4vZk?NiL7D?DmBDdeJW{NA-*qzuiTs9adSUpx>(m%ZOJSL>E*T!@ zZR5lm6HY=VZq&5_<(~m|GM&UG(iSgXvVF$36v# zZC$iH0{6KnhC9|bYb|_y5dW_Kead?cw%G(0np26?SrHYgcg-N^;3(i@=mO*pFTq;*brZJy%Sf2T|3+bx|jVv+DMrg{Qc{A@<9RdB+=iS|e% z#(leXKUV#DRx88Rj57v-=&Rgbv9klDW>IHGjoWK3gCjmE^Jo$U?a;efD>9IbdCJhS zH;N-X9jHWu!gI+ldjXODa`t0J)rS$otuuwDVg%~SVUc<1**eIcry{E)PdKv8RFkr) zWZXGLKvM!3y2{3kB!y=8$d{>34_7euo9o))bzq{p3-w(4IKlHhWrg)+s2P4s#CR`Em!8Ul)`!>9MGSx z+t+2H076$0{&g-JgW1&oy-k*ar!yI~YBuX8zQg3|0|2zQr;@gbQKT;9+9{mWc4~kF zsrAZ2oP_4Y(J*TzhI1t_MbzBN9|MK%D}0ZeYRzP{u@hnYH73uf07rB;In9kUxMEQ5i--rAe)e~zZ+ zY-Kf4-ww9*Z%Idr?ktM6MOVyyjayTzsvzJ-dMJGarz)`Wi$GC5$ z9^a=9(|jMJ#vP?5R<7vgAyFGC&IRG$wv83W?sD-n4K$_10d3NmA}1AF#eP54j5_ECzbf#MNBVRIwx;J0Tf^$vK$1apC;?f5{AGh>IOMyAX?|(Vl4o2Rr8X z98iIQgzT-8jw4W}Jbp>ay#N{MH+#0^>A#b@IBjr!lx#hm>u*T4e)`MTg9p{+&fl^S zX!R4JthQG9i8K{a8ffcKvpI^9MD?=vUjdYANp5J#FF8?94|aZu5LhrjIV_Y+ZApCk zkUk=qYE0>&bn$!*OJAE*v0JBDZZX>*ZpXpcQWigriky*zDt}pHOMu3m6Y%(SWl>kG;Wa^=B$P5tf!-17PT0%aS zB!?gTvL77pV)*Dx4}Pptb@;RHx0Sp&SBHsJy&jV`^7*~oOlHdG?EqSKUiL`_EY%K$ zwYsT0C1ec3c(zSF?E>*g;tT?97C`y&#Yw#XML#m-;Jg+^X-(-@G137P(%DL?bupqH zUo9`>mpP3*nXH-E(QRm{{pY@0isk8r8M+1@t({PJkx1S$Os4I|v!lq?*OSkO?TVk*k_Y`>Rz6xwm+X)RP-3&iAAYbhI6&G^B z2%$No>lD#xw8!-$?FFR~ids%^K}6mn{LvWcdC|1USx^WhcCA#AsjD82F!>{wymj1o z`80RK-%=@)eTGKcyvS(ZMMsEhoC($5luU4_fmT;5R64mZ?^_Gv%BEpz-3}Yd2rj3o zjt8UtqRaVaLl+v4giN`nAKQ6cQCl#MkbIu@r6E<{Q{qL~1VCS<(5|hcRmL^$!9kxS znVnG(s#_A6)HOM}*uB}ha3K3j{HOv`M)AtIDX#6uxvQk!y+0`V6^V~khX5~c>BWTi z zC;bbW!>b1vdtSd6_9MI{cDA42CbwEFx|wpjqUt)8rj8FvExr}=x=k~FZ}#7Cs-+dg z4(U~DW4|@p4E7eaG$hmD3ix~{8el#t`a#3Hp{92!gfc8c|0wkPk1(LtW`!~)Sr=?B zMy0A8Y7sYg;3mvT9!Eot_nmn}JNeqC_xVvYRD_>2Ong8+r~S>czVNJN{mkc34st2= zfd#xQ@2z_OI}7l2lG+I6ySItkKIwJAY~Syn-yo#_MA7wNvNYcj=S~~8C|SvxCqBQ2 zvfDXP%zNpbKW5=r-oRcuWUi^Jztob#hTe~4kC5_?z5RFd<0Jkzu+Ybr4KZ}n+O6t= zVx18^>wwAWPAhb__noOE8W*XSkJuDmZlc_3SOh>RbrRdLkpcVC_`juJtL)$M0VpcVA?|1xYj)IJqBsLJ-~|N`~8J_tWM?EPRJHc@e!_?$RJykgUKp zpZ+xaOl#X{?2_eyq8vXUy-K}$OQNOD!F*dND0odG(o*nd@}zoTd$}S}Zuh+Cj{Y2W z!L-s|{bsPgXPBGYzAh$&QOkolV0T((kyRkAuGhYIK${^Ti8tODrPq$fY>^0BHyV_E zgt8S7EGNW1aTn=oB?w9?6Wl6eJz}mbz5B&^lt4$G*41=;u`5eDTW<|xSoPYz8EPqE z6ok!dTh_ zGwB738rCI&Xr5!qeQY+%1u@BB(ibcu4kPvMX*;R?q!^$c(oT4{G7z|Re_`SC^03dv zDX1G2z$(N#^jDW3kl$jN8=iH#%Gyrs&xVQhb(naq%Li$Bx$XQs!f{0I7pzTRTA0tj zV)rNFSMfZNF8CW)nQ)Fn!|M}XBiiMg4xn7CH40p7_QGQ(XJ;C;Q<9c|>{Iw`pKzg% z_&dj}xri(e1PBY)d5!CX5)$Yb9lbS}k(&@krI+AN z`(ZL37GyM4BO*|2H3{Nw9@ToP9dKPVX|B9L+Ho^);Pa5Gvytdmoyu=$v=B8)hj6ag zsTp=6@k?c7O3eZy>!nGcg5M+018@aP*nxmysaM`wC9e&Z$v?kw^G+x8pKqBPiFK?n zT7>OM$cAEgQXY0YkQPwKP4H5#>4r>-s4{f?k?B$}4&M4qoSA)|oJpJH94>|LC5f5f zP$4N>q@j%TjlA_+amhgSeX!s+DXIJJ!gck$#2~HU+ST3UbzepXlR7H7{m&V#IF4km0=sYLXGGt=dzhDI>l|K+{G{(ODqhlLVmQc@CP_(5G zHg~55q5GL7*;F`I-Qi_w|)^8}RO++6Xi391T@DSwoIIpwliODLQWgfzI5YSKpErKHXD) z5lQ=5Gc@`u+v`bP2koeG!74=Oy6J`hXox9|qii+x-Y6wzkbr8eD&>XGqz|Id{M7dw z`5f&|tePA`;iSY1Q#Xw+J2fH)n^q4}7(=Ez?6Xb|DC0KIKZwcvz&!`V z-H$yt-iJpXUG&{Di*!}tR?QKjN15Zr{Ft6TX#2qtuQYHz>~EhMYQbMS0rsOkA1rZ9 zJ5ViwHW;CIlM3tYc-E$8t(rH)rjCk0^Og@JbV^9(+;WW2WpnrWL_n80`{fQu(vcpx z_3QImSp<$S)!cYEsd`YR{|nc0weTnHH@p&3Ts2;bOCJg6ytLSP;!SQWSc#=&4u;rA zMCj;PWkQKLV1!Ow_(s}@kW2rsF*}Z&U*rb^5~iAXKLoiOkwMDv1Ev`-v(NLdfJe9) z#DiUde`fnsB_%r*23>AvV5a!}!fA2d?X1KV@`%BJL(2POGk55(08}Rqf`rty> zEnhak6ZIu=cJeR{Fe3c$A|-Y4DXqezl+gs}P*(*G9Vk1ONxu#;aE4&1bVuq;Qc9ln zF*4_{Hz+Q{dfQ|`;6H~x-u^De=*z4*y0Mw8$=pX4IF&@u<2%tu-%4lwl3aPHFY5+0 zA)caVz4L*V9sRCgX){FDrssHdABT3GE@$lR;c*q5En%5ve2^BgmX?Ou5%?$=k5Z)? zf3nhwP((*}o{%8U@LUW-sSVsQ4kb<)Ls*@gj_4j6pd!O&tVyg_A3M(q`oWKYd za=HUDmDrAoL1SHnUd6GIW;g)<-^qDWHnPa^> zGd0fVl|;nVr}aMN+C96~9q%*2EB8;|Z+r!d9r%;-=pQEBK|@+Xsfw6ryQ-;?sHZwY z%Ado-7VOfzM-)fbM#UZ`P#;c@R9%85G<`+s*5T=*!c)g4WDoGQr~ee>>wh%oBdN2R zp%=Njp1FV87faaB{qvsE|HM_~@u0|OE1KcFAv^fI7kPSZ9w~MyDserba!Lz`$?ooi zvl=;>g;7aX6ag*3E-pb6F%8d8e-voleg~3GoU~Luohv9>MK3Fa*|)rj3RFAfqt4YA zZ{_Dm#4i4LfSt-+71%)Pm2}fr`LZq&DDG^!C)= zVX=0c>4_!0Cu26!&9NznVG>_ROV6r@0iFezFN?gijL2A(r6Yd=^g~O#a(zo`Dla5& za?3r&rzzP!S&BaIAbab$bQ{d^mCj&a5rMr zLP{i2f|+q!RV8aS|e?aNihmt-K(eb9>@fyN{&PQ;O(& zRmy9Y!1$+KI(mK17CP_8GOwLE%_zf_F8m0QudLzP-nP#fDTAjV-{?^#RS|tCj)CL# z`(ufwCmBV!ZV9VqE9Ru(dE}YutwGB>hB*r$iV7ozL(unyJnv4(zjKodNPowHM4CDYM<(|6QdunysinL_zoT zC$};D9eMof-2iCnGu8H$SSRd2aQzg8TKGFI6`{}8tvVxzRZ|n zas-lQa`-sfl<2JrYFA!aZdX0+(|%RE#x9Y>Ov-YTY`4gzW%cXF`3F?Eb3V^eRcpu_Q81wAwF4-wh1i_CUm z8uSrgzH@w}rRnh9Y#;}7l3*6jpK2+x+euBU1(?+$55ufAuHIsd`rsSg#NDSpPxd&~ z(GtgQm1sm>tlq8lje--V(4v)Z#(fIydHCmfX)>ZV8!Pq`&DPX+L78tGg1)(){MH4d zx8WK}V2x`v3VIw?p0D!$T3+6@m1HG^E>7jUedlp=|8wj385Uwk)gn)A^?JtB1sAgG zR#;w+TA@=j@O!nr&U##*fNNyvu+|yXck{w?Zq5h3>GzatRS{EAK+!llz9cyO3b*k( z(ZW2!HN5N)n9P%k;qAso1`#ieF?2W=HT!JIxS-g%H{PVRu7E?6eLcvpUNSiefZH4W z)an2{x9oG>cg14mCrA#*rP#R|wg^8|n634WI z)%{?cyMI*dxZK2qd@(c>6=TitoOHVv+5&p!EduM<>b1$|g?_-p(V~w7Q+jT?=bdk4 zG8is4j>jXPd2S>HVmd54Xr0_Z!Wqfa$YCRKqTU8b)S1|EMqbD# zUTyhAQnr!Awfo>h0U|p0UaNfsO`a5hSS!Wal}tLIV=|s2$+bAnzn$OQ)6s0s429or zIUPtPlU8C>Ng34MgEFa0d@O<)@S_Tc%DHN=voW=l)%_h$I;ZC&uAoOe5UFm`ZZMD? zS-;9U+cd~lTBCVguO>D^lS-s{U%cdMB8*7-&Xlz1b2>84=92hk3F!9^C-Zt;7uQmv z2ZF7NtFPy^maO5(x4+DA3>M7iEua82V6Hr)SF^i;87%QIHt4$k9b80ZYliC1FnNEU z{li?Nx8-Ll3~$PRp&V|n{}Xc&p$%_U{M+Vv9K(Q?uW^4cT~x|xJ$1w+`1>eFhMZKv zRHujltLkULgqbEzw#Yph#o%kMS2Zz(f5XR}8dvfJKg7J){)!o-^hXDR6?0fNkLD^` zVB@>SimE9yOqJ!_M(#epq%y5iv~@x$I4JHmEuD4Qj!Wv}AA*lrq+HV;17CXm8Z|RU zgPI$JwB8ffEE{-~e(&e>@zdesZ*DbBe8f`za4r_a9aYKr`R|cM)um{p8!XM`Cj%(y zgHU)Tk|dbC%{^o^Q*VA?q?LdvEfZ*#ejPek9l0RXJrtcsnIj>>u)t2uaI7>%0y^iy z0w=w$Zh5y!1|Gf2U!uUIOf-K&n5 z;XFwwFXgv!mCs)qBA?I(Jwp2fR+|d~bp?G@G*d3iq;L~>wJnkt;!d@klm?PBl!{Fo z^;0zBOUtSu&v#;991WVy&3&*LFgxPclFxdXEm{hz^*&CRd*|Do5=tRxyi35u=Pxxl z5$t-sql~h9QeM$eRtoj2A*dkBv8}4JfDz$^e*6I|u*4wT=@Sfw1L-wIH%lbZxzv8I ze{^|e9f@abL0YFutYvO0R##6+w*1jHk=xf&q%K%~eIFSDBX*aP8aY(rj?Ym(Ep2L_ z`du}U_NcwmUXI64!f~CE!GkJes$<`P{njQ%Q?EXA2&cH(82!+xHq10Yqr+{}h z46=z}4S#k<3&Z>1KctoAt*&kfyCvc;kI~S@u0UaOFJVACpkI}@u&bId&+oTTrQS>l zd1pOI0$d?R%H2KL?Q%hrr%DEuD)5$McWB$%di`ahSvE7vU4%f&l43x z)0RI(VHayF7;i+u-f!Vd#EyY7*@i1I55Z_A9I6ld%`_>V~Os=;=3Ls|vK8!ymYV6Aq>r2veN4@*-e5DG7 zcFDaKTSg+@*FfPoiBDlTXFS5|3RB?L=`0Y#CR?)`DjsO9Bnb$h=^Q5-;|aPyH!GI5 zacTc}f1uI$9ZZ1?gctH6-@3r~Lcd+rBoaN_qh6@XT*X7nnYif2m)6+OW~n z%ULe1990ZYG|?GhZfRq^SLs9t7iufuP$VhI?$PdMv=%KM z2FIu-mAh5N*=Zvd?L*`cXJ`vAOKmx!!?S3~hD#s1IV{O1-%kH&*)pB%LiMQ3^OyJ% zzp0hOe{E7a9n0M6V^uMmCHSeJf{a;V9`-K&(z zcscT$&m4-^II<~hQv0|37ey2t7KlwUDmpRLV)KY46O=4gvhED#B%t3U68_abr5{+- z!7%A}IExb{1t;x5Xu;z{o8AI3KvO=V`zrAosRvgR>|oD2sv3~emIF12upNWF9%ovK z@CV-&gk! zheeCaTDsHy9=Kw{7sh5hSH2fp1YZ|>F+AxTcnJn#v}{+m`8WD?=oaf|klKeDw!wIU zt}-4K96p<@)j>PVdFeafr%^Vs&{lQfSP{Jc1(KO#f@^aX9OK~KX5H4`V^7%c?Y?}&s7tE0A{a;Zko`NZbjXhHC@l(^=tg_+$oR6@y zoVffdLJMHHBj=oIAg2(njd3U3#ipQ|A7n zM>i3QZ1}Zfl?kd-LZ!?C={P5)%N4=Jqs;SKHP~c6GFyo_Iq+JT8iJC?D>OX{dl`}D zX>(38HOX<-IlpcP3i{sCQW_phB{wHh?yO&9l=@cn zMe1GtVa@;$Qii*bC7zn41`4lV#l`R{7Il)sW{t^TrmsnyT`kYAchULDK$pgc^*>QN zrrlrD!D^bxdB`mSt&=|1laLX+` zJ9IERv%v@&()m0_uj>qX8+GOM=G#sd`lU*S}Z7u%huXm64{c zx#-wEynVR8psg$_{pw}#L_boNi|uk>*1rbqgY)a*dyV&g%q?gBfBPfJc%f5^Xd2X6*l>?$KmG0EEo(lv4HqWREc`|Io4Cw*yZ zH(y(!fx$tSt)1bob&a~<3}Q_~y@`Xh!+bn%$0CZF+*`#558WBw?%l$f3+NsF1{(O{ zScR`>vSIMHO?QV5R4j+qLpKc~2QA>ZA#CjjFeJb(JyvHk!T<+w~IW3^K_+(x4ul zT_2TdA(3x=o10-%K$&Sgcg*zkD9r~M6LS7NNXqtZMPc^tO;nb)&wwbQ8s=tT*5?%H zo%RHsOtL#(TZ87e_)S2<^DlL0zy!VIii-+}fH`H9Se%zdaH5Zz6eVH`FMj(YmqfX~ z_GWtUL;75VVtoi^Rvei?sqIR$anS1vxpy}dWSSaTaKN&39c8;4CV+WRk+0=`N{Mt@ z7x&nJWLihW1d+i>flS|s5}hs=7h#1|%Cdv3YZFbKkn4rzsJQ&fe$s(HdYVOc%KK

IjX5HJdx!0Oz=B=*NSrxC(rDu7FlYE#%v(^_a+c$Npz~fz2*HvbtvX(21Wy6TlEk0G&W zjn#A)6}|Y!-GP3%=+f>8LBQtAU^PklZj=Iv-kr#dnG!>Gt7^wQRaC*icpTlnmnA#0 zF-}m>xf`)ig}dt|M>0GkkK+vxQ9>w{*_{5qNZyeAw%3Wje3lQ*^<8?8zfUl24*X7B zzAog3ImQRTJ+faII#;OS`xNS-J~^c#K%E|LT?8A6Zbh?cJ2;$5iF!DAKkptR9szv>^k%{0Sb%7`8~uVYwU?DBmf zv*Mr6bSYs#$>YH2Y;bI1{d*iEF*2C?j<8)#2$KZI!PN}{KCfTOmvsBwXt*sszcqM2 zM_k>t4ZZ(RfRMD`5s3q)t=^PtGIuK{1lWHX$%`B==Maev&|aKg41Y(Pe7GCegGYH% zyIbd2BP->&nYphblR_teJ7Mm|T0$F^Y0-ihd!Vl~A)RDZ&M=*>7|EXAJHN`#+hh#R z(l`ru-BKl1^PN91#nqnHJNk~=eHFN`B89ylgwafjg%+Y2nlD`r)ApTX z>fHUot^dV!lYedSHl~C9sjASfEW=jER`;}BvdS^Y~xVN74t`JS)*+X?mtv(IDv}4!D(rDl$B8rUSD|W{oc?$3)PL3 z{#6x>)Yxy?ELkMgl6krjd&D8k^!tm1#^3mT))0~!(y)caclpOV2pcl$EH$e@a$^xK zfPZ6;L24bghu?MFJ6!|E^}`v)EP-L)|39A2f~(E8>$WXzad)Rcad${5ZpGc*-Cc`A z30B;TyA^i`65QP(xVy{A^Sxu7ACWuP-g~aO$mPmth4xk%z>ABi(qxxHQ3RwAH_?Rg z%@zut!*&J_cr5Qa6dK8d#eZf|+5);U@$pK~SfH;JR0ou}giN~1>B20&NKdS zd0}4d+{g4eQWZ7eeIR0ZW5li^AQusZ@!o!GTG<< z)}#>&ABbg0Jf>P!Q{QDrQ>p@J+n3`B8_oq4U4QPJ#8nj%Abc#rr| z-B_}E12vT`Wr04-uf_kQpR~S4Gvm{j3Dca%L@Ko*cD)@NWX+K4!cZO&5)!IjqPAb< z4KtinVE5|FH`^RJ9!?U4$}QlV3sVKq-NrQ`Za%3fS=mGi|^YTj1AD}uSz3dl&AXmDwl zCj~zoh*<=+cm585Hov;6&l?%6Xj>JhF~nh+9DwoUDFipN>Ov>9Llm6oEFX*5Kd;y_ z9)K^)@oIhUNmH9e=h=fH5NLJ}{`u2GD*iLa)+ti4lX*$kBn?ubU@6wMJYX94Edb2*;ameE@Ec{VXS?JN{^z>A%JvwIVFlI@Wp306PjF|Ezg%5Mo1en_@ z63*gV6gO-jl$8j6e3 zdnZWsvzHt?;}SQUZ4UbbP~4QOv#%2le&7qOE24Ge<2V`MM=Bz#o!)`mu2{%Tm~0~G zS`1=zsbkmgU+9M)v_ojDEK9v3XM1gjjZV#JWb-)CT_0jlf9tYeY1{-NwvW(WRCUOkEs_dN*9xfr^{0C5S7<5XuO;QXLx;Q$CGdtx>&vr{kQZXf;V$ zpt{FbOOHG`MWjxJ)+OqgzPRKspp2D^!D27}Av*9s-4~QtCkBPt8EGm-;>BbuCoGK; z3F08o>4pAP$-(l`kbJ^X&^-IuL?En>8{2IsXCfE=bJr%|LI94C2uNY^&-2`q_?#q) z5`SB@-k|7B6iKjv?XU3vJDfR8BVh@hIWyaHgvMAT9ZIQ!FO zyo_PV$|&mSg&I6283?<%xm})A_OL^_R7f*$#gR5*fGZT z#@zW#qO?Qv+XC?~B`dm|i6KSUI5pm=IAt60p)6`R%M&^<>SMQ)OS!lCOpQ!dBTpla z!YZ-^atD}T`JSUH@q}>%Q+l9}WqCa9QmkX8Y@<_JGM>ws1Cl&S=FcHm8!%N?{{$vl(6o@lX z7L->$-*{&gcz>M8hiV5NMy7>nZuZ79k|?1@+Zoo3u_M~R1oYKJ=KcZQy+M&!rt-{! z9N+oq0q+FohqwFc$BX3^Hr?jTz8~N17EDKbD4kx$1fQG^EQy(mNh`<9Rhv=piO0X< zOCgXjtqt+gh$(OqhM=9_bkCToJO-~(WRyCnX^OuO>+Z+$nGomuK`kMuAk_|nn4&e- zHXXwnPju1~3AykK=Q>il#}poY4|oohg}roQV}ikJ#2BM<`tR*>>NuzABR_Q*m#n@y zU;%8j>_W>^M;4h{`{$6@__8#tDBT4%g~fNH&)L#kkDjiA$F~nn$M}c*G`1<8uP88Y zJP%6g7f(VP5x)H64dAD!|2ClyyPrabCBYo8C|{L1*kj7e^lBWG^~{4kvTN6vD}q|b zd3Nv!4-@PJ6?QI6ONWGELA9GSuBq{zl|nPPQ%DOfJL$(JUzx5>uQF81S+Gw&=-HRiKL+KeY7JY&WIkN?!`ymuxq=NWj*@Uudz-tfm!KZW%) zWDtYfvTf70Dq~<11)FU-Hj#v=>lrKV{STUB z4G=cVlx#k)aQ>GRH(_p=+72u_Fmrt0Dg?z%4rH#kOwYASJ*_H62I57Fy!0axeOH$}WSz%a;h;oic2}tIFbcg=c z)?cNNe(8GCL~{3N-HIx}!1`oZ+ssMa`~G-JilbJml6_AmFjKVrZ73r15fFxpsN|al zyIJcFCop}89$Zd1{_OwpOwu2vF*+7BS4(p5|H5Fo@lTSE82=|f=~!9thTQa>9+TU{ z@cGO43ZFZT&E@y<3;t)H8aqEkQiV|Oz5G-6&me@{Qq#*qh7WAOeq@lSj*S|91l~GP z&;1607%RQ>qwiO}@+-(N&2?XrP&lgF9DNE(hEBPfG#(B~!=Jz8X|kKpmI9T-uSG>g zo7ay!aLyq*!Khsp*KNc zqPVsk93@Zcdj?UL6VQO*_gBKMaTDcB^cTvMsDL$OKy*Sa$XSbm;$Hs%tyExlz#S;0 zKD9CmBeJoedzd17jSISOTkNTa7k3=TU#!lTKpbZlo2q{^7L?6saT z3m+h5TIUIQiQJAP%0;H-8#GXd^}0P#R-Jau#PiNX3_s|n%htk2Zsn&3T4~;DCEfKO zYk%~owY*?I(m^9}F{RIL7`*%AKSChOJF~B$)I)V)l^;kev9megSYEb9(VMKGwrl-2 z3=yueqAZYwSn}NSAWUGw)P;BLIOX4z7Td&qdS!$d1^nlrg#lt0c$e+ea$vU4nF>!~ zjy9@e9pH++sL6QNkzFf}oH2Og9B-+=y)g>7ll=v1+l}34-yNU(0!|eC%I?4)EK42R zvsM3Fj3GCGwUGN7;`Daqwj^9ErtGO6`U;rP!AKn)bgUEE^0__EvRvK^l;3eKANeIO z!v*MAcora)WuP%eRmUHdS9%mU^gy zr9Y5n!tmZbhs8Esik1CA#h?`2tDv!sWl+(EyVQnXU)8vsU{KcU?=@fCHT|Lb#sNWt zWdJ=|I)_;_k+p|-$4kk#MJabEPX(j#V6r)zy(d zZeT9hpXf*SGi8-=NHtsT&f(RbEmo%=pT2) zw}1G?sA_=F5%bp+pscp|!kNy(FG=ki&o>cll=}d}Ig$)}Tbf6IFN!d-4mad#SIGBMb6lP9}2mxc7B(}ExN;2754p(1A#f6Zukn3!o3}ta5R*IEFL8Axdwg| zLARCmNnHsUN>fTdX^izkar75n4t~eeTkHy?j4_7!_R!{jGUFWNFLG}f5yU_iFJLK% zO=%+)cRVz(aY^{yetdQ|K=wLCwgrtvEY@4iw3Dzv4bz@mG=dT<$vJd{3iM2ItEuZH3D5L=8M>Srzglyw@=W#pAD{fpUgV-dxbz6&yXsv#bP};#q zz1x2nt1&inFqQ@3Afb=9H!GV!;44wzG^42Wz=1+c zN7UBe0HvuWSNQM$*!oNmpg1pL&IS#qZrzI#NGyNw<#KC?I@*!gwKyZS=BpknN9r zL}11^;yZ1@?xiGVGwZgbOQ8y?{knR)dzuj&&a};qT-fYRa<8?B`jN92=Px0CwTQnt zy)7=E29HA;x8rMmubTCp?d%jhy~%Xl$XNG|B*CaCIU0Pa^8ag+9x@hnu4JgF@6BWX$-H!j;9t#V?U~NGFq2KKP)Cx*<_Gw zjRG?Ha)ccazr*(5S6qa3QeWV9vPVGL zvaH%2QeV6`%V0C-cv861=P5H;DeTY*su*N_pW(Lgc?reFY3=G6<@v1?N}~*1OA)Iv zlDI;>Sw)(Q)+_P?QV{J8!4_H-3x}Q0BFN{RghJ|bCSFf;ISWymNsaPmlg&%fVJP;^ z)=Z%x0&>7MV_s}qX$k85;h0mj#7+mXkH+NBHf`V#Ms zB4x>7$sAXcHA0R7lVDyi@(>A+{J~`+u$J!nbJ2}O-~@9n>2=^gw3~zTD9BaPXO1NJ z>b#h=p2O>(?Jl%o>w%n@%6DU@=2P!g3-5WE76p!+Juk0byMiC|@cp3d3i5I%i~9mBGoMK6^NQ3SGdP?zCMuc)Xs$P1Scg zFR+YMrXNmPBq=bg-;pudWa{rW1-K=!guTQ(Xr(7Jf8n~13A?g^8z-I@s~PC~OKDiu zHCZ&*C{c_$)W9zfA=a)uvFtGM>T>&%u3?6s1hHa&cPkZOAF31pZKR;2FZ=Ttq7fMs zP{fj#sS`3{--kzP-#xGX-4*DpS+(Sit9`WX&Ud+!jdE~V=;;1i0z6iVsG0LAJk|ti ze*mAYL~H~!6TXArtbMID7`#CMUx<(37oL|i)Ql$i>@?9>!Dt!}_nzH20rSLDM%Nn4 zK@NhnS|>H~F58BcJZFIgPeyC3e}|hZIRQTCfrGat%z240xta1Z7;OAtgA97T(Bss5 zd#bO9yfnoAx6s6_dz;>A1z9Y3&H||9G}CRCyt-ors8B~@H0Qtsax+0i?Ygq{rs@t! z_-r|vY8nx~=A0wOLE3w?h!x76&iFmM7IyED47gF!8YnqDgOm z3oO77NGXyCH5+n6Vl(XfEB`aV|9SH`f`g(A83@Yzc)rQ2`*HH)Va<0|Qbc&cws!Wj~AFN^7M3df>Oj zIs4mtBxf#1e=_een;+%d)Aed94t#wMG|OPoR3zAk&CuJuG)rV9sn2Xq&tA8tf?805 zSpptMK%YWU4`$;bGO=CVm_boWHt953BI8W~zVRFlhZF z=2wZ)^;)iWWNF|8zi)Ak*ep+v{pB->hS|pS=qIb*c zv}2|OoR#;r(pcA=s-Rdd8j4RZFm++$TY0G@H(B#Dv<7;7(0X;t26{I8LJrwzPZF)Tz%c z_kYPmX+%?-i38_MRIMmdZBps@v>P?LO?gT-JW;B5f9yJ{rYSWnS1HTtdV0a6W$Hg2 z0M@GDL(m??l3yMf1VQB%v4Jh;;@fxujE0WZy1TAi8LkieWMPgkx*zQ3ZcDCJw`HEQ zh5W>wKJnzXSh5Fp`QFkztot}n2>jV3$7L5>J2>qv%mEd1fjoMNroOl+Il4_A-*PM^Yh7w6B{lH#XJSFb=0lv#3*jda+ z73Sb4Y7SDrfv9n2tWhZ(+d%k{AHiqT-dHQHt;p2#+>O%D0iQLPk1w9Svn|>Irm$|W ze*E^3zo%dew&UB$(9QN9#mmHY^qk~K1UGe(^}XMQV?E>xW`UZr(Y9}vKD*o3_K=N3 zGOESJ-S=lDQd2_70`|vvkB$rd#P(kv)o!G@_QJb$7~e_UQGca|q$LcZfS% zr3J$pne0*|xW=C+J_AmsoqTN-P~59AcJm@i9TBUu?o4DdurkymdwA3Oa$a0N!0mRd zqDPLer?H;MY@=nLt9S)_$(baHCqD7Z-%8Zf&IKZZ-99Chq8#wcQ}enpPcSsC<9<@Y zcQYP+z0&Z<;EE*oJ+~y|XT~F4Y(m@HmcXK#jITH9_2zH4!J-dGE9?Bmr=Bt6xw+nP zu=gL7v*Nf$+Rze4TJCUcS^&W(F7XexcV_X_< z5HurJ{&K<*__+DLa{nCaP#h{hgO5}&`x}^c7008VjziYTi;fFX@i&kSX|C_mKN>IW z9~B>(#URot!x7Z7ij(g^MS}HHO3DL$-HkXftzdTb#g3mLGK#AuMR=I3ZT&Ry<9>A- z4B{6S;N|6w=*svP-f``UO5*^^22CEBQWWR51d_;989Hk^VOrK5Xi}sP-D6740)2sP_P$< z_pihxb`jx>!QzZ9)0J7}AAF3Lg*{ArF$)^zZo9C@VyECy=@AoV(JIrm@JX1HA**-S zbQmUUU&SZ;xiy`Je?@(@v>Tv7?Vy}zsqD%x@zi?6xS%ZL=r73ojh!JuQZD5ax0Q^& z7#N!rHyq=ZNY7B!2@s!jj7jhJnFoEx+=U8iZeM(ahmHA?OX={(DSm{BGE01?rPPx= zNuHYFe7rnTx)IOodFid3m%`bsPq2`i{WJ?7<84nRqk^<;I%Y_>ET=wqj{VQ3+xc zfH?JQlI1km`3VOwE3ASA5Mh#05zsy)VMK3E{rCl|N zmaUKGTAW!yK60W+>i{1FEESP=jRaoTZ-IJtL^Umib&dfThqe-hA1^sj(tdmD2X>|* z_@cReIVuDNi`n%+p0ggdEjplpVik9`&#@zMHL=WQG?wxk5}m3y%EPTeRo@#N@quOC zS7v^DXZk4q91|BNIq=-Y*02A201_1D!=f}1g=i{S;<(k z^f<>;(V{F%8_V<{X(D;V(fU|-RpnyY!(Q$L6qY-DZd_bYAruEi?$@Vaf>}by#vDx{ruXd!N*m(>@>E@l+vw<$uhFQ%KfQgX1B7$t`7QaeJ!)wmg500!^| ziaO`!PigVH*gR0u%}LJCXs0g!qV<@s3D9i1dYaSVEjXGMRDRzLVNQ#4Cb)#kOe5@+ z(e+l{a#}*uR9vW8jhW-6Xu+C%_-dK5g?$q30$%YLqCJ-FQ$5WM(@d}i&O>fPGm-SL zR_lktViuwkV$wj+hySXX@nV5xa$Ad%-&@;5;SB=ij}A)hG&U@P+8Qg-=@<-MFB(x< zmWeWlF-9#qUEDFjZJ!RZFrSQF6Weu|A`K$28bb0gL@Z9e{c1hasY zU_ZYJLbU8fbvj6b(iw+=2Lo#p^tu`=L;11cGGoR48CkV_C?X8;dzG`vcUU+1l^grq zh=IIK)U#Dx`>NV*%WVz|dC2X8foOmrPi$)%_+k}W>$vU-K}jMFYPV(Pf7leb9g5gW z3R=q)HR*5~Xe|^YJ0_AcQE5ZyddtcZ+v*kttz6iu-MDc$;e2 zI5GZwb9F9#ZtZ&SN(Tq60;9$9-u#Uqz6Ip=P(gM%n;Y+Rnf7jI+8qYgRrA0vis zxhl*VVlNlmx^!OdQc#)p6iQ2(F~PGG=l9e)@~ObQK^K&E)hME&(!nDNS==A<0R^}^ zf=loYGJ!nK30+*ziMnO!`*6XyPRKdG83*IR2IyBYJ@_alC9jnWtAT@r+*MeLyXx&-BUhw)pnxD zp>Dx#;dlCb37sW438yvfIQ7g$^v`L)l;2#ZN4xXi9ul7TNi9b^M@~J7@9g?{O$BBP zzTo;==Y(X`mbIc9G`~CPb{YGd=eZ@Y+Fm@I?ndWv<_#%;rOuK{bdYwr%z^v77g@F44U9#qNa9)Ev2UG6UUu z>_4bQax3N&U&Q~GbGq@M5O{Wb?71E8JgZRdxil2KVrAZbImy|pQ6iksFO(T!I9jW1 z?p(m)JI)^S;a)2) zL#R)zt!-74L)26U0hqqtxExw($6R6OP79VBKNzq9ORCK}bu^(@N>2(k=*S%qM3awF zg#ZOK5yc``+l@Xo+N}izCOAMkNClynSH%p%z*=vd8`Ns{o$#=*M3ZS^0@3ZOwq~oA zblRyF%MZzSr}#u<8cMopvV^GNSfwN9hX39%nPrP=YsY^tGoj@*bs1#ywclJ}ZK|VQ&L7&+g*G^^w`i;ePWMkB#a%Vk)9+NqS^qGGV6`_g!{&e z)UOd^6e0!T8vs4uW?d%6@G3kTBW=SJX1FL`5)u!UW2Pb+b7L6XAxq|= z>()Kpv%CW^{>^sox#5pfAM)+1V$djQ2a3UGiY+Jvd;k)R+~D&}FEqNlA!C|4)6u;` z!D11A;x2C`IsVEc?P%S85J?@_ZGMWQ#R_JD&3JvFPo z{rkB!p^e>5d^3(aVEC^1E1+(t8ZwHL>JvccD=~v!-&76FCyUzg&zVvSV2iEX<-_YuN zA5zK6%KpvE6Cs(|a&B>gn%FU7YLnHRajFAuJ3m-5h9~U*p>VnJ ze3XLu-n3NXv^I(=JKp1VUlc!>7B9>4DIg1Ve#26XJAOdb<8!GLtoxJ#a4%z{e-1`M z2D#=jj`3<{=!{mGjzzZ08(Ouiv|<%1?m8w!{Uw~^SE9XnxQFsOhvT=u+zKP6J9_ja zL+pbhUe)3`AjyDS`SmW@e{QI(m>z1yC@J#dV&gJ8$}x@Bxg=W58jL6!sZswHK05UCa*nQ z1(OMfu0@iZ+Vp+k>B+4gfMj?uNV0jIjNdiXMEaxSY7ya({vEhvFYd%X6n}zJ z?(CtTOavCi?gnVDlg(sJ4eR#Q5?Qa0le?3cP?&JV@$!FQ#NUgwQR#`T=fpe5J{7B$ zp@tv)igcB>bC#(g^YnioIQ0~Hs;KMyd4u1vje)iGYcP_L8TB5LgVqu0$s9{eayK$& z(=Tt>h26e(b&{6NVlqhXdKZ;bj_%EHQ7^_Ge*Q*V;7sujD(1iN23l6|Y(X<6)>s{w z8`RZ%Vcx5{^3lghMQkW!zLxR-)e?UBUo9atAyoXQhCJ9O-L9m5O+PSsaL37>g319; zxLuX@S2#uda7uFZ5cp00+E!-ImY3IMU^uR}8 zUelHSv5iq-b(36O-w14oDJrU+I8m+a~~K2XsX)M^_T%WG-E?Y{FG{4W{FV7kDS(6Y_42@+N#hDuCaV3vHNyb^nuVf^u~IP zzn#n0LQxk{=P<$SeX@PzMPUEajTL)B7u zW_G~){f1(E-|@WO#zE}ET~im+?{+;qP77K>7+kj5d7n&6_?WV;NGa+ltWNZ4PFi&l zD{8%BOzWipx-Jfn(5my*;HMb9qw^L+7d5(YM^kIXx4cWmO&kqLiZ4($LKNUX3%#AW z$vKV-<*PTrLE`@o7eAa8a?ndsr1X!&?T2|^YE-{|mh@pZ(u2^eE@txBaf4rg8-gC# ze!>R1{xWHC`Q)aYl+2Kj5pNHE&m8`{?yAx0?lJ4euPg%Rk z+m~$T%OxYns;(wIV!yCrNS8#j9TMlDxFUvQ(e?c)E#y-f@+c%l6TFFAesBhiXa9)m zdWh=kPGZnVRB3`{r0tt@hV6O^Wm0w;09$Iuv-?mYI-2bD0PHNc+i)x;^W%rcoGIRQ zUbS{Z*~1P@bFChALQfip1-2c_h}b;m$*S!@U94u(j2U%>Jx6{3Z}b8hSV_mG&q8o3 z{@=JR>fPEAH3VbLE}5S_&InkcxTpZwz{sIzpbH-_zw10sFM`h&x%R z@D;RB$fi5)h<$hki>4mLP>@Jb3MBRQ&Efm{IqfpK4|8~S1p1aqal3x@u_CJYm!H=k zcA%=w_vacnoZmUkv<2wa8Qc=}vx>S_w3#kjV_jp(T9i9e%$L82I4Y;>9>bNZzGQ3^ zzWgGME}5Kdguw_(a17T{g5^v`{Zv1Yrx1Mi`CQ-vc4b zhumM228|Lq6`AjMI}I7bN)CS7td3_qaD#^g?_>T7VuAs62&c}g=kA88JJuo(D&Bkp z&4Zev%)!ufG`+MZpv-0r|48mDXpWs~sgI5B=`iGgo#wf!1Y7=Gmp`96|Cpidx5qlN zJ^I7_c{@;4V;u79fX8TyZk5CM(Nhfr+n8eI@J8)%a0Y}&r&Cg%yxwo4?6g|97Noa= z*h-oon5OfvSPC*-O-2c=|Ka)}2awQRT8B_^`mg(#Zc;gE;g`mG1Vt0Edqr3q*?-|X zFuNrkA!j?2ZW0Q7vV^08B3W1zh4`)dtxM^RI({bN@?;J>fKkgas{3w-`@S8|S#z%f;!$G2C z9PkhV7Vz|YLd-p20U;^9QtD#a;G-DSgQ7xI1jMYDHJ&%rfaj)w@UDlEu8`QNlxrc1 zv_3(<>zs>}fLo0Rh~T42W>K&`)VRT5c9LT0@C2VuQxM&96cpdp1mpFAW@`D!_JS8t zKC(sVt+i}EY|r|*!Ij!2P+m5vGl)|X;+DJl!mWvvp}cURz0QI6FbrFrnB(low#y=XW?^%>*4A|4K>!Q;6q@{| zUiiz>-dimjUJQG<|WPbblxZf3fy+47M z<4@A&ajul$7F7iYW?V7C1_@*3Ie+*O(4^ z@(^6pJKwwK7p~Di#oqL=54logar7$hh6Q{LoDszDhthV&ot)4fo2t&!-dYEgEnw!p zh2htjTcXp4moD4xlmO_A|DY3U^8ABYYygw@E{i<#WgR}|W#(&`LU_nc;rWi%YNGv% z^XC-(G$BLQj~&3;3d{15FTsPfyUom>{N6_$Mpf}uIxtoj8Zaj8yEJy=a!>(y&op49 z44}Md7C7qtur@ZYqgDQfuV_z8_=lLO6(GO&(!*?Z3})|$i;j@CoP{JZua`6(ev@b| z_y7gW8ZT7}5n&Ay1o+^rT|Kf@BgJ~@TF_>y_v~_b(wbO2pVy?B5WNj;s#R;Q@M##*8_bp{nAzOjH!%@gU;`!RD!Q z;BlH`#dlzNzLV#PgzdQ_&crwhAdW`Fic>?YrqzG1L>SPq(Sa_O=nZ>Z3qNVK-*{Bx zpQOV_w>o2f+#}(n ztLc1ioJ&*6$q1@t1RYR+qtu-1BwTSn?>|!$S$LI9a^}f&fs7h{xIbTySsovQmU$2} zdl+=E5t`(pe~FE6kR?)5Ve=vC!_-0sf*o6Feqm|6;-h`5wa~+9tg31riXS~_hgKEL zMkoiAqx^lD`ZgeH+^2{@^8=641osPorhxgo$4NKT;_q;Xot>WE$57oKw4W28AHR^& zc|+Ck9Prq@Z7vIkN-P8(hf`Eq(Bx-m6bD4McFwSJh~!7SNr{LfmXFQ@+jZPO3C-S{ z5@)RNFL2*p&o<^Z`epcLY_tKX8S+G8FVVq?arV^VXIrf7-dj2&By^f56H<&o8A$KJ zT{L9JQV%f);9 zm1rgbNq1VUFfqYVkJaO7q*Ip8w)8KXzaME|j^BLl^PniP=f7WPXZFN=6cE)o*`he9 zJ~iz9%E^U|*kCv`ghz`|Uzdx=7ieN=1f_l?V&8>*K7oLMG731kwI`7@&wr+~pXL@i zbo%+{X>^@`L+N%9$(?bA#a_sZEGeXhpr*18CYgX66~b;@RdPraRch8H zrzW3T%=cQ{Ys_xgM<$${LB^D95y@CxUe?Dk!Os-1su@f6vI%#9w+xl9#$BZ)UVC_Y z!f!dkySIt*{c347f(E=rlKGM(Q_CrM$%hg86=~ti=Zf+|Tdb(7v(nRBhdz!)iUSf~ zdnQ3vQQkP$wq-;1TOB9hD<|sL9kOUcM|ewv4h)CRAHcxeL}$k4;b{WLA#N9>t`~3O zXgQmU^{JnkKgd*KtxI_Hj!gj6Z+96V3lgY(p<94~b)U1I)&`rYsais=Ikipei<*hz zfvG&orGHlPr=T-7&=GS{Ox!-TGPNu$eH=S%e7ez{AZuK=ssU^xbj{X5O82hjNr=o- z#7j#N&uwU1hWJxd^B^1$G^i0k7?>O4%(#!jPK~Sch8dy|`OqKZvqtZI-$+s2i*qOl zKuyt&WjA$!Js71H$IIQq7oq&AsYi{RgJ}Fdqjs=tsbTf8@x<9=%p6Xh4557Nwwd$o zq!!*?a8p>O4Q0%k_1(@anjj@MRBgxcTv(90O04jeWALzG6c-SJR}2}4^%J1<{ZY-0 zlNs~Y`;imh=5hp0kSiaV80G2WmC^ypOr%hDd8GkkhR1Q&Zx#7e_1x@Rs=Oh=${TFW zCsSy;E_!O!T#aaKEac5TcmJTicJN&JEYcH3lKO?0>S=na^aH8_tRm&Upz@XoG~b;? zG~DKmMJKlFhhgvAraE|im4<9=e9Rh@t(JxwyXXjwAcpuC>H`~@0`clzfYZ3^JXC(5 zB)JAshs&U2UY^--JcZ8i&*w&f)X?GPP!Z1>t&_6(EK=2mCB-RAarSg!$Mh0$c!DG+#*pA(7^&QEF6eORZI$)D7H=z<{o^iRsE z@Id*53WW^y|3+{7I`drNUiQEkmZ|pd7E69!jOqO&8YTxAp)Us!v<$u1IZ1mB?cw)V z1itgKP=RhKJ0qBpLGDir%*W=Jl=!lSIx+Ey5JEP6&xspOs6a1X`h`81g3AD3jLkf; zP7QcudG!>AMy1+@G}Tr-p@$6_gb^Ld_jD;Bct6z95cf#SpH}|&ezm6G&c2B3cgieg zjG%i!iXA$}4;g|1bdD<{cWDKkSd z=wex)ivk#b?{ARy33kkfFUZSn4qGDEwi8UOt^_syYj4~&WO3rVt0d-bxBrG7I%6FM zW`@;N#$GHG!<+g^?l+|OVxircBTcn+{dfVbh}(*Ne~5)XY0kT1@$@}~clTb<-j4%> z;3%Q?3xxJ?SBJ(md?zz#5wB5*HbK!Jx&v{o`5C&Nh=$!TPW&j1vk(u@!xH_)U#@Cg zI9)j1*w_rP1fRUZ;S#1<_KOD`jjV}-$t6${1a5|F^j0Q=?CkXDdA5Cx;+<;D)Zn-| zo9IkZM{MlOIef3Ob4_6&z_0Gj$$SAhuD>QlRIbNbGAeP8xt6!WN4UC%cmcb^B;7A7 zymsuphmPHSw6|0jbO6+$4GW!tfVN!q)*8P3ox?gI&yX48KmJ_}(!+m%YA7tPAgsVRBh)YLu(ttu!nF z$v0e!&)W2b)Z_=8do7@Ie#8aL0+ymA!vfZ<-kIFtn$Mj&T3dmlrlm0wU%hz0z^Qx} z6D_GO?df`L>I(laLH7W{>k1nA0sAtQ^W?avD>Aex%N>hnfC4F8*j{v*5O~>hc%y!U z1iT0;Dz%_)ya^+}Ls*Jf0of7?0n*|a;BEQaiqn;*UWikEZZ4_KLPbv}9BFsmgh15r z@IR@w{_Z^?ZU@js8mqj2z-LMeqzsutR|I_e>Jn_>nRuCfHb=$}`5lDbbt+>220tX| z@ew4&WxxsqPe_vo(oGReyqL<8V6Cz3K;v7RAUV7-N6`KT-hSpPt=rfU06w6)R_XrAeoJv zJ|Bk&V(ERyt%hIT>hto&U2s-edX|Rn`n8&@N4%T^tM~m_;@^4+xJoY$_DERqz&?D< zpfI8=wl;W5J8+PH=0S(@gA*atN0i9l!Huecs7~}Jk{`8wTav=RPR@k$5V4*I%OF?Z z7H{dKLTJ!bRM9efW1%h6x~|3Y?&%tzN>;0i~K#K%gmEQJjvo?|i=@9VwUl)i3Dp=TRFfT@1y?(!q$~#D(okA#%1|4bSCU z=xr+EG1r7s@vva=ebn^$S|>^)i(D45bAS^d(6NA3KQ`xgFJ7X+Ur0*(;9;nso#;f# z$M}MqLuAgf|JuOF{#z8HQHu#z{Ub2U?*D0KR)Ee^g0A?Jmkkh5%v#MvhwCeG$T!pD zQLZ~6!+L__>T0})foJBY90Gz+T;DL*sae6w3%VqYy=`TMb>DXq+b|-XcffC55s3p~0Znq_+r4n6> ze;(82-R$||8r1(9oIJL+0#qY&<&cpFzo(QjM#0LOn1o<_F*6h-Ydh&Jr=i)D`Ij5Q z+`JS{d#+W7QmqTzDm2OWJRbe5JYyL@&IVY;l3nG8!-TqE_cP7MNlZ((9|J0d!V*xc;7FSPW-CoL}ZpytFM0LkUZZ+lKMBt^L`EeL3c zB$e88zxCSOw*sN#`5QYAv=Hp_q8F|7hCPGZu5U&`u#iGvB$v1!sH+DGp~w-|X&YVl zH;6~i?(t5?t^1id*&c%cr=-E%ki@0;166W=nUG!H2X|Z12xtAj2jl zqqWpOuFt3so(wpZ8+1 z?1-2((UHw@gK8?EP)y-N$yrN$~CF z*xwhT^U1()x?>3+BU0sgS?u{q^LxaIH*UL!2BTFtvBLwX&9L?Z)fc=njdZ%q>U?M1PNGL_FyuBKQNY`=B;5^v5W@&}r%T;xUZ3#=|F}zak zSd5GPXBrc$mo^6B&#(N+VhuHUa$H_hAES8igd4wmL5X6x5|nB9tLr?DfGI^0irC*} zq0yCr?c7%=Z8d`Y;zd@4esCEV;be}ITJ*Ie^`~-tBd8b+%Ya0|}&E^H|KiGW;C+Za? zczMWx9CV_$1%^6K%gQ0krfAKkrOpctq!JeE(osmtXWzFj!gLIALW`!iJvn1coP9m$ zBc$X97M;ZqQo0We>To1C5Vl9BE`WOD@Gd*Wmty)-7T>*)y>ix~+YboAa6XqQ4(-3* zuX+POIbBaC#6$;b``1yc=!UPs$H>XwBAQPlcu|b*QfBDQ5=5!(#uNT|)~CV<-PB#=XHv<1Az1J7L}n z&p-u)>a0>fVDVL8nQR_1(-6;aJ!sV|+o)g7eVcgb)21QJtYg@w=@Wu?_BbpYt^b{8 zhZ$_6)8;ZiNJID=B`Ns}6V~39mIT5?gVlr>YqTg{u#}S*#5gOyG{jp$MvnZRIa++8 z9vjoHf&1m;g4Ndj|5VGr0uZ|%Tb?hkYMovl6{?NBwr z|1z1Zdpqeh)5z?vyK_5!F8*}o?3tH?hHT9A>r9jG6j-sW^^1GVeK+`KnzWrc2gfoG zvs&J$)F2B)#Qz|At34mPmhp7_&+c@%rKU-f`n6wcpVc{x{6s%!S|%)Cat$54w+a$j zG1IM|m;y-8p5H2UUlIXqM|Axzf_?js$Co5)*NZ*95sU-%~sQDZYE*{$Pm?W8l&js918U$vsI=W5J(ftGJaW=Q?=zcXyl?ztim!vrpO_ zs*32gHw`}LOK-*eOUrpVfBe)OS^L`mk*Kyv)V^w=VUMBo?HVhKn4q$dM@Qd7cZZ7Z zG!#5hRED!x3>r6G*O7^9qi?dxSm$ov$C}yYi{Fn2!Q&<1T0h^l#CMPAo&KzFV*ZH?~H19Nl zkjo5^=KK8f{oLFfcw&<|FmB5CC12m4fwdC;tGs3F^IRD>8~o?6J$_nR^mf>eNrgiz z2NR@y*JE;gun;d1WJUijVl~j8so0C6ZqE01`JfcP%7ky~gRU2a%6{Zn|Mcn7`c&Oz z=``MP0QXWV#Z0y0u5TMaDnaI)(;;QE%>YGAtj z-^yhQ^BgmLu#{y>_r5#uSgrRG`c2z24R7U`x%Y*7ktW$L&Y=&Y+DK#U^*@rerW34D zV#L%X3T(Bi$u`Xu9$0-A7!EwKxFO54^+kzSD*w5gKKt`?s~-+)ls5}+HD84OYxrTP z#%l?+CDyfQb(NWV5N(@A9>2&yb~RpNuY0a9(49GNmJ%`|thb zdafW4CT~?!NqFM*`QJ8h5a$Nq+mE_u7uSg=`49c938pu~uWeahI~CmBQ#MnpxH!Q6 z!lza=KfuYpzCB4Vw-chR4{5V{Rk;0{U~Q$ z&FD@>T|r|bzv#ejyBI)-v-l4_>fxTo)F4hz_uBt`cj{@X zyx2cH*EKWDXpdFn9I-I0UaB+HeQfzGG$;L=cC%HYb3cPcR8Gb3iQk&vz_!}pp?cZo zxtTxjb$hN->|-qi|6cousJ43TOE#fett@_M$45i+fioxzMAbSl!Ig-H5E?es?2c=U z7^yl^DZ+U@gugn9C=Zt^;@9RhTA08QYV7ZTy#1X~Bk+VhB8DTpg=kgX)ohhLtGSey z*RJxS2Kx5g*zLy>B-)veiivgAd5oG_yW(AsQ^|&=)_MywU%60f%7A2UEyb;5 zJ9Eg(Dgm312VAVsiEc9&nb`m)(0;#v+q_Q-0k(!WlR~%I)po~5#j7ezhg6PMM64`L z?2x_Ehwt|2q@~Co(L7SD5%WA6@&JTGs7W_|bZ0s$eCqgspckw0R`60|u%RC!9K}eu zUeY&Q7)6m723+-cNJI?_Qqg|w6l3CsTlTLJ?0rx`BB3d8)r6|3XL@MOt%$8Yb#VqFK?UA9{EUR-ZWj zt5a|WYd-!7Q*1(%^IPWKc1q|#LgmLTz*AqT@^1)F6!Uf4I>pBo9)tJ41(TIm>jdJc z-HLjsa2Tq5Ed!vWW@&v`2d#Ea4gZsgNeOuJEQvZY9xQ3U^clEwV!0>byk^>O;~zJl zI07)`9up!dRq!gNy6=W8(L<=_CZp?q!#4U8g?*tNlmV0Wv1rt2SXU~9n34f6IC_T& z<$RG#O5t-q0ZDlTeUIiy20st@>MIwLbNYMpQjW}wO7%9pYPT)><3nTx6&16dqRJ~B zMrJf#jFS3;a~~B+NfF%Nka`MYd}3L@zcg53UFYAyEn&O)cH+8E3#v*D;JE4&Q^Z!I z8x~q!rpwLE-4ay;*T^4D`CgzC&%t~nVCG4G6Y~V`CBLfU>0=T_`^uR6+l2I3jNg

C%AJ%|iowJq3rpwZkXpzcW@EFd$nU@bD_hN3#4-%}9v z0D#-}V8}mpghYEe+oEw6pUH@=jYuC)KBJ>caEL!F`?t{=Ovf+v{Oewvyt=W)zlsJ) zC7*lJ9d%}cLSd0Or`XZZNd)M~(#0p+JTBB2u#I37h?tnUuOg46TpuMWic8 zOC@tE2x9?Jt}X|k5(LNjVH{Gl(;e=u=l$aUf|(S7vaX{*y_q#DvC0AK0gzl@Q;TnR5wyqwD4hfzk{## z2O_QF&9g|OXeULj2@jc(1+SJunhs}FoIaZ@@XlaQk+<7rp#9lQ63>EDO3|p*=Kpc!oqVU6l}j)ElRxyI=BgJta^;jY!b^RTVk&v+gynbM?{4MkSw#oLwLzhuZ` zo3(7An#NiT#O@-s$TM9wIqBQt1(GU9<5w-ed@pEnn&JTFR&CFl!!N9AtpU-T_j1DM zhetwZ3)%*7P>`vVt4k9pJOn))r5Ph5jy)WRi^bfW+Y>68C6(s?kc0|pqs>&lAs8Xa%M1E$ym1fLU*=g zpVN|LC7;v)`g9SvvIU3@3MwzF#8=%8`laDJ!H;D`$a)A*?OP!%aNhN8m_pjgauiEQ zhOICf+hWgG_N8Z#jmEnNO*IPax*O6Y_iSp_MDX)Rnu=*&XDW}>ca;_-v=K00F`mov zNs~L{z2&73^vT+`^9I}ic@+zjvPKb14N~g`XPb5JM9}PSlm0AqO)5FO_pQzaLO4S~48^(rh#Cq&Ba^ zB4d<+$QAj;BJZlVGFgQLk0lMZRJ!Iw=*qM-G!D+8O-yu!T4heNFvY~)EhX3wyQ3gD%>XzlXx;NSbfpBH_M$;K| zSfg7r;x9{3cgz$-$``p+xBBC@ppt#CX_s%+GzbJG&ZsnOt=`gpSx3|$2Qwh!Eb9$7 zrvpGfO#0E%wo;3YM_kIQk>9L%H44VDT0_CC_0zajta$zi#)KbC>mL2-h~7DkR?ofS zTH)uA%6R5~rT&7C8sGiAoJHoYx9wxusU zo`v0pHkDgfc}^nOaT2@u0de6a8GMYK4B+ii;1b1Xq+-f%XSvfL{P0rYqg)@p?!2s) zuxin3JzxR<&G|jNe{7{vX(?t$%cquMH8)(Dr8iO>meTXm&{SJvi*@31hB*+TXnu+B zfg7tEJxjU8Imk6&d(;zToiNcO#I{C2uuMRL_2u3^v+oTet)suNI7%6Nj9PmKo}IqU zp^#3|JneYXgHD07&n|u6uboB(;B2S%NW}(`>YhM>H7MRXbpZngrjV@oz)}&H+Xtrh zl3&%atf>U`!uL7TZu>=T>)Pf_4$KaO#G(w!pBN*)M(&3H&PrI{_Sc?NCij0qH~Bx+ zRrX6sR7Hg8utpmV7@N@^rO;)DllNJ;{g(pjdw#ML>d?~~TQieud(Omo4-&&iGvBE4 ziGfl4_PNp1YMvivtfr4);iYv7Y^E8Thu!K=o4nnNMGWcWpo+3#yTN8N?U+j6!V5XpCB;*McN(xy0p#>6V0*%2Fh%isc8|vjW6WqUuZ)A-pLVE%!@xmAqY6>}h$n>Db3zF) z>iBZRg9+->$=U{Mq`G;*)_kx$HaLalvjnI7!`H|Ni1oVX7Ze^{f>fChY^Szwc>U4}?It58nYGg>{tRdn=(T+ZC-QjBv8 zbxA}Vh#Y~l;Gd~GE8rsjoHUyFWWc6#+FLcErD;_ON!koySI7}?I@74@=57u$&2lm7 z_F%gNJSA8v2u@tJ+-wZ(4vgq`j(=dIKU)CsIUOF`>oQ&lU4kuyWKNgAn)n}xcYx2j zh7W$*pMlEA$joIKB}z~`y7+g9s3K2WwD>f%rG`8cR0@=$&sQmzrwqPcbaF05*FGOD z8T_Ms!_Utz%vA}IZC|7Wt4YxSzfW|P+@$8ZojqEDAD&yX3xtoPh8mZ#Ntb> zDg}#B89v!Iq#{c(C@G2%Hv1nbbiv?kr6R0kis@SoX3#Jx^5ISV8JBMwuf`$|R`P^A zs;;2x%ZqAsU0)5d#`?>eCYf807ACTS`RL*h{D??}^iYMMj$s20UX&HH_pYWHh?pUO1ItLEu%xs73nRCTT}(f0$uiU{1JcYv&kbvrU-g@7L6guzkYUnSCqcv) z%QAsDi>@-X`s^OcBIkKog=}tZ`8zME=`=1VkGJP7|9{8N+fAjf(x3Pk2EM?3;Syb& z_8at}G+!+$DmqH$#J}C!>Xm^p$ghx4>gKqm!)_!r3+uC>&D_ej&pNlvZ2pXWsK>vZ zFrBxB&Fr3vrP7%SWFSpS{U+<|RrBXf{4+HwQxGHK^3VRBRS-sq5Tp+LA($57J7K8~ z{nef7Y!P7N{fky|g}(NhFybMlrm7QNvHkm_HsG@WdLmh2ZE`@RXi3K8IdEd@jxR^4 z#7tGwsyn3YVXDF`$C2p0l5KFgpJtwcYv)x3LU~pi(I#6g(8$*_R23u&y z7&k{XLqKxw2jwz#=U?9<&k4#Px09r;Q-!H+gUh`m=dFMj*u2w( zz#~mTe$YR&;msSzk}0=6ciI*@17S@>)*5p41_s}*FsTqz-za#G=VqLdA%~r!eEmZ& z?Q&DO8Tom>^o*v5qcmQ=a;3TDyS_7T#n?Oqt=NbI6E6ZTv@K5z1X*DIYYHGW+;0mX zy_BiLrlfto9nI`Z*4z#%Uq&h_XrN~xq{PuN{&kHLqDY>RiM7OO*=l=QbT6Fi>n;65ei&3<~@J>G0 zk17Bk(UxCLWqKKnKf;#9`9(QC7xSIR-+R1$qImGv>nv4eo%P9@pP0QZ-rE7D>U?yv zB2Le^2m#MhQ&fFYi)bjkDm-vhJ-@{RqJ4q`ZTw&0vBb*zyGI+Co=~>xC80(`J}!#5 zmF2v}i$VC8;P8wd3{v)GGc_pPxz2$7ZG+dKvhtHn?7Tw_HE*l3}xn_rb z3EyN;?wLp<+DjQ-#uueSHhF_ z<;teGy8V)jhf$-i##4NT?4!y2)MA(Bvy%-NRoOp_aLVHb8n%(qD3K#YV1>N6=}n2v zD(3c;6NY2%r{fXGkA`h|7hx4?o1w0c*N3<}&VTotdX8vb-4#D6uv?wI1@xG9a)QVmDtE zVB*ADkeSAQN<8YAqL39fpsX&X4+ckP2Q3e_+#kxf3jq*k#iuWf&+l2lvJ3}k&D@1c zY0yd8iFT+4j|$F+7W?TNIh5KTVtoK*TJ8 z0L;19Zn`|lB_B{({q#=|1x~r#3z+efAmv(A9>=b&FTZ^-sc^?r5W96YIefoyCsDuA zE-ufBSka;$YN_~DO|U+!YryzjcL6-Lm`Mv*8X0UwS zuKfuK=k`!byz7w+E98Fi?w4(FxEjF>&y{on7k zX_L0pO75A4q!}J{D@u)%~-;f?pKW(C(D)ZZ$SIjJ7uv7;L%=0&$3E$7~zu|@joiw%8V>$EtrG(nvy2Ans@ zVro0n$mJiW#pc8a5K`0B$!j-t!wg2;$Cy`A8F1?04127Ux?20Ut#^Y9fd_#<3=&I! z@uf+q!?KI}vr4KWP6Sjo+Vywai}e)ESLgLLRzj`{X_WmiN>XBgI)sal^fr&|0EB8B zkfBdK*}s$lgr0OHC8wv+(zcxnot!}(Q%TcMJ;wg6D%OLzFIy_m5m%`^Gp>vi$9nu$ z_oQP1KD}?QKv-N#tr$iM>azS#^8;|>6s^NLm_GW*%2NtZH{)ggBI8gA{cx2}OofDs zQ+|y^K0{8S9b%#5>IsaWLZ?5F+YzR*h+jbCt}O+H#;;#$EF5G!l=H)gq|r8Znbo0A zOO#iaiyEaWqirT2&sNJZyO+tDKHq~vElJ^Qe*nBg(8aPDs=^THAuJr^L21cmOZ*xS>45hIRWp?dE`s1M6>m`DXuJF{hbA^T)GuBh`8AoaG1uWw?@W^5HT z16;Ye8d$;A*(DTVt8v(EbZj6={k_GEXB>7_-{$Mjp26P#p%fAM%Ri$mwOmmu(DAO@sr%C{3Vt6%TW-bb+$d2#oYr)O+d;BC^R8z z7rJJevVQqC)DG=YE$zclv?pq}B>(m#O8WD-yHfwaVR+n0drH41pTF-CY-#u%DQG>x z{_LkA;8wWaWpP5U6nSex$_wlW4SZ$UmO8XEeE1({mfH^5ne0xs1I!oKbe`Ajh9o@= zGyc2>dlGLQ?Ld7ou(fh}2~8U<>-7{#5PIr! zoJZuL|5yLKL;!z{j@}1_aZJh$c8@K(=WTV*J5UuZ%XhzM{1C-dYHAx6wm-tUH z!Y_QVLBg(7U)U!8`$i%CYdQ&LeQkClX;4M3O)37)t=&C zJ3l~i^*1_K#%%Q8z&^b4fSAG&Ppo_S5R>SdL6Lzi?5E7$y|NyF!dXLs1;xk+5Nx_} z?vn`Y(Fp^BQUUvZtraz}Tt1w@Zmja(s?8+{ogG{TOyJmd?lvA^LM<6_iqya$r2SOr za~V(ZeK@13u0)$#-ay5*&0N^9^_ShvkJ5d}5p@{dmdTxHJG;6v>e;?!_Z!&y76T;$ z5cL(d5kQ#j1|5kG|&_OgM^Ady4{LsQqktf*bMZ!}=@!|t9)$*U$sk0^MJY8O? z->d&Ttxt7LbqL%gh5#1OaHt9<7`3DwHVpHSgAn|g*(-H~)`*Ff% zjfQL~HwFRE8at@V&hnQ>7H*m3eJ8h;kavZEy2xLDN`nS7kQnoS>wajcK)3^_f%IsH zqV*&%5*Z0${|0TWqef~)7<_BNnhHiHHdSY8TFVb;8=cy>8hjNPQ;BXtX(kj^G}`aRN{N3@n1Q5F z-L&9|N!Pin4Pn|=wV8MI5wDwfbkexWJZ;UMmxIf<*TSuDhDpV_!LXb zL#BDjx$b3oPCy^CO{<;$S^(nqpl9FDR5v_^iVd{rLk2@Te4~u3$~SNeXDpV>@jssH{~r9Kc+V_} ziwRbK$xxK)71SvcSGzW3LyQN5?2FGxq+9-7_SOaq-Kba4ZC;A_Vi7&-HL{jy_5g|k zjgP8VH9_ZH6gePA`^_6+ggVzMRSlVPO$m=3Op55wy0Z2)bcJAdwy-Lsa|ZU;Y$I0e@?5#W;s3lJjg;fk3JyRVIZ*9TFB z2M@}yE!ONQu^Il_E;jEJ#e_+e_Yn6OGt+^q7=D!#H1Y6!7p#H$L6$o!lPcZuoQj#U zyFd%s{+Mx|?iEtrhCg|2lez!POCK|!C-68z_mfS`kQZ?+{gEnwYbz=2N8nEZK)LtC zw^YM>a;j}%w=*hLPpt@cRTzh|F&v$2T{)+(@x;)KjX-H$^e!NUVojxVJ+a#JN578{}DiRJx+E$;4wU4|V zn-EuDSreiM4#@Nk9ZaoOdVm0qa0D+qGe_zd2aq*BDBzRm!ora*BcpjscP^?a$-+f|K6!|yHa%K9@eYj=U;*`aC z+nQRw{}l|a{v{P{_tZ+b8^j};hpqwCbqS+b-XW-&{`F1IdU=-u{$|ZQo_1mZChct5 z*wlwH0>;fPSCev%k}F$|Kn~{wHNrnI^Iik&`0-sKcwJbh+XRzha0< z*Ftv<&rDZUo}I0a>4NZ{BrwC_C`+eFJ?Lm$g7>l0Dg?4CVRKhx>SCOziA% zGIp}|a@%H1E(4T;$3kRB81XhbKAsWXy1hfzb<2lP{B@6UIRWy>hc9N2 z)m)ocMPK2I{CJMud7FXj&YtuFoTRg%pO%fjmp@P(ye!^}qD{WB^TV@L_Pz9Gn8EF* zo1V#|GubJ!*0WvgpE+;fwqI6qz6&7HhdBh**LzD|N*GB*B3VjU_9S0VY_}$RSszo+ zj!^vTK2SvR-WF2@)XM7$m$x1glh@=PN9nQRB~(MQPIn#7#$m>LMrS*%&`!Q>Rgz@v zTg5raTsr`uh%5mv!**&{NO>>bRa;XX_#%^&a=aTW8Vkmm0KUr>{Vs<172PIq^9i1aG<3A4u}ig>Lw$m zfGV6_{kgxD6^3%%qwA7Y)eQRCkst^N@LaFS=!!`rt@OHF$-}!-aqst*Jl!iyPUfH) zjSu_Ja3Yp2xcNT#2Gx83=m<2bOI3N{dKksW zeRY#?WRKkNfDl8V^rIfx%`U8On`h}SER|cIeWWmdR~~qx13THwwkam?2wk-g@QKSj z**g)L#rFzXq?W4Bc24;``o(yPSy!Bvch>|o?|C40rSgykP0OtA(U}u$BA-Uc6*7pi zT7BPSRdrn)dTg~wBLxRud?7D9#U69*`(Rr&6#|}79)WkVqu$LV+-h$ed|69XP(3y3 zvKW9{!`m)XW?p-ceJ3uhV!r@)=0cZpzUB3O5$m~`R*^_cP5ce1s;Qnow@Lr9h&sgis^>GiI`p$w?NxUB=yucUD8sdL?_ zqhktdg);*2*LPFcv*X!MdIkfp%(HO~Ml+D44B0Dejw8G+KXt}YdJQfJi0fpsWTuG++8d7t8W zQ-a?WU{wTP9z!l;XWl(=DG9Rb_FVyC3hg&}=)N!dPR2~yc8Z^h@!@iI6jDhdP< z{)E@ui@nk~^WIcAMRiVDqV>6tft^qYA)wk~gN7KN+TNP3{3l~$mthxG2KpQ54GjK^ znd>Z_J5nK+5Qrq#n&Ds&GYAyLar?>2Wj1Djro&kZL#gfZx%Cs22`LB%JQERk>|fHs?V-Q^>#XJM3k`Z63xx#%N?)Cm@ff_ntb{?>xqB zzI`7g)N7K9)#^eBB&Vg1K%RR%|X9I#O_F-#;qT6PAbR+G!`;|8X86~`C^8w^T zJ+WGS0{~dKy`8i6l=GkFc!sGK-Sgb!ojb?Y$1W^!d3w)5N!}pJY;@)bgOAni@pev} zd6}Lyar=%K0<`sPULrMabi|tPv>^zh9|g*oKFr`CQ&0Fnb1e+#TUQJ1ZZA5O*cVbQ z=f!yXJFnk~WCp@G=h&R7qCHF?c1T}eU))8l`|FnqS!|F1$f8d;I5wo?Yp<$*0$=}# zLDN1-M2#`+mnV8&Qoj531)Xmv1KH^uRcZ4-iwI3~5X@@QZj=nu_s`-5^KhsUFy(oD zJoH(;kcExsAoORz=wc$1&i#qUAXJUG%g1ux48? z$wph^=e?BiQ}0oBc4G1;Upa0g z_621u#ueR3W0D5_-Skad%n}bdXy+qH%Gk^Kq?-;#Pt!w8zhfPZBa- z6z+Sfp{;KM)n_;hj=c|dgYb4QqT>rP+-n3=hSCg!O zieoYTE

BXDwaXN3k^7e$O}M{E>uO2+l(N&xQ)6 z4tB)TCdd*7o|8i47&E1Ge;V$-J-1E(*)=}Y&uRR3j4!k11gp`}r+DgzDgWTvs?5!8 zXn9*?tZ_GV7pmgeb5&#Q_2HwF6(gfk((MWViqY29h3#ElitS3;Y8iVKb#~L#QaVaJ zb=5QHY)gIutmpag@_zj3@kjJ6wRP6^Y*o@NU;6YlN{=QRh<6~9qS{=angyTo@o>Mx zGzRK~0;43Vj&six;Zw3zHkbj7B>DzBGGL(kuio52foB~6_#fn+%5*|~ZBPIH+36Y? z)S1=MQt`$A;e;S=SULPy$x<7NylKOFUZN{s^?a;LucwjfWN^@0S;VRgzm|3`?CC^1UrglqgL_JT#J}Mw63!c9l!XyUl1O~D) z%Q?e6J`fjYytq^^N(o0x6~pbHD3%G9D9v&<4cYyDIAr*|I*Goy%>f2mNhFLS^2?M$*b~z4P(^L8pq$5`lU)E@{YTF3LRf* zK;2z$gb=Jl$BZ;wj~;~m$&#!0-ZT|9NU!RO*e^tTkSZdM$!DdPZy!Vj&KfUAUB5fuh>g`L$jz6jAfuR^V;BLZiwjmLp+C$g3DTaRX6^=D7+l0C&L zhX-?%7q@kI412ebkq*-)6dOs-D?$e_Uc2FENiUyHb{09i5e}Yk4}34L^$q!@uwrus zc&7t6W6kbCK7A{w8qf#xbxEoE!X>iSr^UAOd*d{hXJe#FouWp+>t0H;#p5Eh1stnHwDabrhGf#TQSP!oBrLjPI0SbU*<$racIPbeB_E`tM{9bJjtj+trtze2PqQ;PIcS@k?Wxz10BY z4ZhR2qcG+in%^Ra^HswIKgAocy=&}wGn7IVn^IPBCHW(5FvI=Zp=1-=2M6G#1Qrgd zTwKJNeb~CA&~Q^w6g|OfR}eGxdP6F#O_hpgWIojAkr_U?!WD}3=+bg`FEcWF{k~6Y zLsefVUT7ju4M*(xg$|NMYj75y2erw=3}0PEH=NwHJDghebTC>=IBnBAr0Mh|=cJX_ zEia3A3-S)HmvG)fY-0~bxkgm7u(Z02rv-6#o!Q$yEk zhJDv5n9}W<6J{8)zrhLT(z*9H-)Y!jikoJz5hQ%4;?eKoBIBRg|?1QDo zL2+=(Kjbx|af5!(vo9?{O5el6|6MP;hw+LP%9*uc80NssV@k(3BTXzv=l!mFh1LO= zmOPy&eIAW0d2tq_6-t{bN#wt41sc#9qlvcI)Kpq!zY!OHYU1VepPPmj#pCAL#n0X- zZt#4^EI^ajCn8;<0RF}eXub4>dHINri^89BKCq)Np7bLx;Poaa9vQuHubRTJq)P$qJ6Dw!OIU&#A-?c2OgmEWDoJ|de8POaXPnZVs zZZ?P6izoj0)###22d!uOU35a*mYu@KmcY`fjubUIM0EXcHU(>$8jIn8g`}iut+N;> zyE-M!1=)G-o3NIE)RIQO2G91+(?=EWDh)Q<}OIB50(fYu=3jw6}04 z*tA-N1HpUAsoL@^=hg3cP}JBgFbyXN`L+|vqE)wpD^ZNS%o91TORX$0g#2xzW(CPiG`V!_LB%AnkB*MPo#;;gMiikw&!4!0Cd|iX7 z_L2Ob+li`(ok_58<8g&9$UNVkXjj#lw_;VP$a7G=>q3<*=iW%3ekG_HYPHZ6I|{H2 zdudkk3d+scg92?VDMCUKG?aXg&*)fvC-!Ts&0r_GndL03@xS+$)t@!rYNAqkoK`A= zB10~s%NwZ)8 ziORc$xh7>08@xR%^y!R0SlQb8XapHiuroI1X~z3v`@Oni6D}w^{P0(jx;IR`1G~T^ zV|0aVL*puKYx_z*mR44cVj|9R^n9Jyh1pU;ogYIT+Ha|t6i=WbrYVf$;w8(Kb?YcX zc!O1Z(@{l_z#8|Hlyh?fk_V1m5&Cttva&mKoDNIzyUEE;tpgH>^3aw)QZ|^Vp37{H zf#B6|-yjy`$SpMj)iL)`{;2{W@E7hO~a(b z(IAy2#L2omIbE(8+%~P8p%{|tJA=gqo`tLJO?r)uO)jeT$JReU3uvTb)Z3(b4RTKP z4YFlBHe4ATw?|qoTs|?j6ryv!E}VQc8@G9UWg!ePCpVy^nVwEpqD7)u(O@JiEY{g( z!1Kv135n7F(S%34R87Gf*{`x`dCOjXxP_iQDBJC+*GB%~rq8bkK?+QNmdrKAs&1@M%-)FX;NCu?T;LS^`TrNO0Ob>;DOTLp^| zoyk+D*sm4Oz6oOJ%`}V6%6vDt3&DNLOGq`_h~h7NQ|!3nbmonjL(W&>gel*QgH~4Efex;G7B(H zP-dSy=i_fU+N@Y|vE>Mh@qltuJh+t=ke z&c9WCP$`~BtVE?}aBM(y*)l=AsF6($F*cZ?Y{us)kc`#apwEOH7t}}vyjhlhuG&|I zJZt2){QEL@Jxz_Z@D~QOS^u~{J)yz_@q)w258I(^GLdi4an3+be}^hexVAsF$Can! z{W%jVs2DOIXcsY4@|f9G^JnsX%?W5`PKBm2Jm!PLwvrAv97@~7d4K+()WOxY@n$S7Khm6d^f z7Q`hG=3uGFFqZy)#>-1FlE$vBFmVa&-b38@%g%HrtXdFNzEO|8vJqdg|j)LY*Pil^6{2zDk9o1A9?TaFcC@5GE5Cr^GL`p!B zUKJ1o1e8wbA_Ae;P!mA`5dlR4(m{F&y@nEsfPi!eQbMGc&^v@AcO!o9o-xiH_r7<= z8}Hun@>j;*Yp*)jT(kVX0`%~D) z%i>8I!4{{}l2;s+_JYX``j&dalbUCkE$^zcmZ;37pPzOgFf~d8y!Hl!-IYDW7i)~B z=iE<9<4u3nvcs^-avMVUI@j%=luf$(yIfBf_}^=R<9$2Lz5wBE7oArrQ)Tf#DbGhM z{R(K3K9d}*@=`SojE8LZSzaxBX=4&R{^|4!gRy)-VKd8~byd{Ow(NXbyz|6BN{XRJTvP#7Ff79DXi$7*5{( zQ9`AmnhP$g$yeqa>Vg%!Xin*T{gPg$U|Yu&SC7ik!K=y>mYhlt5+rRi`D@lGyAs8< z0HsHU{&l)m>4g4>SpopXU+p95eGE6M}&fV+` zl-x*c>|q}IFdtqfB`n;v<{cKMb_^FaB`w8_n)*I6IQXJtFuz;#;+3~9w{JP=xDF5(Iw&qE&C3}o8$eS1QZfQ(l; zlUjXl_5#)p`o-Qxc?r*j6d-)>n#$vsteur+uFcj`ua~RnVs?^1dBm=burHIYG<)N} zr^_xYm%B)?(_>H=%AB;B#o8|~-RY85WpeW=gWeifa!4|eP6Nh{h1JdL%z-Xk?*g3U z8z?`+_eSEi^|Yo9hexMF`|>mFM>YgAvaA*=d!!11y93|JURPdyUe?x`|IIDZ%a8C1 zkuZ9B$@eC+wu#&$kpEd?5530l_W8Gjy0>ktWt#|1wtS5jPU!*xw<65;+#fg&D1hhm zdr^fq)9tBiioy%tgv&+O^nhVp)gxtltr9*qkn@M#L_256Ql&biWipjR$(Lyz?5|w= z+k={7U=Q8QO|ECpN&6ddLe2qqKeEoZWn^VkPs=pMQ0+2%xT_&m!r2BsM_Q2fWsNka zqIt{A7%z3lN)243BKd8!>gl-F*4=J1pPb|6zqFJN=}r)jld$}d7tDFUxNvOOH?}B^ z6f70i_T!}!rajvee_wfvOIbfi4E2AWk7edC4dOeRe)eY9Yc zChv&t9Yu4|JieRbgTypJW)%;*()i_F$b9>cYC#vx^?6ZArqTB1MA_T&uPja#H-S^e z%883fJ-cqN-DP=w?!n)XO3yyKW;rQ)U)Lb#ht5MqE*~lGN`lfAYKy~kU$*gLo$0oS z;T9&-{A$;^DsPqAo-wP$zLk+ur9i8n!{KRJ*}qFe5kD*pn%T3YKpbtQ z^24CAYnBk-1j_QEdeMW|cyVlqY7w2)RMgkVZ?Ex1Q&HH*9>L$J;C#OxUI8f))08H4 zC2!y4e4uXC^R%z};TK^a-^fTwuEdp~^8HagOukw$>kg*=O)jhTlXDcnuc4?o3$8-< z4&Z2tKKav26>9 zQjfaA{O1J)GlbFc@4KfQ{sY184bcyiw67e0L_s0nsHvz=YfjnpAUNf|x-90vNU?$; z`4an|HYwh~Z0$co@)orDgDx|)F7krpRg`JVZ>T?Y^C?~FKB-}$K~tejC>VT}dMV>@ zbe;OW&Y8fIuPJT@_4eI3DMj)9Qb5z+znA3C(VRZ{|LDR$_b&W>{NP>6{r^(oPhz5H z3WuFfWeBKX_PQASL*gU~w ziXWxuyhi>Mm2{2$q(g6Dd3n0)VOH0SYIvk5i-UkU;rK$!0PiwY)v^jC$yBKVp&kr; z6aTOYd}d*ln?4z6FTc1Bi>$IUmDN3mNkN;#+TQ(U!XRoXroV5h7x(`9nLuaoI`XaT z`itaSx18r|I=}>_j547hS*kz%djzMt5~<_YXPRBT&X)|nwZEiQ#uEPEyhD}bHY0OJ ze&BkW!^Ww}K_-sjsxSfW2fwb6E}cx&X>(`9_7oCQAXYF}y{0w3T}`t(ac4+7D62uA zi33KZ2uc>bb>mVumSEz^ck+pPP>TWI#7k!;4*27rH}8FX(bcc0PiL-r{qZB_KPAkp z4QgAa_!;3F&dlG>1T--ZO-+#hAw$I9oecK=_ATd_r#H@8Z~##}VCPVQPyMA)MrG0J zvnLG%g+$cc7@wWKFT?)!K?JZV3&lf;svVfhBi_FSl$`LW-gqaevlgs>s?d6UFg&y5 zLZ|iNzKKcG+Z)Uu?au^0@SY9d69{S4{r9c8OYNO)mhd(+yW@?*%iV(h-qLcQ zcT)9*FReknwqopWivezM^5}m;cpnEQ>?0h9Qssl)7G`~PF0s#dq4Wes_T>c@C$hsI zI{LhNn+)rr-Gg{}j^{jI52@My(P>z2h3-mY-L)H1l|>nZHYe{5*9ioZ{XBmi?%Pjl zoP|`c`tEbu|3W>Ez_PFpC8~~lW2a%Z!nJ$BpOXIaI9p^v;D=!*x z0b?;ay%Wp4{a*-2*?krmWAESfV`VQ*Dm1S&PivOwcw!S#ct8spvJGCJ{Sc}K}%c$0gQ-X8`m>j3U_p^X)?j(adNp2)m5*CKN#f9e|oJdFz+ zCy$g0+m8x$RZoS}O)Cv{b(a5<*pey%o1%e>Z)EkbM{Ls7NCp312BJq>#=sF8ZH1%{ zqettl_FB4*J9bMMCi~r#qC08->o-%l9`0a=1tAhl;@97(L~ZTbO3FOGxE+vkzx54= zZP)Jed*$onlEgf>tmp&X=9Yq#3xTk){$~n7F>5>1lHk-DcDS+OZEm*RwLT0J>{~n$ zip^|0GOmgl+%XN((#bziCe!@>@aW#Yq-C`OVJzNlKvOS8cF)3Z<3p#!88E2jyM?1d z*B%M!P28w)v)2w?s8@)Vlt3!nnfljc!y#KQlIK5#D-@Sw)RTX z;?KD6M@K<+=W4NXUl?lDRoBWlY}(iy+TTaHSDr>!zn zY**r#e{MR*!q3x(kNLwI#i{&-q}21-58h&8LeETrJLUWOC%M?s~%sf8e8M zGrCF8nHhl3@ZgYo0@61wdJHfiVfwi05w&@k&*aWtaO=rAVT0o#F8Ig}EuBu?ZQ51X z?1K8L0r(!oHE*To%og9J!KGM}E#b9}F}DpVjw`x-S{kE2NU_Ob?~t_v2JQ;Z$Z))Np$|K3qvM@K5K-`(sa2Lo9tttWvvo>V^x|^ zhQN8T{zHj;2(f2-goCmAs(uKMVbkr~^&Szc&`u-7r@|Iq2TUTp?6j6u?RHwck|nLp zA0k&r^y|U$ePHX7*8*9cECq<^BvPj+-pD6_W#JUSxv$eR1%fG<`05NoL1G5rbRCWT z7ev=vDQA7``7uDUuKa>c*IxI27#ILz7cbEY676`=XvUD!uw=i+ZT^YK&`a!gnq}%@{ArlX z*;_uXg2*DHI<%*8asm_k2$Es;nc)qX?4>6>pvqxNveJ;0sEzp;NwR?t>5`G-iEP*4j$wPV-7Sc+i6h{bo~)r;k`6K z@~;`lo{7Hto{Ii_ca6&N!pJgo-BT`ShpOWHLXZiyNxGj+Y;DpT59`dlU{`6~x@2X( zSshtT{?pHmJ>61L(e#DCT8@g*jr1V{d9Qbq_O5c5jzll+s3oMDM~n={lCaN1XXI_! z2aIFhfzQSiz%}V>hJ)c~b(z48s#z3qV;JizmF80znr^k9xLVxvO#)tn|Mon7ZaH+7 zrfUn+<{LUq5Dhk5>aJ3Zs9M|K9ik#hqFg#xeL!k`Q-;as1$?xvT=wc1*oVvIQO~KJ z=<)44uyCx@ctIPcsz(=_XFGo&j)`lNcOB>GOQe+9T2DkR9v!VqiDnCKUp<+dR}4#; zW60GTFpT)~{2{cLK6>oN;nf8?fDYIQN!p(?_||jF7DxQ&l8w_OWuOsBJ^WwXd>x)<%k4kEp-xcC78mNT$-$-2mZO5*Q7Vx{f_3G?h*QWmP&Dk z8HuxOcl*^vyLLn`nvJZI!r3Q&O{i2ZHLxH*9M)i)QPX6k?#3gQZI6=8xt=9S_~?jp zbq92*-O+>t5%1}g8_rO@R;^>Y3~lrO)BTU`+!A{OrUNUY{B&993)b^%@O&S3{fED~ zK3+DQ8ozX*j!H3R-%)D8luLG7?O$2LgNmb0RrX+b%x$%*7nflR&o7)Hu_0xy9Qxd( zf!WD8Db@STEclR~H=$-0y$&Y||{{ZqNpy><8VJ7@UfNfY8_wJM>=m7{R zj>X%5+qoI^Kd$`$QBVFi7iK=&XjWu;!tyEZ_XBE+{13`HBoYaMKs0Y&dhX{}2eGx4 zyx{Kc4zadgANW;v22f9rfA=Gg3x5x&Wjs@mle1CC$lzdSw>>RM-*?Kwr+ks`(O<3S zf@nZf!=)ljJqQGnsbbYm5Nw;boywQ%65G1bC2mzcmk15vnB%X}e;AXHrR>Utvbo#d z)UfNw_tfq!)khoglWN{fGR&X7^_&?oh2BVkCm!{R67klrk-o?lM_1eD2Ge(~yGNLK ze5M#Otmb*d0he4z2n>}HUr?NC;;zG`?Y^8H&M{iJRB~k~;hvU-AMy&;jhmaBB+TDU zr}1YvZ$3M3N5gjuk+{PIc*`%u@1Pn$+jvs9EZ<}F1+O;tIzG3m;ly+C9+}}S-5z(<}nUCHsykXd|Z=}Fftm=)+2F(-CJQ#PQQab4}1`p{3# z&a&k+QAqnNhmH#v1qOrtc+S%b{#`J6Knb}2j<1)MBRNGZIX1&FwZZ9w;|nQ*-#k8_ zS2lIb2Yf)(wF6ciWtQGdLB@J1sj!@nrCy!;6WNNsb2 z{Q~U;4Q`|KkcaaJbPGU^LUa*Ta4^K=gvu_B0owkv4`<%tmzI1V38ONQb(PMH%*Pb> z_+|X=s{rKZ6sJ(a1Zt_{3xR(Ry$JZ5nm&rdOhBIYotIk4Crt8L_v zPPhFr`}>|8zuDeDy@YDH^eKQ8vMPRMnYAw1o<=+WBsdDBd<&S=~I1gefiA+?cdE^b@jdY8NE zy00hBv~b-y#MFVhRzM#JSD7nP^3@!X;kT>dZyR+vIkOIH8-Qvm!sj&~mLjAZyR1ms z0QLQr{HChh>9jTSEohWwZ*0Zij`Cy*e!sfR5YBeY+!F0nCxe3CJW(y*@6Qvq+4beT za|b0m?N=o7(6P2vBR;1#hYFyFvU7#>G@=Ihsm!}%w$G1jp^dr(7%ipY{a;zGPGlKi zBg9VMg(MIrVncg$Ub?7wE;SZ6IDvJ;f!_Ch52%*8pYU1qaeI!9jI}-6sPI{qabHow zqEEc($&RbP^xwNgR6j+B%a_Mwu;_2qyI?Urlsz5ASThXI{k)NE>joO@!t6VBvUQW;eb+GH*XF%v_UT4GsW4B1p`PE8E>XH)zKa_he=5a~9 z>FZUjN<~KXgYgd)oKl%S(Ym+9LB?7=`uPuK*Uh`c3AZ@!+&%bRnDM^Itcc18*bPUx z_QlvZ=eZGYau#WHo{wGBJyWx^#1Hae^1``zu{~MB#ZCb!uT?ov{Wc57*9zU9&qf`X zfa@o_;g49OTpw7-3O3Bws(=U!4+hIF#!?v$2)YV+tx_gBH)h0%xh82`G=FSHTQ+L8 zHc;ZC1F#9OXCJk&#pFo+X|YZYJ953G2tB}H%chYr+f!PjM@tWRB=5UDHV5Jyr?gD@ zsupOHhsFB3zEB0)pA3`YPiyUz<$~64TKE5q^poB z5QG*yY2^~YhFkC0awbGY&ER6#ex-egyj?%!Kn~p81+PQL2Ps>)?((=EDS!w+!s>M# z;FL{s>)oKyjX70FHu6R5JMK8>hLX_1$BaphVBG-237f4LYq>_Fj90G+M@?sfP6(y< zI>0uRKSwu-oPpSCdpPyn>=*gY4S${bn%`h<;0a&dlto9plzd2g&SZ~|o_nnVr%z?x z(bM9{hb2Io84g{O#_KX`YfeQ8ts%DNKC(Ud_!&h*~ z(}p71#i+ON`wuv+=B$ru_qe%*o3qlNlV5hcjgE|-lx%nyZTR(H%hxx+ zWcxMx>sRJ((2c>6H0rX0S=pR|5+fw&bi06**ic(UP64W)`fX`ex2}=gxBSl=PHb+C z7+u_zQ3*^Q@?K2SDLY!4tADM?kIn!S?A6}h4zq@2?|}kE(VJE}2*f*CHW_4>8pPga z7a0b+ZwHE*o|XfB4UTjFre|uLqb4AO6orv_uQ|fnzJ0Gplx5^GhvUxtnbn5H5MWlN zXg??hq+udG)@mGc4?RQZ)9JDnFx8*;Hk^UXtLxA6_{8&}0D#&9>7$0o2=-&29URoo zxOkKLFLk{YaQkFGe zPPd0#$j)8PhIB;aR0BtDGRQsX;+ep{EWnha>O;5KOSTs116 z=fwIbdmdY|&mPmV5bYUJVc~;+{t#{)rtEKOV2=c zn^)ufFjOkQEplo?A2%}@@7WsF$3gP6>$9GA`JZj67QY@IR5LQY~HUxIc@ z4UFW6^?2c50{T4`k1HJLe&cg7YN_06jXvx&#f5SAy`@++pEC1VZV9b~B^-z1o@|YJ zM%SvE&Szb+jF5v6iun2BCy7NwUG;LNR3&WOxv${`Uaw;Qb7 zcb`Go!Jdd!FHR{32A+FA)(Efp0C&>8N5Il(rXz|jw%c5f16S!kWJ=Eao<4JG_KHI` z64PC2+7}PsFW;@(i;jzDX-?h-iAx(_rJdseSX&(4*8SBqFOBvM*4{Pxce8XA4NjUa zxl>o=s^1}9>n=l6^jmlaBYU1SHFUZU7*NqH^Xlq&UQlc}x?$k6pSwek$0QdxkDV#* z&Z4+Z6%iVobT8!^wtW-t{8Ve`9S2r+(eF+I52v8pmY=-_Vm~!LN`%4*r&{2b+(897?WO+dNP4Mjy~NEh5V!!_w86W$iQXcJXM>Rh^&IAQZZh`B!|_>{m?o z;wtLu!PJ%Z+x}CeBJ~wuDPAugJvKLpfBSN_=~dQ*?3MAOl=__=fzD)1n%_6FrfioIjd^#5jL6PFTaGA@NCl z8l>DhW9LR$*{g@kBQ;GH->?O;%SG_LkM(Rrf?gXS**?|y-7@3twUO;e_G-fD<8oaG zdXw>tS7cw;Fad|tFW za5T6<^7VAT@blMwg~r&Y{L>XHC>>Va>RD43l5a}Wfk0(JEpqzMh0uwQz-3&UY`?{b zb17u^@ygrXE-?+{iFfcK?*cpbA0cd#)!NV|FB)mpgma8ARa$#U#1-1r$n=|!$`c$l z&G!cySq^Xhb~;bRR4F5~%WkR!A5ZN(^vwND!ZQUWNmcoDF;^Qf(`Anp!}eSbv|64( z%Q?ufg&Qg0{CN2GM-c@C*{8yx_n|Dx>(YE~<5B(9?EWbM>E9i>>q62|Ir1i%!3MF1 zKT!)M623_*>16R0`BSo{yL@%V^i^ArW^l`1)0eRmUa%FGnZRruu2e@r+9jr7#ihW* zj!kM)Gx!G45a;;}YJ8nEo~$J|?HFfuo5o#hf30Fs5)nd`T%{V}CZkt(^ppS%3hW-L z__;d1SqSevTeG?`;5hV<%py*WO;Y>z0q$_OJVX6`=m4Oi_#M8lsv@ne zGCrdl99rnz-E+(Ltc0jXRqw@@5dm3jq_hs_Z;rQfIBd#@bL|d{tN-l>NcA*u!ELZ1 zSo?*Ge%tPvru~y@N6v(=%#a6Cf<{j~66!=2+VD`7t(eZHDj9bLo6ow^`nfcF(A6rZ z2G{7C-{c-g{Ak8ON4V5n+}Cf*+@Z!9^Vg+!D^nrr8*lO2uMF-t;f5PyWU^bXueuW? zuxJ6H+~1BI1Jh(*Bu!hnY)!0S!E;^*Vm-{=G$wa-{i$(&Vf6=MwbtnTKR*6>&q=>` z*G>Q7T_qsu;dqy83OWJAP4d>XeW&cr7l?lL)2Ev!cwPst5-r7IoX0%6bV>cTJ1bN$SuB}xb{Mn#puaq0lZ4NbKa6SV+-cKcN u*L+NR0s9Y z*J+4v(O?NZqPEWage`&U9MHv%N4t6PB;pIvWL}A9dBywpMBhB->9voLEpRlg)c>5X zdY4nuG_;UVk>pi7eKBY9%2yX8X`Oz!s)R@C+nAucXUBE`{OGNK7L!H@e_nGT7q{iO z(sutB=n@N*{r%I}VmT;mZEOWE>~gW>=F*;4iB8p&h#xs-&*Q?!u`<9yT#3B5{D~1T z{<>hd10M$|7uF6ZN;(XD=$_B@;&mG%0F}FZTWhfJ$1Jn5< z6HKQNz^9M3c8gQSv@~O%q9Suc9?tRjG^MX+`O%`tT#D=Oy?T*8Tu&4V(&ub^9vr*)XhX>OjQg_ywyd}EarjP?VoeJt_ixxy%}@s2x!ZZ@e?Ji7-x zJ6ldeWx&}-KTNu^;z8&&eymWBJ;E<gsyQXDLhwG5K^nn_|q|zA9F}g%$g&q9o z&6RuD9APvmT*gPudSrP|Z^f1HyyGQuzh+&*q+)X`BQXLdQhO9Fic+zycSo>K*d=Rd z`WJqsH$$UlxKPBaR4O)f_T=6&2aYQHYur+A9^hfvqWjtt3Se11WF6NwbnMc#l*4`v zz^5>xt8Wt~t5MZ6)&bWOG^1E&HSthiW-gTN6vNxK+pB;)F3Xy7-tS3gtuICsKJ zA8G_QU)V!$7GZ9jzh^nYwUZ$b$mMoa=CRe=E&F+EM>u&13ac||L8RJjBRVCzEZU;; zMfmJ!o%n|}R_m1mS4(mrV_#5N18ck)&y$a8y7hPuz`o&4WMEzDYGT#?OP*`Zs z=faA&SD2BeYzP10^KI{v7!KHr*TdJOi7~mB`H=e)U7^U^*|Zc5_m8#Awt&WH)nA)S z>R)9Ha|}jg5c2SH5z#zUtv0LazN1dmjZOcdV_7>RZJijEPZpwI!PPy^QSjBcF0RlbjDp!0i&V>VCZvk8Sz; zJMa#@!yKSZi_qbTLIINvEo7lP{3kfy7KlD?LmN!zLi?vezm3u0*bl?|g~12S>-TUa z-^0Lu5i+}7fbZInz6Q5HckwWGNa!Jr`vwTsVXm7YOx|^trGJ7EocGbN{W63t*&5S4 z$Kd-imgXvUoOq~+J%sDkEGGEbx{+~Ygh|msIG6+r&5hb+X0CD*%hRVq?HX0St1y-Y zF5x&b8uTEJ)7F=Oi_98ShxmW|;bGHc!|7aXca^WPec=T0a5*DpF{qHJ zpC=mB`fCk$_*(4FST*OUKa*RJo^CMNNw(N4V|71g41##^Ipox`-ta`pIJMS?oSt3JV@e}G!!s|4oj%P%KesEa^{o?vlr!3!4KVK!K&u~`n zGqo1HI}Y_+C`%vF998e0>m#O#F`Eroh z2k;f=iSaS3w0@>zLWzbu&_g=3>;<_okBAFcsVfua*u9-<)*vpOr}Oqqb=`9K4p`-| z*GkDmv-}`xrB+7q)=GP#-mi;lykyw|)+4W`jajng;i93gCWG|`m)*?$Qo)@H+Gel$ z8eXm7oM&jlZ3)q4;*p{3U|_PNKwfAP?+f{bmG+HJcaJd?h(u&+wscm=F3;f|bnh|s zHRc@->ZX4Z0W%hrs_IUZ#O|oxp^C0CIryO|YVTT{RJNrt<6Gxk4m&E3Sj_E#I<$|{ zf4+$%lCGH!68q3(MDNA#bfTY|mwjP6W7|&-H*(cTQjVaHb$UR$5)b)@@YsSd9*r3I z>*BGsF>oPb(=QM1Ic9Uqc!^l0YSV=BC^!&^4ifsr3B0=+0mKx zd=Zd+KKLyXBs07ot(QFHlSj@*0kVM)Xws3{>sWWa@43|p*YwlLxN>!hSR3xkm{DtCN4yb)=6!s#4~8uMJ^0&bSpy zqm=dOTvqrx@>6qK*?m*SyX~gVj={9}C~2x!L%2fTR~1K84=K(zge_{Wd_U zQt*{#{G@M?c-)|xNkiWXqwYi$u+GLgTX?hQ(8~Rz2Nwny-Coxh8 zk?~)Cinv5uM;)K1`aJxoEZYn(3c}F!Y1eUhp4)G%aO!3GoBb-?m9JL^HS6jSs64lt zJy|=#PjCg(Ql!JoOLf68sJ5AyPj!4mmb|FJGI2@`)rL0x#@jT&FtL9bF~J65(+4sg71Yw8WkpM* zh+`swq7xZMvVmE}xUWzx!ls90;R{jz!*&ebn5p{8XqV%R&uAt5D*+o3rC5PgSt*+h z2d^kDgAo_^6e&03iP$uDO!c^&siztD8m4gjhl zT(Kjy>G^2*(KVE)cdXsMqS#LVzEdi!T}o|xnAdi@1(pCmv7Gp zH`mf#m!}93X&-po*1%~|>(nvFF~gfoczhm)_jj~ed+;qnPx)c;e2ryDy}t|vQIcG> zNoe(zUWs_%gI0)NrK@vHj(C2(@_V8M5xr*A`lNbgBO<%EAdUT8#C?0wx*BnG8Nz%8 zG^a7Qm{s2+n_9w&lB!50dxZfwOd!C);%7*DL{W+pU@%irQKNw^t$r{dmFYa<{e+To>zKDS*MecO0yEDgbcG2MI?2Dgnb4WZB28M4LZMO zGh9g>yqxs{CiU_C(^VXu7mrf!_id+8{sQE+bJcvKzr+cquIyv+=n{Pf=%P4NVG8q`cmT9FpkL`d*ObE`P_f*w#|i z-=Ad9O6yWa9HaiAa|LEA7oiE=!}cBi5`opB+=&ZKy9X=bgv8yO1L`B0A#~5dqp@^b z8wmGQOon_mobYX+tG1%L{Lz;t|FTc(-Vw`I4t`j-7ZreQs;vkC{ut-0GD@lMlnd|w&VU5UZU;#uCX%K_N}@-U>L zF~Qc3s*36IctPnq2@k6l0t+lxo-WKEw7DfhDJaxs0hMY_A)v{5<9tc@L}a87U4L1b zP+mQd$BB9mg7a~-8H<}Qw`yjEJz;3kB);cu$ zFtmZ{_DXl+;7^oRr=5{&@dtLAFhSdTChvUVD7jk+65m{5wYOJ&u&NtcqHfl8m!*w{ zxCJ)eWXxxiujl#zSbyv)RT(K5+cRGVBnK_kc$X>d$B@&%$%`o%j;JxdE1EzwkiH)0 zsXy*(pN)v=xq7`@YcW_!iCLUwz2OYMIuFS`h5=$~-)8SAaiSp4(@vssfif4e^oUb7$tT+$qGW@Y2NwuNb) zA34BQ@^R$D?Bm(7bB4Bx4plq(vSXPl8HUY{)SY0E5=eE}@74S5YJuHGYE0Vcqt8*N z*ebmy!}`ztdK04y8o4J(MS!nu0){3BWj%xMKV67c z>aGg6|42&`iORLwXVXGtP^>(`jK@p$t7rY*|)Ag&m?JA{PMbu zV9C7k_=CN|>P?oeQp`vOwNTZ(8Y~~-7_D+Wbf-~3S=7(1cr!kjo!rM1llfl~lato{b!m6OWqUEMAp*jnh+}@=F zX;Bf5{px$HRC*)@`2Ok&xL8OE_VgWZn?q6|sl^^FlhR?XXREuWnWO2p3KCfKhr1zC zz8ux}nTP4Fm31ssqYeV8-R7<24&0SA0m#mWsay6XQV3POh21ro%$Ne1kfI@q-8=xX zv-_hZ+4~vPWF{K6sCKwJ&AJ`RO6y10H~BK65hqk=(WZ!%l`+g`W%Nj{Z@_PRI=x~( zXnUC_ktz26LUY{J8e`n4UnD%aVljkwe%xGm(0{3MF(I-s2q8bA`HS_NU$OL_byc8m zmY=m%mQn-JNl;XxLa)Q&0LbI+{oAod;4}y9VN^VH!-{?AG}$)r=(-ce1-l!nw>N&<_qPD??Pm74K(VVYV) zTF5MR4J_Snb*ypyDNG`$iWabJUmQfx>xWxI{hYgQqdW}iDc7X1YPkh3z743w`K)CA z;9fH;keyFnh=33U$7<} zAWaT-$OEqEDm~leeR{U>lE?m|5S+xX&9hlqS$ix-1M*w!{ddwkEB7Gl)BFYyHBd`Es>dXoAW7c)_HRS4bf0 z&{Z|cxW+^S+TB*QhCl3fgz|ifEOeE1&0;qgn&@bzf9w5Ix=AOz(g38+Q+3EM&4@5{ zeqJraK}5k``=>6;8E>IiSJwSt%)1>=+UN{!RXdLvwz;jG;}x{eZh4mK@Zn=9xR4ip z@DRxj#g+YL;rQq$y@VUNU*@G$1GYGIA?x?my`}4fE}e+|M~ai}3M^+!OtC~s^bv-a zyb^(4g^^9LzAx(C(w|CFU!h)ZB~q)5f3WYd9LqE07>Mz<+pzXxl0VQ}`w+KBNXE`= z%~j05V#{~BSXFKrrX^2B+f)jQn_Oeq(002ir4~<0h93&JT#Wp7wB-n?Icvl5O{*`zk7sGJZQ@{7W0I6XD7MvbK;ef9_N8y)lGh+ zpMC&R5~t!B2AhMq_L>|NV5N9Oui?=)xi2X;~V;V%o!lPlL_e!zp0(L%0yRQ?z z3GxN$Jb_DO=G}9?_FlLLKZH9nDlDiqjn^f=2(EC{wD*by$Fm?J6UI~B*SRmAqi=PE zE)>?gpmo=1DsPH(>F{9p)9Ya?mRKlk+I2P~8*rNBipU^WbH($}n|g;!r}N57$8%rF z+s<~G4iWR9K^#PBgBBF|5Wlm-^+8)g$W%;XxyDrVXm)sKrnUbcu*T`FnR%=T;Bn8b z@Z(9zwa?q0rk1<5-nc}D%|?@X>1~Oh*WFh4?33%~QMiL>XRcY^m_UhFp@1xKisL=%ANR`g3--9Iv4Gd|MFNLMz1U^> zKAbuCQ&c{^Xo8WFEAP%oA&{iny%-EVav$DO9{PMs`k*Ufv7}G|3KxG)JRqK8ju!L_ zTiqXrmUVPlC=3-0p~$;=Wj5*EtXSi>+v#KYYfuO0t=i3bW5=7i*YCt-$JCJXW5FQ2frlz&KXR&ZikWc8&w4NNYPY0#0u^TO4i}n^LZ|k{LJ1;0! zW_hR_xQ+!!->Y$@c0GL=G1`g~vX!KMLUlmkOFncaEk??<`Ng@3Q z+BN*YFaYpCB7P>ge$kYWmy@F$78WK`SX9m|@>$QKao~qpqc-a;w)P#2M3rd0rHg7P zM_hb7(e_SZvAbJLTr5%nU&Q~wptJ||Xe-+9(c*|SwCpA5BNSb#D~a;*;n~X#CWvKhfy!QebGR$))XsMjT=UTOajh-ZR-!iTsXO8t31{Hs zll^uWaJSk+7fKe?=bBDOWLo6YMy(Bg!PT0G9+d$&@vLVH`ZKQqkWd=^V{@~w26)p> z0lR+Jwu2Nviz-ypa-I4LT(kbIqQK8Y$5ILL=@NwVS*ID`i{8#B-u;ol8M7ElA1E0I zICU4O`tF*2eL@`wU~8fP+d763|FOWpAH{;;;Ku+*Ib@5s$GXi>pa#9iyC74leK|Vo zKce+6_xATsnZ{G@99v-kH)+Lgjd@Rv`)8N{ z5&oakjgRW>+>@dw{bGL5r8X(b+zFhfZZxRWRFQ3w5Q+zX-ZeNuLeWBlfhG?!0i4Xj zAj2n~PU6_y@&@VJ$+yjEAd;rvt?dtgB1@6KC+kS%&YOJyV#6mdhoH|ytnL*uA7e1L zC5k%HLO;PXrhnnTQlnD>)O+tvYR|qljy9GkF;)BWn&-X+?B7tlpvV?uKGL`Tw>0d( zuCs?010W;C!VW>IO5~nnUUzj9`UD+mW~~!E&EMGNs65L_l5Pd^P%;kzFeqK8;k)G@ zlfQM)`wB`ip7dEhb?S7o_SQZ(&FXlzSs#9~m>GX%+zGk>x=$lK$Wu@NcK$*;C^dbd z{M8(Hxu@;E{K!r*SGflK~Ac=^VPeA1}DEpIZliY zckz;^=SjCHwqs^5$v7W`K@v>vA#OZhACkRSWg)+>^*!Ju9h=p6j(wX+Blx}%E8za!cCtfKjPG+l=^B|H67z~?c@3g*=dqgJvx}baRd2+`AK~5u zfJ|ra_D;R=Z(9tNzm05EvMEkJY@mo@-%jkH3Z3}G<8?)n5m>}UZmWQ)*WEF%e`<{n zj;yXZYeE$N9buV`Lu5FcX3VFbF zc*0A7!vEE<)&Fup>`AW z7Y3$qw8+d!SC`S>?9X}wVCqv-OG}V|<_Cb{q)sa?F5dCu$2sx|n*U9zrlDb8M@PrH z>3gafhSu!k6YKbAwy!_lG9_@lCJ%BAI?hox{dr8$+&Lw{82tE{WL|W+{LA|GF9(PG zfzys)xg`)Mi^hDNF*vo{=}$>spp!=@QG^t?{XL(ZJOpe<|LI}q;N_EsZioIU_P=lD z0X}`wlmAKFGV?<)+@K(`a%qT#ZNG-b&MQuMr-4LQC;ltm9g)Y zbnmzDQi;{d{9sBalK*#TA7Ouke~n8@N}ARVom}g99FW>m@m~-`^iUvdOtQBDIkjK`lx;uot4B05Z4g^zKvP{JT&%}e z%=eR#i`gIVw3RvUq3#zwHn$lEmlSk!H7S7*%r zx2S=QV@IWQcuw3Ku-zIt2 z^e?dtG&XaqAR{ShPh&m6OyuEdp+%@ce?rNZrC)#PM(i38N-KoPZ4JEGpTxi!*yc8v z8+~I>Gq$%rO(S3LfT<&0@9qylM$s_5$a3BcGDp*+6x?Ki+Rx%sJFJw-c$M5+Y%iS= zcQP~zMUH?bu`uC0PD2&(Xl7Ck6v>3Zua|dq935y|+S5iXKR)`0_MvFb>|8Gn>n)~M zO?&sA)({U)w;*UD^JMc-D4q{!dVfA__y(pg)+X*~D|@_2KKC&~^pnNkGd=A%ZrXf9 zCEHD4pi?{Zd>l$J_aQ0-Br_|od7ylQQgk@)rC}^2D#MvJ6Vfl-eAVGEG&txA5VPKT z1!2b4q-IA)#_DXcciu?It*w+iYiCG{A4=iN*#4yW%{`9(I`8CUFV6T#wOoa?@s3i* zE3WEhUT{L|$uJuhfLNrgVy9pyS4wH(6_|J>@m~)83`GK*-e%Sa9)&uT1Jb$`P{%n5Nl0mSzj} zCUn(W?0^=p`QLtRD~;1;p@Rpa2sL~*>ajeqk!W$x-wp+OEnInikoO6n?P)X7($f}kefQTp7yw^u06cT(YfkIz8Fl`h=%@9sBS_@w2zoThvd zHAwM)WEmHCpB6<&)^Yw0nb( zB*#1X>-e5)6H7}@z*>6zdt(k{fCxq3^!R?V`y2pS0yyzC<>cf%|DHi-J6+BJ37f&^ z+SmcExT5bQCM>K2;5^Q}Kk3QY2FgY?H8mja?I!b$=Kr{MS^w+Q3;!P+;di<(Huf4) zTyAf7j!Q_+jve?S)L!@6lJlN4NL@L^83LipEs)7xT4H1a+3RjJ-X)Lz`jL8qOn=h{ z4#2FgUIR%uWh+a12t)AU zXYI$wQ@X||Ne@pZ->mG`y$kQU;=kl~Mq4esjd{Hk8QL%G?E7tM`P`y>FWcj52oRXy zk@(-*`_iDMvTjkjZN&+&RRm>7+YX2bsK^YV6_IuTR1{Q(h=@!=KxW9GGN}kSAjp&m zGKc~}83F+k0TBgBfB<0%F-#!@5+DhIge32P-Ti&9>Q>!*tM02;_3E9U=bXLQ-fORU z@4c3Txl@UfYf(>WeIniN2X^mv0$BuZpw=QtuFnbxcuhy?=zwZs+u2FS!_|75b+`y*|4~4xH4dx!lTbkM-PddNb7VF{C^`7ZR+{krxbt=R~ z-uZDqPv$zW?0~XD^`8Cv_I_e=z=pO`VdCjCGoF7`_o!(n-h1UUb?q`EF7A(aKeIU# zw~Cs$MV0#{`&k-PgCB8hmm}{a{Zvl57OGj z^UtSPPA@WcVR+p}`}Q?2&1sihbay{5Cs*?Jt$)u?hSZ6fpZsWw=YhpjGaks>rdR^x zKxKR378^H1e*!7nhDyQv_7MsDao$_EohW&* z2QB^%+0XiHH@3K=5wbY%CZ<5Odb&U5{Lt5T?ExaX@hoJ$0A!I~;A`=$WHFq150c$s zD9t}9ckh+LR;R;Qz(&Nq-a~|=zOUP~*Xg(Lsl2_~S5tDEH`!k{GVBjKm}YUL6MIzB z^I8!npe3{3w(0REqxH5cDHYPpFBdsUC~kK){SW}xF9GKF%N63pLSDYBDSy_}*Y{Qt z-B%c9s6PqZ9{#00<7wWWeeEXK2Bw_^w{CqBedOHNJG3P$SM&K+_;-M)_F`yPFz-qS zF+5&)Juki=jGZN#|Kt)du6~*F_f_7HMZi^pBbugKuFafw!A~@)#J&H9K6(bxWRAB}oOnlOKSJAGQ- z3V{^GpFs=hWXibDNX)0>vN1Ncq4!I#J!O*5*Ug?u1f`|k*$P?BzXT*oIs&ZURX#uj zrG7mLn4Y&aR^XSuC9!s=PDR!cEi_ynZV1Gaaa|v7_4IU}_}l0LHX}dnW&KfFrSnF~ z^)269Emg<%aszKKEq&-~nJsJn&S>TI^d-b}n;o^QXJA+N{l*mFmgCf#<6?G^588K;n!C=N$J$t5 zi62JZD)yKYCdx&Q5Z+Y;21QGjPgEk7G9S$rUc7iC>lW#p!#mMav24br3;q9G7Jt1C zz*S!Fs|rl@1%3UJGj_?2z-o|Wr!9g&sg4x~wyYojSw{=%P?@Ro`{ZzMZ44)Wpv*HQ~~6-|F7gucP~T(yl}Cs=h~csNT#fEI`Nkn8=pIMI?kyD zr?+i;@#Hs`Dl^N3iNY9*7h9=3?!;aeJmI34kZG=Wn&OAB0k|X^daktxM!B8TsAA&vhx%T@$0~6OA833XOqT2nrZmR zTEl{J$vM5vCVtPq_d;SUly^Z~;Eiz34(u)K=p55H%QnTUPz_#VS`+9blXUF8Pw}4hZh!&1 zyAIA&nKcAnw6r{5asjv*_S@n_<~)xJvhBfe&^c0W^3t^r2lSV{4}AAMJ_>?GeUL6o zC4<}H%To)l%GTb6x7`p>ucprp;PpD_qWGS}vM#n82iS-524w9jIjl!!PHZFU+>NMfnMp#u_ATY^Oy~|D7BU7w zQP^Ywl9UnRw4Q)*aHN&17aZZxW%YkEgnBQb%lzY~1+_V4c_fT%{I$DjhyZt*( zunz7Bls4Pnl2c9G8AhR=RDXM;*nmh9~Y_FxrT zT27D7Z{-iCuB&|f$5}Vp$RxDDi|;s~^)e6xIT`!LZpUxsAL%FHZ|!FVN{}l#Lyvld zy^lJbX4cxuLc|F{%kO#Lx5(DtC6gUP+WTwXhR*>Rhn}!{k4QnSr3iJb{*{c-gKA6 zCi?ui60c}&SFiL7S5JpyN^)|g8G8T^3;>Xl1EVQ5UWxL zSOY@(E|PvtP&vjH9^T0RLS&DMop<(QM) zMS{(exk*%&XC_h8)?_)gJ>Dq}I51{gC_wa|X!GFG=-74Xg=9TJ-{)1eM(D5oqrM4UZb zwe&FEmhdOI^(G(9&*bc^(r`MM58nz8fqH<>ZkYPr6p_wP& zouKU14}LPAOW}6@RtfiP;Y``pkVVIyhNxEB+@35r$8;*>1T>Y29gwXFI^^%Mwm7KmR#K4p?bMa(NB4G5#2Fc$%g$1MoNPa9k9?|TRu_RN ztKofnzANJlaWngxqq1}4EuX_+*9JiEMhCJ*wIXqjs&n(Qss+EO zstRQPK9FeqYp_zgTEP+a&&J2tyB+nF$BuOp#u;;;fZzJn)CE1SYQJEM?w9&>7`UW0 zAj3f9zVApqAN6&5CnutO!w5T3v`M}y3h!q=slEH@ExGZy+9Y}ON4PFZoAxYex!Ry>1I&Cq6<*{V4e2bD}LFO3+muKaK4DgN2ifG;{ zkr2-uS``{9RU-_)PU`PCChnVn%h5eJHA8Z6jCUqYrzOA(A*?m86$xD8)C-xoESFxZ zMeOSqem%ai#XX+ikxbiYMd91X%i#2FI~j4{*836#a~LvQ`BHjU z`!PRDA!Nv)6zexU+R-jim!Q~)cQduJe5dTR9H4l+WVi!2i9ja0(p)}gz99+0r*Qu9 z3poP!lzS_W+h#dx(#`7+9`4=^CK7BjpKXV6`;8moni5QY370M}e)}#J4X1pEB981? zoCkTz(qR6!vr8JDYmt1icY}zNxeLZ;_N(1*>=7xgLkimNU%%!v8MSTe2~3mu;wGBB z;y|gTK=GZeQoYN;bp|my8K#b#BQpyIm*%88Q@;~3H(teBBDLt*1mqLTHy0`I?~lZ* zPhj2G=GSgKRmi7c+@8?L9xfpz-NC~KRL8P)M@VpglK;VI!~;pmDhq0`$m zWSRQYZ7w*Don{`nUhL4q??C$vw;dB}jz+#L5P3}VoTzF|*#faYp1=(gu&|BDFl~i6 z#4LAP{bqyUD@p9u6t-a0we9{-a^^6CocZl0d|OKCIB-<1iMM7~q{{-k%Cp5|nuO?_ zSyqS~Hsu6$T80e{#SKer1eRXXjjXD3lM++Y(qxGpIRecL%oH384$G>|;m~$1;+Xz} zA;Std-Lp|(u!&S8KT1_yaF*2OWWuW%d`jDq){iUC;kb2O*1r{4ncOuE&O1%2cYggg zV_}Stm{=mjXdLA8p=ncWPRbMn8E}rabRiuNryUVXB_-VocHqm3r~x$_HV_YY;(Y=g zyiD6798OK`U_E$gR?D$Il+2znu<&Q6Bq@9V^(&cQe&e1@ta&KPy4Aoi0i(ib8^_}; ze8NsfndW&KUDc4n(MW1!#_-!pYQe}PT@+Nf*mB7_bv3P^&`7$i{gwXRi?CqHX*-1VT=c21m18I20u^crepJ@4R8ScuaOp>N`b2$TEtg zy&icp^<1F+=1%sYe!W`wT;zRbQp6B#W*ebMve*+|M{D_gX!4<2)n93qNP{riP zlX1lfU}PI{r-F|!FXG1e39@G=NR z-qQUG(OU6cWn^YlySX)m_hd(*#W?X*TYG#gx77u2JDoc% z=j=rHnBgVB?UR*UNb94P0gKen^JCa{&mn#_@nu@^)wQP&YC(Z5Y+ru2UQc9@OZ~20 z_cIJluag;>=RF1#fOi(+b;1{TP%A4<)+si=)XD4tlizS)Z^ZO2@L`DkbDJDkm zA#nIjWht7LH@&Ks&MVVrjAL3NqI8C$Do5UEvG#}}PZAJX!Foq{SB?HK%e_b6sMf#z zUpP%+k`PC_DDqV0Z%bZ1jYj6x?LYIWjD2jo8okL6-Us~8r@P@&ndNnp4FTEK1JN8b zdAp+|v^ubJf3Us#UQ9HQ5f%u3uW{?`AA%yBilXB)x`9;f1)o`|q%kHMZ*~ET2+fkr z3!ULYoGN@F&Y2p@HG*@K9tx)ua~xE6{5kx={1s%Gu|ZACcVYBYH^8zcr)x3xg}W5| zyjkl%%O<(xo6cjGrlz1?R%{2LWb~$y1{NEOtM({Sa6pt|Y;WQ!rYBwVdTwI~5l4UL z4i*KaK%G(VO6*P@^vg*)J>Z1B;;Fr-=NVb-ke1pw!Ht}?!miVWHDEiu(Ud0~>73f- zvC>^%ukM z-8rSM3!^$E`EmY)S(ffHA}{e~`qr%`_#LiBeIMyERS}@y+Ylo+lQV7Oe52%h0wp~? z==m1k_>ZoIGNkVatqMP!B2(Gt%g>(y=OC=)yuXumE{!t$nw?)#nIGb#IJLes0f9=k zJws?sL7dZT<#`e&fy8M9zJu##($XY%6DNRjqjx7HcqbWs$McEDb5jE_g-W)lXHqJ^ zbxhht9C^lg3V}5wiINP}a6m@=r-eqRmNx)Vfm0~`gqzo|2UyyMo|vVvGqw*A<{n=k z?ObqfsF&l%?^sKNN4U;%{C84PUoT#g0~=neAVze-z?ELq@vGB&Je`pR?{nIq#^z&* ztXG*s{yENpGm+o)7(8PLTu%HoQ#rql6HBrClp24c&8Tc?$_`8*ve+kQW8wdsN{ zW+BhxF-;6LUWI(5if|Z}jrC}Wc;w2SgdtpLVcq%`H`3g9=aQF$4PBrj$CEAIxXeP^ z!MY}sswFvb<~=sXg)yq6MkpNg^Um$PfGl8gIvmrtsxQL?6;ipIlV+R?w4K)s)sTc* z+6>2l6Eu0tyb4N^s5XiFQ0CK41>#zfUZM()%D%vAgSOd<{z#iIE2K?TP({KLHkeZm z+w}=3y=KVBEgdwi@cVr_XwVL4OQ9ODOl)YDUgitS&{_ydtt|mxz+@mgX*nRqXD|Va z5jV#9S5aQIB@qb}W|RrEtzp@ga&-R(-H;)O$ezsu+qA%sI?c1*&gY79fH;o0SL+9y^YVGgGA70jy}3}h^d(y? z7>xu~p(&*3kUbWg)crj3?N+L_I(L%`*o<-~6onP0;Y|+ER5{X~c z@XKi7hma>sS8Peo0b=T=R~B)#b;@tzb>=mrCeO>uY7i@UpxE<0d-M8vxegp2R=p*;Z1eP;T1=}JU_@m->i%;pztuA7tWRZH4#`zU|f zBX!g0pKn-A_OWW*D>}XQwk06S%o>0KQ!T;tUboRNp*PpdeDwM!rT`oeVea|i69HMF z|Bfd8dx|=#bb-C@3i&N~^I}bHSsT06@Pz)|^&3t+xUv1g0iV4$dX!)EUh=$Alw@hI zUu83J<@USE{c5KR3%sAd^j6F4eYrEc@06ONQ{ZFTg(nYAS?yo{(=i>y&;4t6^bIny z7+G914rMsX!-CCT5)TQCrCbXTCt|qHl_Ms#N8O7%@MCM|*e6iN>(eR*>N|+xjnA9h z(Q{mSMG$iTZPSVB*`hFlHjG`**=))Y9!FJ%IwhMJEPvYs*`*UXH}2M=KmhsINP_5X zfbCq(#F1jC3g9Q6E79DK_g)`3XK$d62sc_P4r&T=8un&JXz z=BABuXuJt*T8*IMFB;&}@3{yjE^C?ICjUxLDJRL1s;Bko#f4^iw}(GyPY>6dnuSYC z1Eg?496{3N+jJQ!R-iAalydF}7?)QNT_)AsNPfJhN^PgQAc&+uiWn!zTcZ~r1oRcO zN8AjM)(c_?;)bv$M+?5Ru@V#>Rt*&X*<8!+e`@XNH}F9_>(0VxQv@k0aPeybkRCg9 zdINoSPt{mw!w6SRgr0SMOjjHnow})OL zG6l`hMQXtO)#O2Udg#C!0cWFNrrK07+P$tWD(uQY*>2U)#ez$!!*w%XwqqO)ZANnA zbYsH^OnoNyNtngr_0^>3cg61Rf^c_GV~(c8fwK)I&YfL6t7Efvr1AmRQ0=|`ZR7b# z-r&cUk2-D+?ZS><@q){(ZgV!l@EQi?XkvVer7QHzR2z)HCXU% z^Qpdn|I|#HqlWjn0bf3GKLxE4n55uGpsizzm7BbGJm~#C)re)`aESdt3%RK+|;&KEYhBNu9n%Mq|85_r46bP5vVA{c(Y8j&yKX#UL)E!Hc|WsaS^ zuo~ZdwfoVJLmzS%ex#Z7dXT#snEb)GT*M7&ROQp6gEwrP#GBdh}f0@{#CV~rx5ATyrSimgd6RG(+N%i^c zF6)R_XVzSO81#F~`>QZyb`hgQY~ptm&BknUhu$H4jX1rrkeiRr)Il#WCFLz#?JMZ} z+XWBZ2*wPRcCGdf^zG5gVssRKsQdav#0MNLOLW$aolHs2U@kX`R5&WuzF|IQ`XK=o z5MxMdQo-2u1|dB{WDrUg8B`w0Y+=>CNjMwk1E-}ptE#(V5rh=Ag5om#V_g_^3fHyJ zehw^f51Ti$=eF|F`4^PZ{E5jB!8}cn$9B}q)=}R-R!||{XQ0Puv%h#a$=-fj&}cfh zN7Gmt^RT9?Wa%h|z!T*i*nf)qVGg%FH3DvbKN6X5(@zYC`!)JVE#hg{jaS)MPnau`t(l z)evN&D2Do1%B0gQ17mPTANI6TatoR80g=c_*m}+kNHanhBw%q2JHJ8?Z+ zkxaqq3+A*}!16Q*4<;vb0BRUYMVz){xD%3^gZrVxrHd~`dL**pJ_}a}F)bxTs~9v7 zz|a$gWu|jD8qXFok#xCs*2P1=>Cy^{PWk zF@uGsmz7dPwykyDV@A6$nD#N@9sF^nH1>Ud^CJPaQD}l149^~d-ho{)d4Un*cP?a_ zKz2gLh0KUKlN!h>{wH2NE-aAmU2de5{GwIDk=V0+lQ{`_31_hrZFQ2Pu7nYB{>l=i zP!j*14rz?_$I)p+223-{)lmr7%Z7yGtyu0)MxJp7!?js$OZypofXe^tbMcY(QB@$M zICd7dM?c$&m0*USl{nPk*<|zmBt2vBq3l))g0@*?Lxt=_Uj>B(GKo~IMf(`S!?k;b zRga=FOxDW;e3>G|M~8SV7{)SS<-__x$Uh%V84C946*FxT83wKl>6Qxl=rq& z=oBo(RzB`zA+T6=P``NvW2#3T=Qp{V`-l$%RmVd{DSpXTW8K{iyFo!>0uE2pO;%9R zd9aETizsAv7rGXlp^B~};Axpzz>@iuyAg`G+Sfp$kYYVzi|+~md+wCF9w0X;9}v0O zt`?R4eY)>NCG(OU#k$-$?lc|#Yf!#vB_4W4N8XMGX_dDJ2>r;gl(oRL?O7W{O3P5S z1_Teai2GvhMyGIqH@7HhMSLCNcXo&SkA{qx9eEztT8G~$)IVaV&W46lBma$wKix7% zn6vmS7Ay5)NSUKRYpIKq`3yt@WXgvwp>kfe-ML{1jWb@wrWlqlnLODnl4G3RQ36m& zI#Jh*c95bVcBNt}$gDz&O^L3UE>Uk3v1xJs^kI)!eux=%PS`;} zHCHK&2-CT8X+|B`N}8eOpMhTmes#9f*g}3$x=%S!c5F~iPS9_tuZ+purU1~V=x3Sl zTP_n?qWJ~78^fR^Vg1r%{M~N5eiPT|htLu0QGFWreI{c4pY^soAr<&vLR^s#ZIGxt zrMOp)A`cgD(Jd2;CCf9n+dh4bxJ-pcy87c_1BL9`D!wHF8ZUM*f~>Nh)RB_L-527j zu_~|Hy~JY?AG#oA;I*3UZGqP!Am4@{8wy9eQ>t8_^>g#5z0Sx_af2s5!&PeeFscWe zwd0>vB1KUFL2x!}+o(}1t4kc>Hr-z5U!>_r`!*J25!xo4#{pm*e&BlRV-ALp%cRmfv2iLZ!lN`IqOMMvkBQ6V>LHO+xl5bp| z&DZ3WDSJ?J`A7Z?L_Z*36Gs}<`BN)xzaH<`094BthVwM>@1Zk_IV8O-%o#ulagR9G z!VeG8W^q8{jjZ?;`AKG+oeyXBUhk9`TMR+KkZe@6Vy^;Mc=q;wqTzeIUU_K+pd{vm z5^%W{>-F{|p^QxYtB0J#>*oEwXiZhUh%*~M1E(Es_}AGXzA$x~@E)!Pu7JG5kcHQm zEr~Jd3~fK!IR@DncX(mHATuj1FTeyMtYOZNhtNisb`*nzaMNjQH#wi*H-t}1t?_XK8O=Q3v8JHQJ6YAINo;lCpr}Y68 zf_ip8Fe@YDrHUO&x5~rTzr{DV3!Uzm;ZM*}U(jAvmJ^8VURl26%%J%~IQ|)mND(gp zG_oWy(;A}PUm;1*ytrqn9-y(?LP{pq|ClSFUw~Oe9s^{+eu~|&=c+Uln(?0%FG*U% zFRW-nESu6SKF$4jg^C$FOMsp^j3*#yw_mU{K8uj{q8AZM&uaDGuwHkD6G?Ucm70P6 z&vi;Nb8 zhcXPIRRV%()f}C7QBw~U;+CR-iTXx^m3=^X5DrFL6l%mThTcC5$Q#X zyFW~-0)Em$xgo4UrE*t5$^L5PW^^fQXJZ$Z%MgDieKyCjk{{vU|AwRIxtSsM&vu>F zU`#8%4-iglNu?P_mfG=Z^cCYc)9MT!J;uJ)+AtMN3YR0jxHHaYPUxEZB{HtguKI7X zDl0t?DL1ki<3>2WnEWe$B)U?YJwrzwClEZ*?n7a|2F_1JQD3{-YON0q;16o#vYl&3 zBT&yp?=BJ1h$d{*r9sgxZBpg(!%h~tou)PzVZ~V66%>M@{P5~jW46cU?4C1pVOfKM zljS@o?$v86`4wu5vsH^vVXd=~7uUDV8Rpa;o=7E73!h&GQ|3#IzoaGuWrPh;Zp(G6 z^VhU;^ZLT3B!Y#n%!qB#qK0da-iEN9EU)13ELvYnk&)@;@7bOhrGOSIAE3eA=$E;N zD}F;<`jkyY(lKAeaIYmUbsyjfFP1;D=r9*_Qu`K1wH>x@B4~t&oI6Tt-$pIFfixh@ z%=!iAcTXODTf)A0&W>2lF$Q}3etkPjg~`$XDXRag?s|;)#ipjf8q-j+wC49Z?H$J) z1IRXpu|VC|J%SxhIPDm@K@B9!aAE}7mt^5-)NX1L_JPWo#;+eszVOmeJ<%dLOh0G@ z%JYYLCzVs@Mt9w*JGi7!3%JADg3G9=8<-a;U!Ls94utckEb~WmuFPcqi{zmPj427U zdQJ(qkdn0q7?aWZ0~>*W=D-iPwKz3-HF6>IFFzIrTjlLPESC%Z+n()zz;-LE@ZWKc z|C26m?teNjBeUVB(t8cu7Nvs)SiJyFU@V18d2KPEob z##;U9d@UPqIK9lK#hF6I#}_4uVKFlh;jPw{#gSp5a}RHmr{Ofsgz28K_Btl!w+E_> zJq6Pewc5rKG){8}#+Rc@vTN_G-gvr_ygjzaHe#MhKaz&Z+}NaL%={7`55Z4@Vq3uT z)3caifeKxPR=-a%h9DVcHTj_>r%3wi}Fv(b?@ zJJ*d~c)+!tSpe$-H#7kbOOuWXD zto->AUwB~XO}n+)uS6Vgt_EvDGGj5B3a!nwt#}~|q=1CAN6mk^;VG^UYMOYB9aCRv z6!1!Oqu~_KGh5BTAACsQ0BwPrHZ9cRw@C&Iho9<2RRxmW=)AMUR`Zp=zyD#s-M{0r zjY?CIQufoRcVX6&HxC4GrllLu>|))nxjlPt1g-{#jAm1DEq6d&kE~JBHv#N6R7%uy z1S=N0zDWbfuUF0Ezq`3N%?qn ziScUSO@1%Xu^K+aK52(&9*f_Fn47_@Cj|C5-MQtUnh-QH^rCoTRX^Q@+g*5BgXgtl z;?x8)>(TW~8CmIyEhAY*N-MKBGCHu)aB_v%D*85o1X;6r)@UUJf5dU(Td~m&#-|#s z8Y$`pdfUpseS+<=D#0W{=$O}gzf5ebp&0`bca|6#N&NQ6JK$#>VBzEFLfRvQ=vyyeist^a!KT@-alu)CzM+S@&R0$F$Lwh_#oxY;$F z9n@51;}it-3!NU=IUFU9zXL53-J{Z{AX4(|_fpwAtEW(n&I7{=Sx7*bWGy__3xbk# zV7v(We4%q{R6R}j1t|xiNgQjio>sVa#Xen9`;uRadlzJ?9q{@j2Qc# zul)`&kykASPk%Yy`6#7nJ+(Y(@|(KUtTO@mf6ss zl_RU#bYh<;nFLPEb#0OyU!2HBZbOAn)zG7nOHXG9&bn@6*D*>18k>^r&>FDmUiZe* z8Pg`vvJlBMTqV?AMS|uzK53ZeOMhq)c6>434iQNFCZJh}lV+3Acdjmekpn4EsG;yh zIKxkbX>CQHUxtY{i?SjYVPt+U3j@c0r}}6U5+5;G_~p0AG$qQr|+rp zA~)c@xReuvm420OCUAw)?Rc(X*x2e-l`?hBjpZF}k|nLi<}_zj#MBW+jGmq3;kCVp zw#x)19Wb|uu166^EKbH_GyW6W8zmFHO}umjD0& literal 92785 zcmce-c{rPE*EXJRyHy=%tF4xz-EC@Id!As0w>-3Ap&({g&Y^5U3{M z@UGK-;F`zxo^=2SbZK$#XWuiI{pWxWF9d2o47}s->J;b+^*L|u32_CZ)vJ4fMR^1Z&um)~3GEbVCYiF|Dv)8D7k3-x-#7LWI0!qEZlOq*H3t|CQDn|Fk zx#`liu8Kh~3RpT_L{kbyqYJ zRR$VGc4L4UYiXA(R zHA6on=wW8CYwC0_=6^z8CUqCUuA4Zl$BL(sz29q|u3Q5W27R&vJ2UqxN^&N=EX zQuB3O-M|&!l2I`%+etYii7&;ycz**dGC>Ji;LibjM^+}xuDB{v<+u9b3-$O*X1d-} z29L&$XShLyDmgX_X+JYH`X?1?gBQ-)x{2dAZC4!B`xsrv;f-l-ZHi9mENFSV19)5} zt|qlR^!`ex%^_yI+zrbZi_9(*9p_9g!CaFjPB1q zo#8V+P^VefQDn{EFPy|>M)1f&P92HmQKBZqB92G%yw>u?Co3kahVVP$RK*P0HZxpl ztvARoG4|D8*mM;a*>3;N)1@>;G1O$uc8Z`&2YaTm-r-~hlJ<_##pB1W;Xp#MCvt4P zrxb;r$SK_5!;+nq6k#a*+!JPBm{(hf?Apndh4&zG(YykW3~H5VJR$eW@W%HdO<0`u zmd#q1|FKvEw-7#p>}dv7FRs!2$d*G}R)mIL<8#yWbDOU53>LP$QG>8-?q8Y1IU}$8 z(NByg5MnzXqUkNpYmUybi(k}~=({VA$f6|e;1-^E%wO^K`1J9XO!f4xbw=7%I%XT3 z$xx}Sok(!zbd?8-pmoxg-0t@?kE>zRQ#Fjs9h&)U??7s99Ph2QMvc>zPrEw^z&M@` z(0qOeZ!H1GNEn^Ib1WlaNruehKE2S|Snm$edVPwDw5Fq2seff_dow7Ibc{(1u5ZT; zjhCoV>C8@$D&;|wyo=I^DQfGqt`VP(FWGS&89WO$X1Xo!zfP*-TE}7HI32Z-Q0TD) z{hsU`v%Xko&X;9>pSdlU+E?|R({8rL4@U_!VvsV+i+uwfyt*Qw7I6v|qtO|+y=(L3 zHo-u4$`#%9V|W$nF7&oS11rz;EdR3naVAI{E1P2Gew*3yC1oP?k%lX2Eb?52NVBMm zgW%x=T59OI-gsdzj!=Tqz{HwgrLCNFpMM&+m`shT^Bit6fm4a-=x`K`jiptjJu>z# z9k|}>)c++rHO*U#^rgN!I~G0Ecaoo0 z(km*v=*%d(rX@5g$ixaz6C#N5q4q2BG(lVy9yOtIePyYpSuu&5`tggO`*I*ksD{)} zo*T%pt-ZO>8FPd7zB@QB%}tA#!m`_Cym-1D7~t|HN0utz>y>@aj;+jerEAgK#}D%_ zK#UbRmquJ`izZ}h*)_z)OYPaI9X?5+-mfi+OHr(AN1C%=jE^7AWX7kE&aE@X^YB{h zlWDHk6Xtr4w_{!_lp{rj+ zAEL!l=`P~fY@{4&rMLn<+lxCP02>Lmc2R=VL3P8~I^mgOJzyovJ}Q0V@~eUNG(+!5 zH;0;x6edN*N$Nyu;d}>A0%blxMC|2RdV|q>4|IE|_iEQ%+?V-Su$&e-XZzz9(!@p! zPqm)9m6RX;$96>XT2f#8LJKxK!6`drRnV;obF^BF5aE-&U6c4lI1plL{c~X* z^Ze33@6Sv6z4`s0i^rFF6aRVtwBpOH6aQSiNmjo1+dmf{PyC+`au-WUZ*S3<(KIYsX z?q0@zwef`N+ey;FB0ChOetl?%=qYpB*{wF?#kzU;$W2n7?ZuqQ5!oW=%Vsks9F&`P zU!d@61boS@a@*yx?j62>kDYBz)@wUe)MEz+JK%PC{rYWd>d(Ya?^*`TSeFf9@3b){ ziZ7UoCCA7T3#Ish0bK(hRE2|rMTiSBeyVo*ddT_EMUnu+Pn^Q zX^r479+i`e28*T#uC`fak937DqId1)=jY4*3O(a925uZ3NRVon4qf@2tJ#Alq|T`a zg1bC*2`)X-j!*6{)ozDIY`jZaQ@?9tEAXBc)QVC~ z_+I%NjQH21&5`2~&6``@l96=J$Tf!^o<(Rcd&?M&I*O~OD`8*o2K_zt{PT3p#LD*X zVKhp?q)6S=5r2*SpvS!bqX!oRs`_i1hvd9Qu8>4PcSnBK%CD5?48GzoDtqFqMY~a4 z;8il3XWv`D+Q|nVtL4u63#FIpgL^-vw8W5{G40lv8Et4RP{=iI9eIc>!+`4<%~l>% zE?1+#6YVmi?;WQ;TogN9o)elSXxcRdc3oG;CF>@{q=K?BPgq85PmNsoMc zS}jS|rQyI7O~_EwHSxgaTA^LBv0?-zf-uanO5e(Al=zr0IL6j9&ZKMAq>lF~sA*Qb zjd7P8-+shhJQ;=*Yl%z{3w%FK+WdS&)O=&;-M81#mGeSH{Z&TuI7bY!#Z=d>#iU*A zs6|_3#Jgf01@pDB)yp%(WyT_!@!mW^D=j~Y({~wW^3M0*^R{=|YJ!pU*3CC~2WpUT z&rg*`A9!#Ewho`SB;e{Je}s+G6ArQ4mAD~PKa2&#k8Tg;$kXD+w>_#JmL`jaB?Mm! z_-ymOq0MVYWzLz5dh5fAToVoaY-~IN3Yc-=Lnfc-%3I2K4y&hj!0OhQb4m!2rn1;= zjnHR1eAgqEH+wh4H?bUM99^7P5y#RJrmn>*Oj`H#q*g$1%*qz*&NH#yZGXgBjk_5C zG7I(!nnuWXEV+7GEP{G9i~aq6uyCn@M;9`FO+a0sEFdgrVal5?ASma<2@|67H~u>91V(GV}mN$hcpF+aM^^V}1ZvSWRx0FTIqVV@_-eUOP&dC;!}fNSP_VJcNKix0rz`FFETzhS>_YquiRo%ESSL z0s?X|>FsT&LKpU4rnDW6f}9q<#LV09=oo z*S0IE1!_3^bF10UK3sGHcq3^@8!fvAvn9eCOrQH`SdS`U2MOCbXz9vg&@n?I8XB^y zeHb8!+%8pzIfqD-xgBqyeH5{rnA$3zMaa&#k!=t=L+SQmxLQh9J{VbRVxelb|yZ8<|rk4 z(_h@KaM&^2L3jBE#=nPlKRAE7D$N#aZc)ZJgVrdQ8<>n3zm;ey+@gsKSGgyve=&8} zD2cmjI33xw^Pzj^*cb;K0`76;w^$!Q2nL(hls`ZAoZavsAX;OA-E>KKVI~TD?h@nk zoa#K`Mp+mvO_8(2F=rD6%!_#he>SdxH|A?c$q3|<)|yuMZU=ds{U|BE#kZt~!+_hs zs8eNEg{q!`*}5)Tk*#`6OaZz|StCGA^;+b)OP!P`^6Oz}&XcSR~r0^G>ilqo9@#INT>IPkx=@?`98mA9~X6Y>uS{+OE?{W=97 zv=wE(=I!Krb<%L~+Zy`;&Nx}ozV-Z);#KKLP{;&adbAJRNgj0J6w|b}E6ai->~IdP zMi_Qj{PgxN(I{~855q93`PQ&YJXS zvzD^myfORsnzGAaT-3gtZAS!V#~iWPro#9$oi{~h3RQ_zh)jUb9JFX%w}R|$pzFt$ z1&-#FUQmiKo5N=0Iglgs#|9Wi>CeNbNWHfbPp{W#SqR0l3)94Dc&yfBnN)~oN&1l1 z*ou}glFKoBXaVZBI?6}h=4e0Jgqi!!NY*e+MD_?vBIqTq*jYw*Cza? zakgKr+~uf&U9-cQQ~E#`QI&=L&>lpOuv9`}?3Z!YmXRXEBgdI_G^7?z4V~V`TBi(k zDfsD#CbNFD+t8-u;g4r&O>Efmg*M*Ahh$>2NP`Ir%{D7<+ti@IKDDIEhweN*;0Vv6 zi9AZ&nHN_x(bR9}__Y-su`5#2+PzAVBcuC6MRz{&lxasClC& z=mYQ#ef&&pNNEGqwTJ6vmc8-5^IrL3Z(iUa`)(%CL?P-vaoOQx>Xn#P7~M#<;5(wZ zp7BnouEswzetWiqUibKrdscCtP+Ku+!Qq229s8uzljT^)T;3nXCPPccb_YCr+;_U3 z&As-)*NOI-71Azv27TUlqQH|CVTtJi2aQgsE+mM~^BD+iVn`x}q9{E{BM61R)PTD! z?5zV6t9n#p?aV0x?vHP3YeQypMT>>CGNV{n1s}>S+HO8f_&S8e3ZrF36zX*Tk#wdY zhP2?-9-T1u+PE_~@xA)!B=u~i=Bjh$w49|bYm>AL?$Xh&(aT{~y@c$%b+}Hhp#Isq z^D@VawScKPrn~AcGGbcGyG+?K9D7~fCO~}a8B;k^yx6#g$QD(&0$NsFSstf97QrU8*j=? znibY;X;e5<%}V4q#3LO7G$*YxkgsXbWNUU0aT9w7TB4f7&1XlRMp+3Kea2{w1c*D7 zO-T`_nVZ-ctr668tpdH-%-PAww}Yur@uVD|6IO*%;l6hShlh}I@`HqgMkmeZ3?Sff z9)9z-6X(Ioj9Kc2p5C>5!X6jswM*An6oMQ23%hva6) zOFrc^nCS*Kyl&>e2-IuCADGe)knRFYQ8>*!3>Ju}?+9+n7D#5-BdRQ^qMRi#Q@+HN zx}409G*G_j{AD`2)t{j+_%lk^B3+`5OYcLmfb|;L2HkcvAws)cYui}(OaLl=_k%{a znti0Gigp2qu8kO9$Bnz6FXkYMXfj{e4t5*w>57VFlmjP0$AVVce|vgwC)%rWKuM)> zKX$Ht-V!<7#5Xmu@#(xN4kO^%FEqT!7wH(0>8ZnkNe_P&PVlt<2z@)j>$OE2DD$B! zNMx-TJkyUgSB1V0X3e+XZ`1bKc|28?Ua{RiRTtLgwc$_6X)gM>R%#5^AI5oI!{HO8 zOhdcF*RHJMk^K$b0~*4cLnuCiD75_0}s5^>KV0TU#$x&4YusL>fKX zXpA1rvSlU5*3ronxb_J}VJNJypWtu$5wez5HknoYEO9Qg>%vb`n`a2aBbmJ;b_xT# z-Aoy{1+l*_HeZUOw|+Fm#Is*@hJTYkbtFWrleO@NM$U4bfxY|>Fje76mmJ~U@>)`T zRR!!x!Rs07(V)PWpR$WWX!c*TMEe{)mVUFVC~hIBT|wF+QgV8*h@{qvX+Gq_=G2u7RyJ1W;RRWmOzBWId}c}AX!TnTe#s<*ruOMiL&8=` zfL7Wi@{^p{PVl$senP5S#vho<*Okc<*=#?OpT7n9wEK^ybBoV<96cy8Rvve7Oas;tsLfBjtT1&7|m|gEmPLZIMCZFkeDMdX3pSV(S|+&-FV%Z=$-SP;@5HIsE5jw1w2`LszOd_*Y=_to z_U<HYCm+IE{p5qb8NE?MB<{*99r*WJQf9L&S zH_fU>XeG`QD1^o&ijlSj`yJEs0%zJ&(?>EDk8_Vsjt`+31zvA9U^LuurMd-qPsVqi z<(x6ch||h4`j0Oo=dyG|d+s-kd(B+HcYZfX<5fw(byMVSVzQVT79l8%hS7X2fyQnO z^O=1cw(@Ey%zN^Q28?Z057}y#pX(5pm+fDVf61+xcdE-^B*~?6O!$V5u~9a1Y|TE; zL3A6jaE-oE7pHp#nIQl8dlICJ;WRIcsP2qdTf+8!Gyv2EiTCRhmqPDf;}rXKgi4$V z`baH9sS=AZJ2t{{UU^1FHdbI2uiM!>yqbj2Q{cn9eWtQJGZ4o4$sBJN>5fd0*E7q$rx|Gj6z}hda1(rXQ>C$~mV$Z6_rnUhCrfje zpC;z0*JMraU!I>lYB@HoOIWk=l2l1L4f=K+kh7kOl&vXc54LoOj=pMgwV`Q|$oFfh zJ@0DdHb3iD;Zih=9vxC?yl-5Gv&;xM-B!_b2hUyoy*nhcZnWg(^EG9_TPa=&B?%kD zSw-IT>p{LM(b;*61%jN7!|4H?kA$~LTbr{>W-fr&jQf~R9c){wp7S9ad;H$MG9S}> zg*sKH>3h%CCjiCm*?SH0aJl80sZn;U(kq0Qk+QKi%>g_&2yNH_eC1iDk*i9IG#;6P zKu>-_I?_6Y?gWhtz{^isq3?fg)OWaOJm;?b$8ryCi!U%YKK=JO`XK;Y)a;-v)}Ja9AhZWd8Gna9-%omV?t6iUKt>03XbSWak0SzqZHV`I%=!n-O`qomIlFRh!T!%x?Ey*+3e>XKg{HF zJ)-HH$+a1YKZY7OB;Szk$xh1ES*KMTFT}t3sJg^6nQ_BWWh@LVG6n zRe4%gQA}H_5s!PHrvf?HP_q=N$XV%BocW^qq`#eTWAl=5Xi%9jqt<+fYBs_gh1Joj zq1RgT%U<86Wq(umc1h6@N!naK$U`sBYc+`|Dk_0(|4v&S(yDz}QEBWmHb{jR&R(K? z#q3xKs!1yakOrq6%U^!JwVd%sG=rbuSl38C^zxL%)?fIOq`{oR?*a*wpTxN5#*CWy z_c`9zHm%lKRvz2amkEKXa#wp-Sj$>LkCw&dug-^gb>iB?wmPlkgRA5&n9e;yu(0j- zyYjl%s)?j>-+3;`*t)J(ksFnZ_s_ zNhj91>&ECzhSwfItQK!1YrX0SD-$A48*MES2|Kl8BcwRT68V0K=`ECdP)|Di>g|m0 zMy0G>E<#aAp<`FHV=<2ma*U@9hLrpCfN>cT)@pOHs^KDF^Jyi6%!fq?M?-jjZB;dV zY6$*8;g7^6D1wRNDz#m^SV{S|V1H3Tb4sz)qg6-Bx)PVYi;~N$+*5*{4(c<|{GelQ zj%E{0>InAs14N^2D>ba)kmgSnM8t++mOs-|I6I}(Yr?VKeUcP7tIr4i5sFoRIWY33 zIeRz;u4){%DOlNzp3?pz3B{KUXd?4vS}H=Om?|{m?Y>0#0!jXR;|$miH?z6Jgui|4 z&UU7RN94T3gwz~Bhd((}#a5a|o`voj6);2Um>h0G%}TDGG$XaMljt1*l4)50r~e#F z4V;B%k2JFf`b+=%T)xv*g(Ef>dv>-}YO2U(+ezv=!X9=-I_1-MX+ah$W*Q+xX#M=R zCx+}XmJ};V?faDA#^?-qIaV@gBavHPY{IBlx}+f_ik_NTb{4*?(|hJ4dFRuNJZ!W* zU9q&FHU^4sYE$ssMY0RdhS-2G zC36jz*|uwPXF97Ip-izsu;-}hTghk3;H%<<-9*-1+hioTKb59Wn`20Eiv|E{ z*bQS$#nSVf(G9+7ypOO}NtVELF61Ixmzv$=*lyE_bltWVq!URB?oLT~$Dp@88g12B z9ASM^hZeCFB2NRmtEl0fiR~BJ+wbDxl=~QFs|>-c8ObD0XI~OmGS;qz;@3HKJDXf` z{J}Qqlwqx)KG>nUr7qFhu(mAC#-47W;;S;6$opCimQg%vaec~y%KZSiZnAz5ya=c4$ERJK)tR}Sta zhi$wP(;&UIbSt@y({5uHf|_O(O%#RyHR0BUVsce(fpCuSduFedJo-~x1z`D@!WkSL zp)JUywAHgAb<@ZrE$iaxn?J~^p51NoONVQ^HS8y#sik3)m(xSnER1H}ufr;JcIj*B ztc70Hr4TJWf17q<;3M}Mog5`=6(JFv4~#%0G(E=b^f#GbeBB%5;h7jzNo=a2P;Tca zPQl(fz;i8KI1LZvDzW5ZZ)Qyb_wXBSv+X_;BkC}T@}nbHP54P!DJ79#zg(Zk*I zP-2|;o9J^ppKt_=z-RG0`s83Ojy*n@iH%lpnUKxeTtr%&$nYjlGrzhLHe;IWz~8jf zStG^@mo(!~ur1GV2v7ycqAG?l!STxmmxIYyLFZTcXisoCL;2i73SRF5_&|S@c(m%R zGO9ZJg)8?(^y%XE_BN~-um9dbcr8LGTADL>^gMWX`CjFABJDIA*qEE5x@dhyhA)X} zz~|K9plDuyeG zIio1K5OUFyfM<=|Rk^;XEAWEuVuRtQY|OiiadAcncsk^zC-peBel#YY0c-^BR_mm{ z`(Tk5(yDF`UJVgJDUlDS|D5YpaN9ga`-rne5?HPT8sRyC9<{dgsChF!+&{_9V7dB% za2P{BY&Bv_CBb<^hEXa8XP-oz8FplZ;$OV95teX7Lbf6dGkUek`CH|bP_?0J0b$?Y z^DRHhQ1ltmljK$-_80uuZJ<-D(7kP-$%v#P$9H){Kc}@8U*u$$?8CNy5DfOD6vvNt zqL?Z+!l-Oil}v^Y>m6M^<8ko>WMJ6T@!OFs&{mNyI41N}~!ZuU4dvolmDC@r2fG=JMtmi`6 zCp_6=LtJe$Ra zO3OGkZMDqksi7=d;HFuI{3ZfiC$+{e82Z`#6yIvGCT1fOvULdDyy*nt=qLI;jtue* zsKSTO9X)DO_pjYEH}!{bN#1whG5G3GXE{7^=ce1xe$`o-nUN3c&$EJv%e_Iy;QnZ> z3#`Y53s{Ai$#PoGlTXvOwtY_h=e7^Xw;lcb zlBeCe@9XE6e%f~OCH`JGf4*Crux9Yvx9l0Uk+-3nSJl6h_D%=LUMb_gZxg8voHMxX zvvBN`$d!S~tLVQE3Vb}Wx5?~Vkar(ZKT4QY-*ki@RSRnn3~uRE+P#yTS87^6`U!CW z^xfPABD4&i(9`9KIAlEXaP1-)9LmQHx_Qs9NeTq|>;q&wMiSI>Bkqn3y!%<4ojiZ_ zufG6i1`gRJec;|Z=8!9{x^laBVV0uCDX<_p=3~+@3)eqdlpQ7(HGY-Yo6z}Y-#34M z_h082rn;ht|8XSZj~D;Xjzs)D{CUawhlMJ^0{@x}=sfI)_58xPJqV;qTIS&o>}c?l zkh(Uq)1x;PIAW@btQ(2Ms>cTi2?S5z9nRmYfU?gI+}zZ5)o_OaXJcif0I?p_D`Yh6BMd1M&V;#`TdXo>Ij_qP^}E{sd5t#DDQ64`UrIt22bVO z@OTqujmwdi#Ibk6PFaf@Nmke@`8D5R=P3{ghkuWu^^5*E`>M61g5-?^Tv6m_cmi~@ z_|(=?fhab+@&X>>dma+=ER;VwgJjgw=<&ofea0Ru#TQFU?T(0tZi!Gqk?S z9g8rv9++_02YPBSx93Zoe}KPyNeGmgiAYTlD(>xyM`$?R5LNHzHlg0C`7x}xm==PC5Q zJauwh;8VEImXDN_q#1(tDbU>zfw!{sil%*%$3pDJU2S21p08dGD)NG6$9=Z{{a=3W?X-fb?0o}c*x*RA z_H{EqA#RYLx6^~P{d&01E;KcNH6c})l9pkHC;c`}LdDqy=(CVEa>`43NSUH@u zR&bpj_i2wip~;#dJx{XKFkd2l+NUL$cwZq>eYK3}u^W@1N7gX|0F z%A#R&lbxYbE4|!zEsUpqHZT2q036#pB6P2`p*nQ|Azb0v9=rLuD8dFsc}g{~EuHOC z0+B>+d}Tjs+A_g(9$5y%e=3MR?dKkk#8WmC{}}UgILzGGXNosN3uzn;J&-RWK~^D3 zfJbNRjXuD!oe&}n~Bm%nb-xP? zob!a6C8K?<_;0@B3y{Rq zV(Bc${AosG*iK~x0aiVo7S{0C&yB#0ml^sxJ58u-))|vhzwM4a=ge6hQjb3@A-(cB zTMIeYa+*FLP%e&YzouV==Du}dU}}!G5v73zn|8;J`8f$Bt2ZO`J6jaX-~ykqWOeRS zKoW8PsSk`O-gou5v}$AnKrD66W`%ffr2nrtkB<{t7Wq;cpI1l4E~1n zqs5`My6deLeD)bZq#>Cyr@0I)Sz2N)fxRCTs2y+7;Hw78?d?-)TrfD78*6-J$V&7f zk`*nO`8Q-v!YPS7f_Cqq9rJs!?VLqJ7}}uLb0Zl)=r?C0x5xUiBff`V?9bDp4kVe9 z_2DFf)AA-5c8m^Wo$gRfxKqMKIQz@~dJSL6j4n(}%+5?yb!^Xe0kD4iy+Y0_I6dYF^`*0tr1>PvGJmAU7cxssta5RjBf!YMK|6kQ$I=e zea>#H{%5@(g5RsM2qG^qT3-YF9b_EG=f37>`Q3u>P4+DKL7ns2As1HiW!a04pqo~| zf;lzquy}f`SGw6B-jYbe(2-xDD{8$j&?j8Pz#RaST2)!grNXLV25)tER|_Jd1y=$d zaGw$g{@cy~0X2@A5x#HH&tLh`2>WH@P$`Mfbyew={6u%OpWnm=Fk}lhz{C#(3f#X( z+*xjs(~;AePIPXY0MmZ+vGYKhRr&yjCR^dj^E7V2sfR`t<-uEjszM~nO|7-F_)po{ zjYny~9lG{-lw|pkczpA}9gh@0`;oSGdz_)cJG-~UH~tmQykEIM-)uOop*!Pe3us$b zTOU}RDMV$^P#66#AQ|5@{UeZ2j$!dreJ1iwEk)LqO1VyvE+A~Lnugn({kBco9ahz{Qdpwg20u+E)9so zYFdPhYXjZe$4Mw*pSeVyG6&>P{5QgP+6H5Y*G%`}#)>Ycn~)JF>gPlJt|*;$MaEI~ zR(<;(3lQf6dJ}?Q0F)4UEhiLmvQrLpp81ObkbTAr0@CO5?Z`5NWfswOPIu}7_FS6n z=~-SO8LRu{V%4A}3w>vE)6>Ps?PeJM<8zAAE3y;QfuTk}-0e&#{f{vY1;UkkYwb<# z4t~!7&atLdDA~jK8D|CPbe%#i*$G~x_GKBL)B!0i;&Hk%($$|~5dLcpFl)F!2=ue- zuRj^-Dz*3Ky0%6)=96tOstj#avyL=qqHsi@7LyChW*rs0k&kBW>j?+RioV#P_t!f9 zn#a`iDqR=mv^G-`CrLQ&tp)_A0s5kMC^isNN+4!C`Z+=ku<{dpYTz~PcfL~glep6WUA5*(6KDy&`Eh6xuRs*S=n3&H`4uGES zmEDf-p}uKQh?GN%88@F|NojXzepaC0g7_ATNs{c^A-nEPOf;~MTZH+`wtGcejD~1?*Q4 zfptdvIi;4;!$w8@{&7!y@DogUnwRcFYG!Genin*4=I=p zax6tkflymabB^I;g0Oq7RBp_ED*8mduBRmEGnnO46d zWOyP>?L;8wB>)r$DMxbvCLl`M9QEX(sM~o@9A3ZPNJlohnNzpdBa$>lWqjtYOiBJH z_)S#J{saA&i77I`itPUb{0u0WlIiA<1N`pg zfw}_s9+aOk=cPUn>cq}u+fC?JL**EdrL|pwX92%)SKa>&bg-U>WNhMqRHr=gi}uY^wp*f9LU*&p+~R@3 z+FQeYvn<+Gk0^wGK>HLmQ1Uf9gd(57}t&E&~*SC zUX-J}THbbvpz4kjg_7A{QGWBMSwu|mhcYx~wR8U{?;efY8QTu*1EqEBb;xPVFuHq>Z^s#(ij?zRkN_=?XxOjDqu1=8e;4=UGD2fs(JS9T%l5rVLVhX`e#7iGO=_4K@Y`oLnp_St^) zf`p=FL&D)Rl%VWay(X}NM0dj5@4=5troDx>OwShkL}7r8n&2&D z|GXv^`i~#mXM&$tKv4*0Nt_uPU|oRXPzXu%;>>D&`yQ4$0D4hIE+b;~0BHF2|AO}K z)?qaAsQTQTTsn8W==)7Z$teQaI7TnqQ+MFngyQPbjBoP4?i0nPIQZEjf$}r8B#vv3 z7fe2z_-CpC<%OkFWa~zNe_*br8dlf<#yXy?j*HLkhQO9)vahaCTxASch#svOnP(325$W1^$gAQFMtt0?*IeSet%VzX+);`_R zuFOD<*RnFoCptR3KCULL5Usjww%m^hesI8V7WeklwY55EKHF_t|>j$oC1-N2#x7c4w773K3d~*n7RQVD&TGB|5vU#5KZ5~P3JDt1SyN* zYAx|(J%{0XCDW#c>~{iM#JAmk%a;F*iSZd%evQ4S(4992DzIX{b0tJeB%a-*s-S=d z(5zJ`I?{}esQTJl$)_!*hz)-vCpy{3-O%&$fECbmI}UmvwJ1k_Re)G@JGr6i$7P`6 zDvTxH4_&VnPCNGtW&g&Xbpn)OdoBKyu4n z*UY9s>Urpw}u$;u;i#zKA|8_&beq}N9bNit~E3vwoXc#&r zCAqY7=O((gNQW#bS>L{MQ-GxSZ&=O<-p&$01CDdZmo=I?1cMd)lNddtV-CYGw>tKL z1}zr;QrpAfl|PgBVZszRYjJ1$aooHHJK-aTfJF9pf;^3;6vAO{Kn^==H6*zjn~!Z=|XM(x?8>Mici zQR|6z=6H0;Ce(!Tst1UozxWo??EnfO?AJ|QY+FD(sLL)-qLhdmvkDvMq;Jiutgy&5 z<)g6d_G!_B0-gH)rq(n0!)*W;{GHhM+W(s+5kDFp(6GIub6~p1R$fzzXR4^0O(ECe zy1W*>95vS#Y?gzw7TO7#903N}fuzS2!_I`37aCP+2Esok>@!9CKK@>lEnco%69aY))k*asF~zHA!YK(*T5T36+h!26T`h(Dm)hKrp`R zGv>(rZ^GAGl;z070n&2C)%L*ol?Pd}POr+yg7w8y(Kmq_?@bjZX17m&e6H!4I@(_- z_5Q6&l26wyla@2ZF`u*Dwf-dwsGZoaklil5LgWHc`rg9h=FYDGG;?M*5ukh3jwpxKferXO`&uj*!;-BXRhGe1y=<3XRpgE_8MI4rZn@;(> zupdWr1CjGniO zq81U+Q5fnT7u0k&bpq0@YujpAWKwy9ZAwKz(E;(jrY9}6x+|z~rmy8|0BKgXG4j3Y z^M?btQK17s{}bDA{l~<>{9#z;7&)U<<`CuHe2R1EtmFW1)#dxKN=rM6Wa)2 zd=~kyDZiM5dnvF)cUSa+2R%>am;qE%cd}V_d+~v3P20&IjK5oi zJ>MBHUf8Rj|DPcO)C9krsNtyrGy>TwAFxX(ATd0WuJ(vrhDPqRg~I!tbl3ammUqPL z{rm1^srtP_S&S^N3Mi4^n{vsAJ^GVwIqErDr8nkx3wT1_FOqb5#V<=cyZLnL)qjFT zu-MOOpmwHL0B8?^0@Lpnf>eE&N&lyC=gLsKY4!yHLcqTu9!;J}T4u;&KXM?#Z>ZP0!`bGr*D%&omag)alxJ($?T(L!WypUUTE-wo+=0AX6=#7yT5v#KHFW8 z$+=Mz8g}1wm{ef-H^PH141AaPuMmIdd#Y1^<3ut|N`fV1u9h#$yGJs&dG7q`{s+lK zHLE?Ac{sIba39Fg=1;PKpxJ*}f&uJfyep}@2*`Tw|LAFIldtvEo}HlY0?}G4HQ-7@WvVc|NyJLr5Vl}svQs;1Y|qyw`H5O+zgsatYL#9IrH27=M5+f0JfO(C zc*SYJ(R>GBrE_$Evl927D?L8~XpYWsxs^5Ks$bD1lA^Rk3l@OUvlGd?jflf~=7i&b z3RFAxk7M?#f1nXy0~nr2Ays$n1HC!4r}yMN)?Bm;-1VJb_~Fq}q*poNFt3hFAvTo! zRF!c`0PeE^-1>^Cr!JuJ4E)lpT23biH=Ifi{{8X_BNos{Y_r=%fTBqEmy5G*u{IRk zXF-O5RAz-29emxNjFp2lB4Q6AsVC?SxpyzafqZl#IT!#kb>&}Tr)RV+Fn|dll>tG6 z0yr0-mxiG6(aEd7j9<1%$s&diZ{F(XgwWo(k=u=j&zJ#rEBxE~7JnNqdC&Zp|FK*U zV8_W6;G>d%b3nmf8`lBp_FDyH_(Kcg)CD1@5Uo}V?lQrVceBWM|M#nYYP0MHb8>` zG#SU=0T7p9Wk7(`20-g?dGgx^)n7jN$)7Alb)bNKppd{RhdtZ?;l!To1Ok+D5RiW- z$iEm2=*$2rkI#Lf0pAnIdIR>d$l{^@#oBv-HI;R3!^}9!C?Ymwlx9N|1V-tEVn;ei z69Pd*Kx#w?y;wm&K)Q4g=_HX}Lu~XWH9&w!3pF5w1Vf4cKEau1-uIjD`>*f)|6E=p zgULSotiAR+Yu)#~cK*rq9E6g(pD&Yhog%UjVZp{WTJ`mbrNVUb36XQNnNCD|RG;Cg zvO6D+PfbqVpYJyn7Ey3Pw3gF%35kHY!Jw1{5OJ(@l1w+P#HfHOMtC=(^|S#XSaHX&vWt*Y4l{% zdfuu%Z|Uspf}jIy>*zfk)Iwsz&Ce7f;cMwIF9dy3IDy|LJIyD76@94>2D>K!fgxb9 zUHjSyVY1;x$aYzrReA&L9b3K+kG;}5f)xW`c!x|fFviBJ)>KmrNpiu2YH5CYWdGGzs)c#OWRiO@t z!T$eD9enVT>chfrz8VhjBkT1_$rSq#n1b!uP5;Yvpn958R2R#IE{N0n;Hf4KrMGP9 zCD3LD*|msLmVv%R+T6dsr}E5h@LmP$kBmc7&SP@i`y>pe`qlYSeR?A1y7nrz0*zHH z_5y31>RwxUwQR#aB`=72s>2C3+#nR~L|Z@6!r;)y{e_Eyv0mYzTn3Dpm0#GROl!~e z%9I+b-7S(}{-z=EM&BZ`Cb|crCsgPQMJ>(kdW^Y;hK{)pQteth0gT66@4a=ne)D?EieXB03v2#OeJvpgo} zobHY%?9`77& z{=+yR7okPd8lv_Kpc$Wz8M}!3mw!w+w$V^IctT+@*~ObyZfppT+=P$%15{%4Z2x?Y zX8Eby|2kjopYtWh$l^BE%1M{QVLr)Q=moiw%&vt8QZNBt7A(LY>vE>S*UFcMG%i@Y zlaiPeg}+Xd1m)q4B7{m8lG&To)cMo(pRsSdKCJzgl~ZOzs=U#uaNdl$VtcgTeRN39 z5hBlZ84?{caC=O-;{g6Fl|EfD|E1&VIsC^7pJbwYWti(dIIb@AHuDM``)N(Cg7N^+ zxj;7E2+1Yb+|;4+p6|!Mm-l@x$?{w6uO%A>VAtAdy8ya z#l}YL&llM+khYCDmQ`>@^UFCQp?rJC-c)y3=STzXbhc7_1b@MBG9S(efr;gA#s-61 zLAy~~?*({vjixtf=+e&Y5s|pu$Ll@`G4dl2y2|$GJOL(a>>9M!Zt#R$wuOpMQ0AcJ zA0!t!zps}FE=pQZRSv3S+(PHlsMFFttp+gFJaYUjbH>@{=`k=G5izhXcHV3E9@hPP zxQw|&gW9@ZWd5guPI=-&9&bcx0T#MbV5G<86ckI%PurQj#K-dC4DJQ9z@?B8OYUW4DYi$b>lu9Rpwvpj<(_EA@W=pg~J`v zCP+?ZItTDgRF!fhfqXUSmcMHgunB*=g#Ol;p^s#lFF#ng%6D{l_8cc{1zI;OR134Q zm0RxINtb7&5pi&h))s@Ff!q{nX$ZFA@9Wc!*{FPXF{g*|{`Cd=J|owyC$jV<4-l5X z&?zZt##@nj^j*@3O^ocq){$us#FHxsFydEf)+6^(;l*@g3CJx4hHB+0vY$s9s-|e0 z!+Y{^dI#wKtun0jMnFOm&}JpF5Sz1E%f}B2sO;l6Etj||TH~E2L~`lH%rmOcs9#LT z>u%uhrYk&r=5Kx^lDs4D{wBJxHRjF$W&X}SL_cYgWiy3PNP@w3FC&7_7!*oX-oEVu z6lDX#MaqhmYJuCG$1*X-v#vQW2~|BB3)3}n(6WoP3gA_3O)={rY0>2^T$_SV_Q+T!Lpb4qk`B+=~#%XiS- zsO|Grs(Xt)eqRI?#D%BpLomMfaMhBDcWEdX?rjr_Z+N#)z+2Ng`X(SQ8Z30T8rGBe z{)?O6asQsc9~>IakLG1o-cyTvR{0!}P&dD_u<0+<_WM+=d1BgN?p7bCy}h#^ z$9-)*$y{WepU>chOi+lHSbbSIE(O~o>cDGWpTHk_6SAu_;~--&{LhyvD#WCL@btet zP~tVV`2lNZ{vK-4_B{=`)KA`$4)VL&pojt8B0`NXd-Dzj-G^UCFZzQ6WsXW;$^_~e zq+yB?CEtxdXcbtOU(6zzL}@bc8QJq6^L}Gh0Bk2)l4Z!_38yIh!Q{IQpn`WxRf8(C zjpWTvSOiV#`ky_2Ze*3La5lX2uAR02zfYc^Vaa8mBN8r#h+{kSw=*Wn6D3m_{d30nUe=`W&mfb1t;IF^qtN8~A zMP(~~A+b ze#FDd17GcIlg(_GMKAgL7VI;S&OJBAe+NSge*h^T@)Lh5ANZfzuxAYFdFEyVI&-k- z#p?fQSctp@bFP=L*_=$88Ztuo49MPVn@9ve#Gf9o$vV7+DI0UE1v&0BGZ(HOldp`R z^V`4cTwapdH+wxxMZq4T{Wwkkv!x#yvnIMpQ$%w4U4ZCYEhnN|A}}%PoA<5&Tdvs2ohxnFu2Ex>&Bi)s|LxEm-&W4)R8J zKeBkikJm2!L!aimyTS>nK7w+@Zurb<8grze|I2fA1KeWLPbRj zO43x8KR;Gjs?A80w0&f6pIC~t_>X7++(XJnkQ+>)|`k&54Q=~5p#!S0WC~ANpkKQ^0!gGuh1*A>e zJRC6YYou-xQcL2$5%h;uSOmQ{yB$Q(!;ZD@1J9Ep7C}F#ca%lYH)kv6I3RVRF#Ioh z0`9?mz`DNjg7k50$H&Kcy!`2ddnm&uIpo6@k+Wwz6ftP0ZWCM1uHmX33;O+v-@iI* zCEUu5iW<$&y`+#xp2|(x!6q^xbrKNM_9`6!E z6|v??zCr24%F6L^1YMrljyizwp`_2vC6;+0apjJnL0SpTbJZOPV-aNlEgBxA2O5G+ z;+=r_xnj{)vF@bnAY5KLe3*M`cBNIL^j>paDe1L4Z_r|MxuPnFS7lFW;3>}bjh!`t zS4N;re7N$^AmHp)1!kn-g!~FYa%Ug%CFB9`dACFJD}%q8ZJ?`p#mAUWcrqv30A*%h zIUx?4?NQ8`WR=TaxRuh0dj9+o<9SUbvtl_(r{Rw-B7BJ47Idt_Tz;lObvjEG9I9^S z@mk?xii)R1u0J)CMN+e|@s9x^8XKG3OZnK&fs#fMVOiCwf>y(#jE`Q~Xg3!_YePCU zlN{FljCv;bo_p{yhhv5{c*=*k+|Q`z30MopQx7mH6+i|<)x(zqtgQTz%=+G$%nVho zzE`tXOSc%5A-p@DrSE*`GnMaYTI4rXQ+IVE-_yQmmlogK;Z3txoDtBg(^@3jjQydr2}ps3a;cD>L0KvMo+8*lHLI z`Cg2bWTZa_c6jfyqinsRz|iBJcDq(HNhCW|GUwMhh)>pb-R6@^Cb}0uxqA^5jwcV; zy0^K)FlbNWRiUzWar2pd92bpw2K%+&5A9Z=A86 zOWXCh_KL5fGDg>gG10!Af{F(W@I`f~3lMtqVEaTqkm_S>+KyT+@E3tG^DvjkWyCRe z9z6CtFg4QZQQ&BjaBTjVVM)b}Sh%PmE@vn>MB7aDNrzzd84wWssApI}(9LkeL@N(y zqlE#yA}cRmr;jWwQ*ig{9P$oG9v@C(Z9!7=2UKf4Qeiy@*mMq)r$tqSRoUlyEI5vf zu(Y@*s?yinAx0iTKirHku8@1WwLZ_vs`j4)nhblrV5%w5)iwj~{wY=X8whc(@&5SR zM$#yk)98Yxn)tsB$kM2>eX+J_oSL#~6p-4n3RX@Y`$suWxH^TrwDk)T)q=CqW_uXl1_b zfnZCvN21RUR5g_lS=v&Ts{-X+FogZpLcP@h%Z&o%dGOW-k@QUlc0vDN?+;Qd{Cpi3 zU54t2?boZ=mBNRv3*v0Y9hD!N<^Aua;V-tWW~s`IIwb+JBOv$<@JyL@424MY-+{1I zDA#2_un`cnU9PXc;yuR9&?99P-rGXFk|61F;)MRax|C=R8L-FB+Okr*XT_7LSboAK-upV}f-I%9k zruYhV7#cvv0E}MvS3?2R{2ipAI>rud8-taD2FdWteH?6qfl!mi_Uln$%>3}Lp#KoL zWJX&edN0=*JOQ#)UD}PEjH|YPvRvo@9S^sRaBZDuK#q7Bv`Q|(E&{d4z{K#1 zw?7-32Q<|K?)1V8NF1A@nzxgCx-5MzY|lzi$DLZBQ{OnX5KsYFqBsK8RW#T8X_ONM z)jIDY2$;C%xY2iw5Q@OYw)px}50p{*y3cMN{I^<2Z9l6PYJN?icXamkASpegPideN zgK^+5x$0={@qp0^*%pRmYukF9*W{oeV9iW$%|LF5zDJepdD2uONZXYqTuz9X(uj+{ z=Y2Oh;m9>6KxY!bEMmbyw5HkAy=+i}#{L)l8*>Y3x6-`bij?KB*QnWhZ-GvX79y_7 zoj1Pev&H{HMWsPVY&2v&hbfd#=4+LbqdrC-82Z-zgR^g2<&RIzoXTZhp*Mm^>O%J=t*M5wkLJuq}Mr4L=3?N^$^O|mi zIi;Ct2^d0H@W1j`3~n9+A4w3pU*Z425_$VJFKjPkIUY^{a(%P`l|!U60V8`>sSKBZ zP{ua;4U9i&5!@n+L;u$52IQDdKf9w|*^#xr5yTVHKU`<@^AZ#{+8u^J%-!gdm9ZOa zc)C6nO*F6H`i4zP$tyx0PmmqpNz;9URep!q;F6Z>ES>r(+||3x1e!YpcH-kJl@iB) zwTG&U(p)pe+HW3Vc9@U}sOddE$?#b+Pd(`Cd3F@!cJEcI`i(q54Y#E~2i0%^t->9( zF4D+5?Yx6mrNaOY$4insWL5XrZEXUMO3%Nnb*_Ao1ziKFANM3SmO!B?i0=hX(csyv zxUvwDzLJa?y$1Xm;B-$~T)|aShY|f1i}lxCl+=xpZy;ZA_SYLm{Br3v1T=n&^diCa zNpCsG`+7F*o|d^>)>U_vlP-UMq@liEVr6Z+N=#arsrXBJn(LkU zWU~x%i8z&pP?e?1MoFnq8ld$G zC)*0xp6q0MGzsmoU;gOESNL@d#1jO+ggS^A5Wf_Tu+Np|72dGsMrj)~x{#-Pp`sH1 zL57C`hlJ(U(e2~4AQ`{01#;kBuPP=ZigA!ZG#I#v($SqzJ`3gq9VoZf2L-Nz{CEr#mCuPq$iJY#!gdtqf@kELBst!1MQjL25LFu(wW^{aKbN zOqN)Pq9HH-{2ak&@+jMrPXN1le-#jpbe*^VT?((|%&KZJ!WSspl`#JNe=6ZB7RX#& zr83+SxM^L?Kf4moQo(^L{($>m=8^}3)+eUQ*ylz3O6LMB<1qn;wm&yxvGmH8?f2BO z-MiS_;u#H{U8-v(q!)`MQu={Y-bAEZJFg)%unb933=<>~P-Z%k5AM|2beu1a_XB($ z8ez_&-sLK8wM!5;0P#O9(LwL_(m_?H)nWkUq3B^~ z&>!*cR43d1eNZ8)cxQBY)N|sGjsDsb(n1|(ZrF?r6J(u99=pIkOgJ&j*DCs#U}!Q*gbf5v9fb=1(G2B4qI8^`g@1Z0(Fcp zg2M_10(^+3b~P*&(!&3|c`i_!JYsJHM^CPG8i$t|N|S~!2z7v&AT`^0d-L-li3_Kb zj^)sux|CASWo>@Nf%NP%)4}e;4N!C#92Ru8zRCoh2Zwq_Tu9LX8F7Ec|M#tfDB|Yg zm{vpB*MDm1b+Q|{`Rmn;F8t^TaQ6bNyZ|xyFQ4H&lNZHpR|+^y)!TF`=hf<{BoFWLoE2M{@KIo zavI^T>}+3lGIlarnp^d@PSm9w+O^8={cFX9)WSpp)ELVO6(AD?`w(HJ6e6=u0R1^^ zPa>gQr#gK#=9U)DH=p|Zdl|DJG7;*8ve_uEay0GzU2ECVJ`X+TaTvHr8Vm=D`(?OM2{jn{c_B-2? zdJv4#5B&?wprlk`j0wr%CK`Lq!Ah}!i*@+&`EpBpr{SQ3b-v1N?B++`KI8tHkkA0v z-)9+pf}c^K23Q{M>8~)DD8;=)S`08jx9-MMykJUb=$!khzLhe9J~46@s5}r~l>BL6 z5^t(getYEj0kC85g{bYxmXbks!}1fWb57X&@;9_Fo3zJ%QX7GTbSK1R&~0ifUQI9{ zy;VX|x)N0iUAQa8ZAFvwZq|1)k7ImX5D~We7Ox>YNdBuG4p;C35=T$RS@lf(w*5hG zm5bi6_OF*@pgmG~&;M7Y2g8@pOp1LUf1$ps{ye#7Q>xnI$0*$h^;7*G*jsx+8mYTY zbIX?A?ELH6)2XF(2@34lK%LlK|2zZq7}Vv0t@%x|Q!hAl-2K$ZiV(9o_vT2-)F}dWtkhQ+f{=mdJoVk97Gl9dG~ECGt?!eccQ`}T!0k5SIlC7`ebn# z7XXz0YK5w7`ys`_BdNB|*v8}w4gNbE#NY6!s5*-5e9Ey9Izd6y!L3_cdT$eQ6LHe{ z!=`z2N)US}SIX`7)5B4W;qab+uI=b&)M*hSkb<4+DA-=v%WGg|6+U|Z#x@pX6-#d{ z_=PPTvE^+yH>F?32yV|GcrW|l$&G+?;Ri77Ps*t#B&ckKo}951NJAvupLsts0Q};Y zAj|K$MTfQG!pW3FWR#Cv*b)&k~!-^0nNwN$hrOyABj z19Yg*WoL$Wd-e00e}c{nU|)MO7jchvrsvQ^Tj}wJ5(4cY0atmi&EeBU#G99(D9Tj? zO4o}E8v>>W zAu2&=3F&ujcK(lG9;c`Dw_v`#j40=JK9>pFF5aZ_@$`Dqs}bYXJfMCFa;m*{VEZu* z{tcQ0W;9hQ71!jdJ0TK63ycKXBoXn*U@l^%`eC4G=#O+J9DmeaXQfRwHGa-e3-HcZTP#Yp^Kw{0Za=RK zq5=po-bED9S!F7)Mk&-K!wMH(p8{w9ruU!8CX(AJT(+J4`{&F5l;{i(ljIpGaIo*z z@S)FyOFNj=`}x)Hu@$+sJ6{FdR<3a4f13o*tb*LFrw`K5W3vh>gu`qlR`_}=L+;`% zC!wVQZuOT@oaPU(v3kV6Mlp7;u0GxYPEhF^vM|ocCil1JFzi;-M{yL_KM>BiW@*sy z%bDk8Wj~s3BqLQBB8j{oiO}7O1ht5gym;>N0tyEOPD-Wi#x(!mNzCPXFEMkRlAWSY zs2??cyPE*k6vQDviz*2#Q02u?JXQFN5Zy&9E7apH`f|X4moYE$0!vQMbMNc&L z>R>fay<4dUs`mQlD6@K2rN6S5?Iv_^-m5@H)e3vV%OcYI#LyX(oAVH)M5td*{i#H- z!dZ@(=x5SmV}~qpmSL{ELFG^8xIj)WB>vaki(ztJ#;1m}Hir++kFEgr?$n?|LQ4s0 zLIjgTAnJRLAn+3(l`(($fLj|MtLsfY3WyW1&^t?nDS znpz_aR8Tm8@_UKpdY5o+XM3!M-pnYTp(Hb1s68G3+rk_G)@@w+N&qf&jbxQAglwAmBv;c8NHeJNcY`h6il6H{D2}rUc?ry?W3z zkRA#FiXi69Elc~9Zs?|f>Z5tQt+X|QAKm?U=a4QUt25;yVp?0GD2@28qNPq6WN|5i z6rs+MLk7%`2FQy_7dkXU?eW&U+xZ&c$Uv9QgeqvH*EnMWi&8r>-MHd~hEcS#VJ^;8 z0DUK<&$Y`muOz<&EzXa8AOXEX^JXcd*d#M1DLRu-Zg_tRqYk?2yX&3Mxkag+{~eRm zsgbP$&5`2Ke@y~3;ehy44~axr2^x_0x>2+yZ4nm}rvEILjRqsmFNw{&{84veSvJ zy{FJ=>43~eRp0^RexUvtqQZ&M)aDg#yCqkW$x!q+-0JRGRZ#2D3hScqgq!F-Zi^MzBW zxz8ttjPwd>EQSlMZg75?0S*Z_%rUGHF$c%IWDor`McHU&D)=%!)jUYS#;Om?r>ZjP z4U7~X?8NxTp;67{d>jzy1NFGrLal%V;2oe$?5(B$kneI^B%N2^)uomjwod^-OETgt z(Z_J@|4#G)%AUXc4gnI7ac}Q`xPA$dz6)G*+*{oT2cEN^AT2k1z}g;gZPlH8FQ5)u zD3%<@Gg@sm9a9mvVpz3`>MR1BdLepwN@4*7td9AE2Dm|^pVi8CPi}1Omr(#jgV+My zgV4gnBM?lA%UA%zWzuL>OJ{2r0MKmJ!56qe%wuZ$3V>L+wvIS$Z;45H`3f%}gDytn z^ezXmvAsDDB`o*8{4FNQBFpS+j>JRpV->#k1=)3j6+14cM!P1(=T1rhT{8D7JKOOV zNbh=YAd9Ne3sW)H!I$ayaP`CVx#G`vX!?+rg^rmF!;{l}StD-XBUS4_aOsZm|CqKwnqNo4BP8>|| zgf1T+4|b45wAW%Yba_zKbPHZUH2#Asx%VC%sF5gLhYvqWw9u(D!5G51hr&0JW!I4l`qTpa%%5QA=soT$? zFcQ=z>-p~ofyDU!*MmTU|8Wq=&ClDw>SBTy1Iz(*PwkAw13*0_eP!Af_s?l8-3EO< zE0O^TZLT`bz}0IPW!E!(T%0#fB~?VT?f(tJI2zk@x`iXo_l`s$`yS`-lFk}v$qsET zEAQB`he}B+2SE0pfY+`4APvDjqX1Bid?AVa3TypI=>o~aKbJ&qWkH9}i!K~a@oNP5 zbz~Z&^zw*24&bDi;a5zYA;JXv zzkyEO#uW~_F}HSq0p!{X?a`{-XZ(~A!wq^-JSzm;K?CMY#Ul5**bszju)>9~gfkVi zz5v~P=B*hni2A(e%4+nulKvl2PRGDs+|K2x2>nvKg?j4J1Si6=*DrV7wvbl1gy<#+d z9PHfDTyR2(w;0f6gZDz6+COg*20ZA}P3SO@4c^NdaSN{5r+EN33C`w${Gtmvawyin z74U!Cs0V4RHM48;MrLil-W2=)jE?;)0E;n-BXEw+-$ik7{(SLK;5(`2sBZzJf z4d1o`=;ndO76N9t1q~j*Z3hh&4MzkI4u~9AGmX-I3ymMx`tkYIL~ISF*FQ5UDM_&* z1}vvJXw5`!T3gLEdX`Zw0{gHs>?5c? zY#9@3tl9x+i>iTC+Aab!&#l_E8CqBXMf?w(;JCblJ_jg0FJI!}+zYDd|KTV~4nWB8 zO#>W^6E62AVoNLCjfWWelMClz?UU_01ua&f5goLFK{pCmN1!cc(oBI)9=vz^HlYX2 zC2y$U`T4phw5?oc{qO(Hmn3d~{{QngF}4(`yDm7dwk1e5Rzac-)~k9h))?WkcwJ+X zE9zR=#9zO@v<3ynpRfP%w>xfs{{Jv>fVYqbMrINuZNm{>Q{2-BE@tN%sOs=%{7NCf zu!TJWwhtQ@ds~u}^Xxh@SB+*d@SJ&tX}$e{5$jn3FrT>8nzh$^B^pm|ZH*`O+1AHa zf1^wr%xcm|C&jAP2?~C%sehtJyvJofp&E>)ErUV~yjKmv&c34KsUiJUf>I9-#|ohH zihi5pKKT0RRbl&%fy=krwbA~r4zh&$vFgczMz_Y?X{iO|W#{H!4c0x-u#AW!Dqb1R z;!ET>bZdY|)O;@;*SXgm#)O+np|Z1M_ZsQxMXpcEcjh7bxcl-4YHlFW0XHkKb@~AX z>W&UXyiWl$A#=7hg+1lg+hrlbtf;<3|C3X~4m0oTj_D4xdTHC|q7C{!_zf+0Jlt{_ z;h_a28RfPqj#&$`jJf{+-|5S1UbQ76zJc@A42k&~;c&f-)~C{+RJU&9Q+)D{@D;&T zYDgg}Ulk+obUi^=qdm(6JZB&JdDq}JS`Mhl>0y;E0 zweND2GGP|Ew1F9gW$Suxh)*d-q1n~qau-5+qznBc5dI5SQs_3a`+oJId*mDNmos+D?1_E8`Xw#eh)K=X zn3LvyE4r4!)S8 z_v{*T=Q_hA$1Ofsh<9<_I4u85|BT?WD~>rP(w8uezO^>1H00aAqq?qA zxRD&t5a#LwPFY#Q5Dsw(&Yyp3=o}EQy~Pk-MK}J)wv}Bl((n2$ z#eWQ6X47K71vBttx!k31ayO$cM7vGbQr*^TEoP2XSkP8A@G#obL)wITDpHTFMnUPF zk%f=#Q$OUufq452KM6^jc3(9W<&4kFa_9EMjk0gEK5#q={>@bkw<*GJZ2I=iIl@fF z#5gP|&aMkD@FlQeAoJs_AYn((knMU&BK(-(A2@@73JSF~uCp)4V#tXkQA*yLX*RZf zhYfMtI$%YSF>>_27HW0q08of+adXXPHu7bB@Jn_XD8Sy(lsA_>Z<-^ddOH)nYGGP2 zlbI-AjFrBU^6KLWg>i8Ba*%N?#)8x1%(~_K6jQG$G4G|A19S7|HT}~*(2IvrQ|cq~ z?}x@aZfDp^D3~7#nIK_0jnm#7NOb?0Q~Lc==Zx!eU%PRM+jNym|LiHvDQWMG;O7cf z8ZrUMfCS72F^3j|vlHztT~j>9>+p+Oji1iF{`gSmel?*o?~O3&{FY9AXR5doJxFIZ zVP#ZAelD~6$E1$@huEQaKh7ytF5*$MJ(AMooGb;ZMCW~v4~NZ{AIC2g4H?>a1^5gd zrVY|Uj2!LC`ycZeVrwwP4XH=0Y4S#qqTAA9YjO8+3ivzd1Yx}W<@ZAgF zm9orlzl!32pg7i{j8XiNbHO%u#t5R*vZ`<;Xe7Ciin5JQ0U^xikcf z9oByf*Qqw`S>V19{L!v@eR7%>q#quRE>N4~=_CNhE?i=NF5JEuhDkjL&kscZ=(de3 zGjA=q^$Dl2^xV2w)~WwC% z8c*?aZ+frCfeQD-;w~!H*+0H95|^1QD6B$z1894QQmh3 z@ny}5O|V;%jYH8~`X(s6I72^xR$Uf6skki=Cbg7ff&1Mh}(RxNr>PnHEE=@ zuZe|exstoeQ$Ir~uhfQwlriaf+T{9x)V0Bre(o!0r~UV2PS1^q;oa0Rl-C{Un{X7u z_qt}ro%I@&X8x(u;g5T;UwD!?n74BUJ6>lGL=k4%twUFH{ZwL4rpPgW!MQO~;Vnd!uSH)uM7&oxIp0hJ#v z#dS>9jsc@j?t7jAsc*r-VjTOT?p^A7216}=_qAK&@V4=LYVhEt^257-U{-bCb_xVw z8m3J`=|htAeVb1*Roj79y z@yWY^{M5nz9e0B;J!wXUdF76=OlDJ-sllS=l1I)cp}42wiUd|u8d(r4Y7xG5x8c^G z%bI>dJJ^YJf4b-6PF2`YR92@3-lm=!>=@#8aQiZ7;$v<33dRhakMa=fYT*(zXbXxiizU&BiogPtlzZ^-9vD_hbchlGJ+m23qg0;qK zmUA+unWN;4L?3Lf;{Tg*Sad|7Z zt|r5}H9K#jZk$^E)qNxNbAzkflvQh4jpd7u&9D54DwQ{2r1j?*-ysV28$Is~ll@b7 zj)yVR8(kJRW}{S8cLkRna0{>E`sN|MkZ>q~k&aQEeCBp`=I5SJl)E`z_1x6=qsy_} zU1+#}R)+~A8@I!6;DUvt61To?phQ1Sl3hJ)eszXAJ)={wAk-7=y4d#qa$p<0mdQC7 zq!zA-u%Ihc)blu~w}wwrOsfW~l0FYjdCX32bv%7y=dGi0Q54lf+Q|DF--B8tc9tzX zgGj$ zhe(|U&1m_#9}^L?wgp`F-+Fs!d7`8J;cH_3J1rTpCOK20Sk~J&FKW##& z4p&;~vDKt1pUUg&8`fNNA!^t2iJP|O8?8szoBBEPT~oCTmTA5hu*|#5kIee-w;jHb|i5b=c!1* zZhS&6Sz8>(5hz>ID@ehfG%J;b2V*dAOMQoLuZt`wLw57~eD!S=0bfSpC|ffclQ=W? zQaS~e0#E<>NO|$#)n}{gJ@~AWHamO!(cZK;tl?CP#b@_)9?c$Z;m;Ba$DW-W@g6o2 zX_vIHXGUXS26;(Fb&hE=Z|}5luh&=JHi#&u>7gZkJXad#DuV@S zxj`9*tx_t=3;Zh>^-Z&;cLLA~&%pyJwDI#=hvCc=K{;|=@q0P`K2UIB_DIM zmGRqiIawr=dHIbuGamE5mOKcnS^d1@kTkMyqBtHi=kK>3>|**Yo~N|ng2nY{%ok)Q zt|!OA=X2TC86N_r`$$F3*}3q1bs-`b$1w7YR2M?Bw? z%2VAuI*1BlZj=qwyMfD z1%;XkZ(T+aSgWq|j1DCYeXDLHO4xgKuxri_Nwj#$hq+mi>}%NS^{pLy69Xr8Jq|9* z&-GX|RS(fYEqYDpTjdZ5H|#v8tw%;bbPRsGomr%jE&Ky;9KQGZE`(x|6 zlEaVQriDVkrV12tY#2Lx4_KaaXnj-Fts(ByhUZ|SB(2`qDkoGl`C*uVLPuxW63p8- zgpC9B#PYYX=FPy;H z(bdRdgzMBD-*>$`Gs`@b%+ZYWF(Nt3<9aUojiU!<-?vqm1Y8h%wN&ih%2keu5c?6i zv~Mf#N=W$k0!+dIeD$ic($>c}`~0s**@e1|Med;ZB*~6Mtt2gGNG=Arg}CZ12ciPh z{60(t`k>lFIEyy=t3Al)RWKZ@=e9ccmh=$2D~$rY&h=$gi=vh^BF>e&F^;KB_!uF- zXWb$V>?d6&qH2ssvjpYVBPK=gy`w9Trm>pvnZJTlc9sX3cnF?=WV6VtR}O%e-2b>$edo$T5@p`VFS~soCa&jk zo~~rLdEs+ZyCk1Ab!;a$b|jy}Pm!i`>yt#El+RM5u>4q!n zM6=7Uc@%c-pbLDtZu$^4Uo35bJMDgH@{3AYk@c85N`0X+LPEsY&wz`FKRN#<(a`%_ zY<y_zL!EgeQ9Qc4rxtJ6b zbHCh`Cs+iv)Wd=5Brbo7CG#L7?3)iLEwzHvn89n+4H&EGV-+~5)MxsB*r=J;h$ZQE zomG9wknk9lp_AhY z)p|;$T8r_R+g7S_9)3ldp{dN8as|TmndDFL*Y-ye6FRTqZh{Rh!G0(e~} zfA{PY%ba<_Zgz$ygSLB_^G2m6tcLPXhP0~ooblbQQmh9Ruu+;CB6z-Cw5yrJ`)fS- z3Iy<)83RxF=bP}=_Q8&G?&V4u5*W?mjhcm9V&$DxLfm{?2b8+KwMZ{T66spFMtSKj zx-ovnOgIazYGGDLpj;RIazR*ee8MiERyPmnIC4L&_}=@^Ypn&JPKT~ln054HnwfSM z^RVy9vz|j$eGo7Kj@POZ*R&DqCr)*kYapCM#BNUcClrXFt}`CLj3EE^qpRa-$4JLe zjRsc1gE%9r>z7>9AEyPsl_Ddtqn23blRkz>SsS0H+noyA?AE8n?(TT1$?@)IN_%Ku zl;@qUV8Und`$>~-MraXKPfI*EY_|W;6uD__t>Puy?vqL@izdZ9XqS|@^BOK^7|(hh z+YJP-kGHi+B*cplaD^Uivg7QUgq;(2d#asUkCi2JIyC)}(w`N2nrHUOMBHqnaLng@ z=_tD(3gZ~*Vc6I)C(_m{SA5dCdFE02g{Tp4A6FfPYbTZN(ZVE6rSEyZS0}kC9=el&X$U=G* z2A?oJ;#`nAH#r+u`-NWpJHNvKD#@cUWl5OE{mRbU-bmmB?>gSuI0GS9NDssu9DQ%Z}eP+yBRE_E^@e zRdNlce&4H2dTDUcQv-Y5sTT2tcl`eO;iVF$ck)cojY@NgYCR*3IGz;l^xX z7^z<$ZdF603a6&6A5#I5F7>FpXjTKKw_}2!uvzt05@O8ko+2`;BQ0s}v;6gH@5O{7 z<#%sn3%{FP%6S^X?^($x3+IY?z2h{2N!~lc`~E|+5qb4m{JiWuOj-99jc%TZbh3Ra zpMFYgWYfKs_CU(M8soNDPP6u#o$9cNsk5Kj!AxCjD_+goC@U;cf!Pn|=NJu-Dc*M& zYdU2`uqx^;^f4p3EN;9Z5Y}miTK{! z?)*lH{x_IZLTv|k4o(q^<&jHVuLjDQmn58A7eVgoqi?n} z+co_|HNpw&A%JRQN_SdW(0>pva9Z>W>4+I;&Cd_KrY-uKzg|78&4C&jh!aaPLT(0j zQf52oBR!TWbR5U?*&l&x1a&EbwZbLFb>O5G3l z#5}Q!&tcYIdGm`!cT{U?pIBpg>fM5eQxa}A#@c%KFeu5^!Qeg!gkhXPy5F55~`U18m3l_OkU7lgiqIDgMn0N-7j3knDa_-}=59X6ntXF^sYe3oFBSO+8Mj z6VXdp^rhcy5BRxUMiU&YQxp{3@s{)WD2qnXPt~PdCJw=pKLk3T312Ot-c$}{5F3p%zHfPgxuFxnpwzZ(`c zvgu51OUjC<8`hOGcC))=^^?iD^5bN}g@9vu`U0Cz5u?S%ePZk>iyuV~K$3!65{tn>W5rM^(ziZ?n8i>pM+O zYi;6@^X+xkqCDDf7j6&OAMNhhv2!JfON!V+uZd<^*|gVb3yhAqH{?S(=j{+442|}R zeK+a8f$Dm8)Gi~;bX&rJqSPQ&Irh46ytFK-cX)X7aeaGql$M7c;0t$Iv^z(|WT}L?9>GJAxj50y`2j!w| z4@0S6{3?KYuy)tn&HITL+4JF|QG|6%XVqngULcTrDysyKBlp_Ece z>8eCURG?IP0x8ReJ}E^6ML56LZk!qU^Kdq zQxXCnXck`$nw#7gXhpxA-ll>oJhhWisFH2)A=yR?S5^2`8REF2X)*A_3s&gzyAm|1 zf#{uZ5}_e|AFxqCdK~w%e_U>Xld{dR2c} zjUp`|;+0V=Uu=fil&vcbe{K(%eVM&e*a})Kfljqxj$Bp?M>}x$%Io5*Up3 zT~NzVX?1YErVIOtIx^TY=lJ`G_8;L(5@fg>zu2 zy+39B=XV>zU)hYh<=?HZOJ*OE8p!!pi>nN@V<^Ml$+MJ-4I&utF4Z4;7&cm5EdI_p&K^m_p;jIqc+>5ub@@P=bIs7)1C z%wdA)A3S?&(~O1!g`^{-AU1AsWrsydbZ_K^R#T2}R|P%K`B7(xy?S75(9(%m_Ke|I zk#F=ai*CH|!mRD|0Ql5C>8?u}e_8n+IJQH(Sf8yZP=7s9Y^f zUmC?!zWzC`sjg)AOF;ePnboTkM&b9<4q9H>xl8F~SeIvZyo;;G2aHEqZQ=xjUuaBR z2#*Q;%S4L>tHGMv?_@Jkl%lJF>p1sSDfbPf+%l=>0_DW|op#GEL8TLrW;$%u3%XgU zcy`&DGO%{Og)`m$tFo6bZK2ajP6vZrt~G#txnvyDRC?X(MgrC3?%htcW~Ccta!i#i z7Z`!MsBCcg)+OyZ%f64C3oZ}W-K5n~6HB5tOL(EzwnAR{%XXWR?f-wi+8G`Ck2>rf z)t|dt{rS#T$M!#u_x9WU4L+Y;``oBv`{chC_g8E#`{xlgc%qU#J)V+dtNpKbskYlY z7k>W4y;m*U4G^}^{=Z8~_+R>wv&TGmjt!{caTZ{qLR?$iaHH?W4B)TtK2eMV4d55Q zap2ny0}9ue#zRA&z2HCm6)orhkqnfdv8irWk&=1$Us4F+7|mTBKZ)NsB{n!4@Qve( z$*j8Fr&g^ExU@ZWEmb{d&3~xdAkjJ=oMgT^q~y0f5%=0(K%ce9ipy%~)xKfT)1cs( z+wn|_G3m1Kgsv{W&XLjysUCy|Rb(xLA6MCD{4^1HIh-~e+v9>NaDJ7!9Ih3U-sI?) zR|&l;E(l0!w9(zyJ{rALQ&RXXC`Ow>9fAy8^DAf-O%9%{K)ouM&V03JXN`1z^uAtw zI0N;Kq`Z-JcpuA=a1rX78$EYDIzY7{42g-|?r^JUQuyPjlHDTOOc+!yU`X{X$9q7* z{wO8O-aU~$zds)(mKA!q4&QnA0lM(hH-E~(4(;2DtN_I}vq7?TJ`)P$#P9jB@|g(Nfd1UE|@#u-&Bn(nXpjp zdngz`(@S1t>vOytZ)ljbsQ_`;67#zGEprZ(G(wR7=qXlu%aS7vWpm0dM^`K=z_P$V?^E7=ayq`srzV9%4_XQS98pI>8(f7YHAhf`CCUGy|i1*?AVdI{@EO&uh z$^e;3$q5ins3DpvA*lieG{n=VIB%sTz@W>x&j?AxVz1RVFFf8CYyPsl5Qx?(om zjHP2SDCuc`^F=|4FC}@#cnDiH+{)~)Uab1Pwwt@MHzf>vCINsF;C!!Tv>XZW4?ZwP zcz&XFBCci>U5w}kbc-fQ-ABPmhGAmgy0H%rDTulWcBYAR$-60a_oJ9-Eg8uq`tW{^ zfE|f3^W2NCKObPq#?nx2)qb1Sea`mI4mwl60hd(=zKkv*_pdFIF<;irx` zGxF}L)mxX->$?NSP`4@nfL@;wm{wMis*ant~@?GP;BOk;4_ti8X4Oapct7H^S zUdxSF%JsNRF_5N>Tsblas{2k*-*q+^pIe5G4p2T{%T+bSMOuFCj8JMUx<+WB^+&X= z3y;ipcMsQS-t*wZI^UQ(?yEe?tmq++K1H{nCqs~R(x8mWn(`ypFg>;Fl|jIZ&H}Kw zzT&&s8GWd>ripbyKzY|9tZ}Zm7UGmIi>{eG8kEBJF@?Og&#y`^DoV7zpzPDZp>1%Z z>`1{!{q+dL0m$+MDC&4|-N<%}X8IYw_YjWBEZhI~``*?4&db@rI9?(=bl zlB7g-_u`>_o?|hd`bRnht~C3a!ZDuCcW4${*(mbfti*#vaH3QU)|3dt;#rtXKC&(| zit;fivFD5he7;5mV_9_i#kes%){wu?na;tY!w)xDzE7`Ky`goRy|>1B%S5y@bg5jkrBL!coDgk<2TAhO(yJ+gjq8hLT;daK4Coj8J3IZ`?O; zY11_5*IxIrDt;j8`pmLBeK3rR3j2mA-e2DEZP=(+Mp5{nP%w0fVJ>kWU2lb2Qk~aI zxl~+XXt2CgT+6g)8y*)Y-*`C`ImuUk$xNN+faJXZj57o^Djy4Mokk z9`^GO9`ka_-FeqTdL)@HOj>#$0~6G?kYJAKmlU-4nu` zQAzzY#n?l(F0rD*9L`k+5BG+4_ra@{hO$?!?QRY|TwdG&w+rIVDE*Lm(*5`Ygy>fe ziE|^1JU6Em#_+D_Pf9xtZ6YL$)gJEhQ>H|PI4@U&Et?F!3FXC}h`IZ+48nOVrsDk? zn2d=S_fS^vDCsa~Z-P3b)l28ISQKUQ0XHrk7nTQD-^k#hw6&0n7wR!l+&zR0dDN zST3!ou!t_5w7_$&3?2x8nWoDTkJ+{AT)Y+&?~%XRPny^z z5afc!&gdeLGlBGI$FXk7dr;3j_zzpw3vusxM^L*=PIpOgP_qx}M} z)aqbBmlza`OqS<;NgMLbkJU~`!iqKe>*zF&22juK2fs2u_) zJ+XwyI@JJQY^C;&&;g;lVrZ$lba#Ki^{+-O+AArC(UhPRt=-5pe3@YYH!Bf6zOfU@ zjnj77T4nijpuHn8g&?tRqsrr66p{HP=4P3(91q4fhF+&OHite1i8)FYeTMY}zRgInzk70tptX^N8Lt%IL&@pG52KafTl+pp|sDoR(h zzEm9ZNB((*fIp#iyq(Tx1pmLsrEoH%3=L}(?d>QBWO>&N=VR0Pd4b++L}$*7%rBu5 zX0W#GNGh84kdZ@E1Lo6)J6A2|$PUi&Qf(*pc~DoH#WPyJHi%7)_pnDu%CbUVPO`{P z02XnFaj{KSIH1hd9&eH#pv0S8ugFr?>`X_Fk(ND*Kc?ikRo<}`PjR~{~j42WEO}uoa+%c+nW_yw*Lm!W}-%K0!6Q$_xQ3( zSq!v7!Cy7|sto32x7P1k6D{^}=qSv$kQ?rdyWDcUiT<42z=YshO{U|SUJmU_Jo9lh z<@jFrzM4^s0hVdlH8df?w>Mt1gN{(kX2o*odYbVO5fC0>t6!#Kd)*5<9jNyEw=Cj| z)<;d8lFSmLa+QbL>v{~^G}ViJ%#Rj_v|S7^HxtRG08Ylswp|isCU+SBvGnm=w*%N+ z9RmQg7=+_g`bvxMmtTN_D7cRN)F)iY=36@_>r~Ss%{OhhKmUauVw^|f^LND_w zo+a}&G$y1!rJI_2kC#=PEOtZh)LVj^;oO&xB{{5`)$-e>XL`Mn^~b#7leZ!H9y!B0 z7Yks=tb6u*4EYffPKtXw0F$r5pVzrbkW}4ndi6qoZuqK8;V{oY3;o`c(9BD=wu^}C z?6);q7~tWa`0Z>CjgU9%c{~$7=;{TtTavSSsV8v{%rUSR1>19YFPb1rJxpxv5LtF* zZVU!#4Uf9EX{kw_HM**nmhIS6u1=!=dxgh02JTL9UcJNgo7+hfKB>I}x)#ie5~gePxaZ?`)4B7*NUPP6vbNKB zTJ0ACP*<69mp{%waH5m%$}CTqKkXFcX__Fmn6IzU6ls)z)C6i_hef zl1&$18(B)|SfHi;Xo=Og3)2sSVA}DgajI%hJ<&fYdhaUq=_IEE{aM@Y$Q+{n zIo0>}|G!hW|E7(uTKuVv?kQ`SZvDc|F#$gPHatytx`(}%4N_LDu#u`PW$j}&Tkr08 z6aW3}_i2+A4LUZ?7U2%|Nu9$sU8`sfNA^fvA+c{VpQax>yQ%5Gp7uU(Pc*QgD!&My z{!LYHqH5v5@ZeBTr_N^0*u^m75&hSPpp#y%b<1OUNoj^#mtOosK+QZ1dee&jRt<}! z?XDXxOzQfYRIiJ3=Q^>|Ep2umo+1Dc30Nm~ul}7MK7y)1>A?22Afp}oxMBLEu&rzC zxQQ0bf--jMXWvdmO&MCtn5Q47Zq;(=0W;Gy06Ja$H(2mOqvAA6FFVavWGNWYL< z&V+a^pbWDE(FE81);EbV2Z zj8_ni?~4m<0xLu4-N`$Xk`&L7Z8max=~0(L*-ZYaY!bJXP2RpF1gNhva<*2Z<5Ck4 zHCz?Pu!R@-dZNaLer$8XonWHd`#KwYd3kCO=uxKX<|M(1pkr0F7-%gJRxQS(NJR}2 z*~PIJ(ef^adKe=u{4m#DX)UOZYlvnlvy*+F3R@p%rC)~%gJ0Fafr?_E9>!;0V)vz+#NPNiXDV2x+ zz(YTtuY3X2Bw}Ht#G0?e2g6s*N>5LRyLUY<%j3AV1Dj?O-)Rz`(yHgt`yVFw-MD~e z4U)%-A;OmPD3!E|ZVDmCbkC_}7uWsHj!(+wcr51>&nW9i$8P-66G5j*kuCvpO0K&m zCX)%lDjqaIth@sYwV)1IjsYc#KKwCB=hRjWBQLec3ND!UAm=2H_u#dkfcsGSiXlUc zCRyAxR^&OY&{r(`S))aG+*&B&Te*!Mz9gpwG%bHY(dTx^O;uPD6sqqPH25!NfY4z3 zVR=fyko($3{m!NN{(>e*QsCr~n!US%=^mL$ThDcI|CUKbv?i-osCgO3TXCoRzitwJ z?QUWSvK|8GUhM~joA=o>Gl@(6ro~Y~P%R=8g48zjcHtNg|DCR}Y@SXlQ_kM0#1ki} z0nftWvfeMvJ&&A3q?(yi zUxWvsqh-|h;`f`7Br`MvLxdY`X9&fl3&IZTfyk5BFau?ty!vdf=aklIh`2q%s5MgN z1C6QeXJPukUh+HmLi^qY%lBR#i3av;GQIWTqE8aT`Xl@o-7i|yuVnZ6Hx*CGdj+Ubyd zlQB>4{EJ_3IJDNf9(l(R^&&#&tC_YJN160h`JqRJw?uT}?9AOXcf|rue1#fbuDgqJ zB|B|_q4{h~)Hv*?REuMMm&gWjU!4Jsx@dl3qvLQx-)i}(MVZzG7j0Kps4i$U)v_V2 zojd#2LCZ2sT+!ftqyAG7#)#qtaZmfL=p3Hk!X7){(O;kwc#E683ti~z^3g;T=gj(I zlx~lDFTOCI)U0DJ@9l%YJ?qFJ_I(2;l@{Czsv#26Utom4u#Ww;VutM$1=8fmqRbiI z9_!!=@pz&^yPAnD7;1IAW_`1PDdpCNh>xsS*+#~j;TuPfKBr7-3aij&q1}VGtktDn zCnLt)>`<&=`opzv6=S<+&9>38EBL{Zf7@Qy;QJSsqjYR|Fh=mJk+Y5ZR{48$ zKVrK%(|5PAdcswpMJNLFyzo|0{6p)#yauf8lH*raS@%7pv>g!!V?`p+eL_rCh?;e81(^>7lRIO_HK-?MinIa|aOY24Ib zB!mQNZ-v9}d2GEejs)xp10gF<#H`rbx2NHvHhwn$E&CYAfR$)feW&Xx#+u^#dnSGH z))*xCW66x0k!RRk1kt;RV9~R6tHCKUtI#0%=3M@fmSn;;-InDBeVnDXo|0Rh4cC@E zl+bnm!uT1B`;f(LAltLI%Pfbe&G8|I&>`%Py*^!`fHW%zDG?gQCk47!dAg&w32j2F z$TZ`M>$hHsp7y2#o(L@i-5ob=tX89Byv3pMIikzDH)?Ata!=VWVmqz;K{9^ogdz^U;eiGs_~Uu>)wa_irzVnj zF~QE|?q~FS$OjA!@vBiVbRO_y`kn6M3_N+!9SdTA$fVPwFNcT;A)bs1hkP z)OQ@A&s(I;xcx|5Z(~bed9Q8C{!k01xTEQ(U8Of-3ew=?*n%5a&&n_C^u| zT1<*JZ9UiTORk6Dy)iwKZg!sA)uPHgMi2M=EE~lcH6LZVUMz|}MD-pm-@@6p;FjZQ z`W`-}n(d_XNZ)94t(a?-Ai3AS5Vbe@1rVB1kY-aD{D8Ty7YuZ#e63{T`jc0}N!$zS z)6<`k^Za5p&zV#g?jq78&ThKQC>Pbrr?NsD3N;K`jo7KJ?GNi`{;0PVB}-)KYtVDZ zfOjqNbskliR-*Oz%es%ZTIc5 z(#kQpQTe5ey0t{y)VEE_YI5cu|1c?bgln2=VRdE@58y}F3%r(bOa^c54j`tO0wOY_ z^?{zT3E}w_$9sgp0@{}f6>qnos(aZ&UY(`Pj3X_)ymcQsgONyGHIFMPGlh`JnuD_@ z9725jmN7|u_4s1im)#yhV**+%xvq6)YnhDb4^h*L%nro+Ltd1}_sr~X3M4xL8f9*2 zy~_vCPeV*TwAAp`mTYCu>3U5~o9GATRyJKHFg%eJ8aW8ys&_qcSa*Fb^7qK1LCmcL z5G|Paw)Pk3mIJHIePfVMO9I)+nEVTb01WdEpi4=!q01~ZKeM(a<-PMF@B^65IdI2#^Z zk=BJu04yE~BZgS|ZE4Nd?w`GeR`WM;Yxb)Lb!U*_KR8AGpt0LvaIjm@3oA>5anR?6 zwRxxePeJZ*J~SwHP-*T_&dq1*XLUVMh0lP}e8!U_Mn&SanRl-OI(DJrR60{PKFOY6VZDV>9Z-$GB~i z@jBkBA@i>>_eCB`wPgp5jBjthI`*^9*RPweYlUC2+Plr>+}!m~ekZ_d^K*9bhZFxZ z=S4)fjo7$juM||NxE+OCRQd1T$yFs~eAJ?wy-n?B*68)5NLXJkWg)}v2AH{dS9laTmYsh&+A?wYAHKo%M_*n_cF9UVq=Dho-_KU_BS}Y?d{QO|CGY>*;{gaF{2ofj5*j8P_}yb&Q?< zZIgaww^~nak-sxZkdvjQuhibv6#zhcl^q^rT{4eYTx97PiihyVpLwtkyZ#&fct%&D zA2ov#g)99X;inS$D|{mx<(%eC!AKRLk|~ZSksO_2SD#kyHl-`V5O-yv3f{n&I(k>i z+i5OcMTevQ1(6lJ;bXy58Q(5K#9r&kFt7yT+|^_M7+3gh?WN&Lmq+C*d>yhkYRj+x zW&Go%@jq5u=F`#%`Nkwi)e0+Q<{!xX|K0sg_fIUjH9NLKX?28*;Ju!BHWFB z7&j*sdP`94gIvt~^wz?b-ZlT#JeL(+OLjQi$7Q>whW5Tpp`4}R`_}hW?^VM^d4j-D zi~=hz5O4n&o?^dbfc!-(E}^M16V(jy(BY;TxqfCH)-l^S4yUtu1oPB|+#3%Y)aU_y z%tzzYV&k&VuMk!lPi!KbqH48fUZ`&75@Zxf{ZB!th&(l8%g0nx9FHd{>vN8TnD6d? zAMVodEFnx^{mF~x_|=yc2|RK|CnNPMoM@)GluL}3ZEcFMV@HA`@Sxp``_msX_0aV< z`3rvqZoka;1TX)|W#-n(pnp=HwIBW~bm+hQ^Ap?G`Vb@yIQ$VilN=XGO5CQ`c8FfV z5o4op*yc7Zuw%aFY}%B9MciTogA5In0x?adTeQvRJkEQRYx0X3@9t-%Y1y-LROdJ$ zb6eXkD$rb|V!`|g(q1VL7anWC*nVRNe=6MFCJi@0J7Px?4rMLJ)hb#$Z5^UwU1)~F z-JkzbZ({BCW@)ox3qi#(->793%IWBE-9GzcSk!MD@#(jJoNj~0?RW0kN&i6-|D5_y zsQ6!Eg#QH@Ne0RqAofUl#P%h3%$NQfSd7}6s=$inFK_Af9cH?;95h}0ZnrB$6S4Sw zs2)crr;gQ*s;Ma0jNrqxY&`e0-qs~PxU*)>OyV1vop&97032iTZQ_`Hm6O)yj9!z3QOy77f`Kd9+asn;Ez2r;A%GW-P4fkI3Kd%zX%y0jEjF1}X8TGE3CzlCaUP1`*B&f#l3v!5Jo5CfiL#UGC; zE7Q|82E_^2%kIl}*u}Qm)|M>1bu`xy!8QNWp%_vw&tTl8a6>>vb@zmob zq)ui9Y0`$d*em(`AWyd3ThYV00eJN4>G#6Y6F$GCMPL@;_2EhOG41-B;NHUHUEa=~ z-&FzqqkB1BhxR~P*h$m$R>z`-rQZCL%ZE!8)j|UQSFP3D0*R!*K<3Vi-JijVg!z~g z=K$Ea0(YcD!Sa{V$iFD)0wiO@>xmI~;>YZ!g(XO$CsG{5-c~bi?-Y(vi_XKeR-KfJ zgH4#&aF}AV`PA>mmN2S%O$)!8-~EXSkGuGw(_roP*w<{jp4BCarjSm1%ouOY%`flYbX5i9hhkq50^zA!|}9xxxDvDeSPe% zst@Qd6{cvCUBmlki?+bq>-LjeCZ1nXu*j9dXxaq~n4fUjOE_|M#`@eZf6m!>zbXV+ z!npJu$Ay2wnfI%Ep^ayX$G| z)+izn6w}lGcAxmXC(@6#vUT@6jHP!DC#x23!K#)o3x{zB?Fetu3sY4;eYmN;%@K^8 zR)EFZYNZE5V;mmrZv1t8Dg4@u@)lFEW5-oR#DowC`G%(BU>%wwFk0Oxy@m+fe#STV z{nJd;R{m)Q=lA_jsfF!J@~^`W+O4zV4owyqcx~UnJ!=kQhOmzHqHLe;5C#7a;NkZ7 z{|NiNvG!*HS{+OgEv&!!kJBcMB80pB{hOEJ zTEx!);Mcl(KT(3 zs-MO*yV`dD`%~ljm59WWOUIR;p?unN{yfp*yjf_$*V8d zj5dRE^RbSxu=)ED_20#&0?;!U?>n=-8a?Z2icBRjJ)4ahx|*RxOM=a7vfDBBg!<+S zKA*$Hj!*JWJ}M+CL_Jm>EIK1!OQJP})mup$x_XPkHXeo9vOB;yZSivzTsXaDjtc^c zDW>>coo@kWMFR-wuYm-Q7V@N!S>tTAQ39T$>e8zM-!-?>`Y4O8bhKKNVH0n#@Dlqi zqBvF~p9H>rSgSvJu!)Y6D8KAZJ-}M@t*KFWjFr4^4&r zVgQd7y-itu<;3%0C!gT#KB1#V-h{G8bz#AP2^+d4{Z+o10sP~a><(Qmy`&u88y|4- zt_reWn+~xz{?j?&l_K4PcXK$FpCx9kaTLU4bupw5N`?fsKZ^KwtX~}0imuCR_uYr+B+XApykz#T)h(x*UniO9X?={A zchpGBp1P#!a2?bp4y0Ppp|7@o;b&}lbo){gLTcZCU$m1rk@E<+vXfnX#g8w?n2^2%gFIF@d;OrewW;|2jc(oIl*Cn-B9Y`gtJCPlAEH2IjslLiaLpxsYSsr zKkFY0PU{RIrbfv+%0GUshmoJd{y4iL^vqk9oA3S{?0fx9?4KS)(=6z-r}KYg9>xFm zi6Z|QpkjgkCu``lPW_KC{6`r6&&iSdkF@_s+W!aAe$&ph*c4#wI1I$jJfE4XFTY|C z=AKg*Z2(y9KGuf;W*g|YFI_}hUkM#Mtt|E4e4A#0QJ$+MFSVr3tynakLMQs=K5FhT zt0TtB7vn7I@}e77Z^!!~W}8!Wu?Iqk{vc*~gK=Bev6;L~bwl<>Ne%ttqE!0zj+?wK zpR+7nGSHHYoLb3?THEO0ckjn&c;lgmrOPQw?2QntVNxu@>@7oD1S^PRP`*m3)QZ1k z0qYH6JIt+wMlV#8L;4Q1PPkVk!&e6|VJoBd?O>>xhwP10z)#;hw%~@5s*4vdDR*0O zU{I1#WxD|&_|>>g1?1Af@hDdd59P3j-UsF=;dBokGD?c`7vijgckZ}nuytekS8sHP zhANBmJ5>z}H{wVu@AGM!b4ITrzJ=YsjhiP=xpPEO(*BLtyas{+9i9H2!`gjyQ;`FBt+~2Q*2}&HwHK2r=fpFp zi_k+?=ueAND5o)YVR5eJc0C{GuJl_^C=wZs>Qcvkk3~C%srMNkqS4|8u7seH1qd4* z7slA9J$C8>pHs5Ml1%pQ8TQ4^OMUo~#7aX;Z{}LxdU}N5h=NeHU9$9b>`ow8*wDJ@ zN7xH(wKZ#Gv595?vm;PUcMFCWOe$SpOE@c7ioa!ELD5HTp6R9PKy*AJiVBMN>yHuh zSRQMy^SGI8^*qM}tDYq~!dTcb;(92|R0L9+@tH^`+jwTAMOiGPmu3o|tj`2MNzRZv zL-nnx;?`rtfb6vJ;Ja@yi_SB7MrFs`$cCxxMDu8X2$I+Iw6&I%P*g*YLDhYsKR4q? z=qZjq4)3dQui_dH-HO?q>~8LlPa{V2!qF*1niir}dCeuT$lhN4YT5n*tsNuk5mg3T z;hUy!;k;fWG7EDFupY(>hPHk|FuNy0SviH%1btbl}3;D z&u2EP2hAM1$g?&ESf7%$P2J(Ij@J85Z>)Ua;U6IhioIdaHBUYF3VsS7?wA_G!2LEJ z#SXSJ%o3ZOo2LZMGd8?>SxIK|uArHVT^h=anCZ6BdM3-*uKe;vu2-ao zO+cO&&_}A{ZLMOw*7SXBsc+Nup}P0Y6_`vTZ z!O2E^F*5NK;t-XjAL)0p9_Sf2otG0bfob#W?&-62;K&Z}upoy$nnd3--c}|c?$f19 zi$VGjPsKiEhyoQsv_=S?&EK~=Hl@IqmxkKEJV z?z+%jI1}FBmYADsP1|316d%%d=hTwIxt{4DE84&6b*1J=uA8ACt{3Y-ssSfxdynD` zI|&t=6C`W;9$q4IwoTq8$VDPja;U9qV05QmIo!X^B*YybF@6RjbEb!7vAULtuDB_* zuO=IF!%#%@)eOkxIBY!~L;<>3M&a>8y1r9n4zyHkd2esD)<%bm`I-to^X&sY>2l57 z`$e4V>}utKCd1+qs@F}CZ>mL_RI!Mg2M;`WOel*EbJS&srlW?P4DEYtmTdg1O|9-K zw&iJ2^%1}{Swen#gjkf#JE)Lena#j zJqLO!MgBY%Zrns#3PtdEvV7uTGSExeA8*hlS4ZBMfGG_t_M#hCg2_<)ATH&^pmNRF zr#K6jR|`*P*scuHTbFfYkJm6sM#3u0}h!O34&@sv&0!rc&`tS}Fo~`$# zCH#lU*~t+z#RJd7c;+U(!u8${K%lYIrlP@oBHI8A{3%Fv5IT#B;(6$KOa@H5T&s|1 zN>2<@=>(@pk54<1cqLTy{dzIKSZU3%bE@hBM_IGUX!t%w2Nx!}QlTqFuovZAZ9Dc8 zfXo;24@z|Fgo^&bhGc8pts6U6)zs-Hf08n9U=2cI z#CAY1X(T`xMjp4sBUvapegB`VLPgI|K zIaOlfx|WhTi#(ROa?`0Wgo~UJdb@Wu zd?C(aipM5|gnk>q8@PR8f zOwLI-m?3zZ$2gEedgH7e#!!ZgLCGIK)ZUqRUIx#gIeeuj)rBuDid7Q*_?P0OJq;K> zkQI2@2h~g8xg%lQT6HOcov|?g)7IiRMaS$5ct+M8qXvCN1t<|Tc_~7cPfN zhf!6ryWv6mg8>N3zf~~)K&1DgT!)4e1u5VVIVm*VgXmRJh~4Z&#>qJTAgR%BWRc~4)*Z|3 z59^GA2&YV)COoSIgi=Y9=p8%%0`pq!^6R3c<)DE~>wMay!O|}kQWm4TC1uD7llZKw zRxtkLT8&8xh#C-!uQbsPi4avpInT5V-Zs)&THPGGUR=^@P=AnAUoDA5;!RCJ&#V*H zirbP0E?z+tjGkSc$2Zc`dw_xL*2;p9w*(I>hlQ?d$dgnb(yXVU2Xd)u58(3ff z|5RL3y2WwYGPhO98qlG|@stSsNoJU_@ulvN`@n(4o5snnh;E!sT z7*8!kO>Ne(-nIJ}VHP&NS-&e)qI(!pES7STc6f+BypHtw1ps1yJOR7u*Zg*!bgF5p z#GkM}yR;c*&zMA+nieBH(rHwQQi9yzQ7eHhU<<(%v!>f^vWTfEzzVfrZ zdXbb?W@zU{N?@tSnQ%q?>^`s4XBhNG*bh*L_#doH`Vn1+((vc{uz_6s?M4p;O)EK4 zgFu+d-puJ)tvFatJ|?TCVGo9Sz+EEOnvSU=o7{16ErTKK3;FR{BTs^TH^u2*_A2E1 zaAd$-TPC|4nZ-S!zyUjU?B5whmTVzHWfMA&?f~ZDG+$VV3Z3*3j2ps61O&Ev*_ozyJf|Kea zr{}^#0AJ|SGEHX6Z%`$-GlRCf)72dI=QH>#+8;cirgB^b-ScZ zv{2DS`zTbT5Ue2g^#)sE8MZ#)1%2&d-MZk^sLZuDzM>aTMPZs|%TuAJ5B_K(r0&tI z!0YIX<9m@r==?kWr(*H$hQl5c)hg$0q^{P2)sXSw!gGsmgKVFh8tTBrsdl3LcEb3N z9}-)9+1ef&I%F66&eC_v+wc6*9Yozv?vCC15{@Z8FndUho~XHR}BaK{lI+ z<{e#rof~-XfE6rAtWB)To(t<1-;df%%7^3%vsJt>qoHT6y;@eJbk)ySyKIGMy&KG6 zfo6c{#5e`odgRnspa5Hz?6zB7v#SrMQp@Su+Dx2dR~H%+({E-C;7jhtLG>pUsA&qP zlHCkOYk0bW)Mu2X)2Yo0C&pYV=))fLv^dpwoy?hC2~nk|9m=_cU4Ez9=jaq^f;m8$ z@~DFtXrwc9+xeuS;mQLufR|u#3chnH*Gu0}>q*Edv}qD7d|h%8i*}+P10UoSq{9U- z4GXo(*|@v0k%uZ#oC(RK#LW*LJk~dwLtT}9-(USSCo#{~t7=&;?c-*4aNjrJ$&s}tf?=J8 z`dC`Oe^0LP^r>u28#xS+*FNwRA?}HoS`?aq63mPNo;|?!mu`V4{Eyk0Z}XDG2IDuJ92rCB-|8}cvKUz>cM`n zRhvji-_9_(nV*do4No^CfzLwY`!h5dJ9nH^gy9sIRAgEhD)QF0|NH;H2=U-{B@Gry zo;@I;NXqj9MV`^U!R@M1%V~YKwrm>f#Nboq?5NhkFfdRu)mIEW2DF3UO^6r9 z%JA%V>Y5EbrSpRfo=i|?Bvfi&alV% z#oAIg5jv@~J<19tYxTEIhfO=Na3_Q!z)7I1jOg@!8gG-3S>)2c>rqg{N=diJMr}UTt_%g<5fa`KKz9A zT`b&6Iv(qlM={o-3q-_XY64@EEf1GqaR@T5;N^0k2AI0;GmHxpQ=zAzui|TmeZxRD z@_y|iSJ}fcny&Rm$lULiECEsCN0L4YQ%p7sfd`7w$W+mpjsQs{vA|X?E0w#F#1-x| zPFH{pB}+ydRH8Y+1?gFosX2BMSmH)n;J4G9Tw8s*Jh7n?B`;f+r#P05COX2(?k;=T zYB!3xMW!;2CCy7}XkeHlC}*r9X_a`c9d*Usw0M`2p4D0z#9B!iN4*L=auU-<6Uq(Q zrm}T7+CZ{qh${@!f^y#kso;gsX%2h$Fy&~|N&%D&Jg%#VcK&0gSWvoYvA>p7JojN* zw()5fTbIJIwU9kzUDT0%s$n14~-Ht2KEc+KzDUing6@W#e&8*^~+%?8?ceZ?IM5cP$bJg~gV% zDSnFlb@`Xa#0Z&f{MJ;LP0CDZm1-x1O6*~I+ZbIat-;fXGBvr+j6rH7y~-;gOhmAO z0W>@5@Wg^7Dn`~erh>z6yxU~^8h)ROdYxTLat?&lgo)FEd7iSC zFq}3964c{Q>sOh;QrOX4dxlq9-by7LI3XIwQzeEV*bym*>2Z)HE9ZM40h!CPbT3C*PvR%nx%snvy**6&h)~8)C>fDbs4*H?2_}vU*nCw+G%Q{M7kBU( z5|*#mK||?K)Ew3#1ICvp5(+~7rBmmCUd2I$an2UkK~zT%yEjTVnJD6>+P`D%4w^FHZ>Pi;jnXomXS4M?g37CcQxbn0~#^h5c zMyYz@V)j_iC(!qGS0^7Fl9j-n)ZwMKCKvK-l)6{eWqrOzX7iDauy z!VXI-;fqPMjz)#*Uc>jAWEY4#iN)FtOXuTPhGpKOAzc|Pet5TnPdv$n%a-^L)ifO8 zLLc}Emy}KBFpPWWfV|zyi6Kjs!;B(qpr@e>tX#}ip-64${>x1|(gCN+a$_xp;4S5c z*#o27xy6P635RXdS=E(bpqVfxrc>)TDsifH06T^RPg6V>BFziF>CEo0M9v&Nnco&> zEAHK7@{7IdO(#~JO>w4_>Ynb^OJW(qy0CD4{ZMWQoawsHx#$x`}$)v##ct7k}gQzIQHKcjTn@$!a>f`GNU zdrVsA{i&UvY{SSiFc;s7=W9zlq6A)|%cr82g%U?mdpqTXN40#MpUNuYOSEN;{6*Jg zFm+X~Fw`s9jdu1bw<&JHlHCYDG9gTtpIp-3-NWaHP2_s=(!g2gR_nwx8(B>Q!=4&F z6LfhgNN3x^%UQZKETq|i27%A2JCA?Z6CgFkYdfe&*L7)0lfq1eZn|m2=39V^=i0#l z)TFs=1z6Mv=l^VB)cGnslBz5123qG(I2ls*c!6G@d@7Qi+$U+~GpM{2wjqN@q<<+F zJJ9n-E!3_ZOPzYaHr1A__wBWOB;!zX1Fj|)X9|<@?GUv z_?d~p7`&p_+Tz|nAjpvU{XRsufyjBmV)q=`;6} z0;vPlcHc@z3iQpnQlTINc+cRU_o_qq-$MRVT>t-|RQ&IJ zkpBS#H#rkzvzUK?ya9T1^Qg>lMz1S%#b1Y|$qW-DT>-t66%bhF5)2nn>A*Qkl4Da$E4Xu2JBBf4OC=&vnwPJF7O#^7xyzHHGLo z;=|GG4O4R84btfJZo&^&@%&Pjy}>{bbhq5h~Nti?esti==%u0)2$c znl;8INmQOR8L-{Gw*o!^x?3yWsX1{E2R^V~v7;v=+x3Yue|A=k=_vN)YOvqAi{r9l zBas0#MVVXme=)1G$cAE_#wnY0v!#@Gx!J*?ZqOQpG|k#M+M&A(QI7Ug4qb`N{3Bb* zV&CL#BB$70XwtVGd_hJ_d;}rl4GALXbQ7x7;J0!*NKGQ#1P0DPkH$1)Gd8_59penV z{mBX0yw=8eqLwLvu|4^9#5Z;#xyJJMmoXI$#hW|E-~b86$};qO;WR}F@@zsA@=i&BM-9=`&D#^lICrnJQ=P^p2UAmW zXI|~1nvW9Mr`V2_1uBh#^iDEz>MfMSH`iQG1@qhEP+K!jUNgin$xm;W*Qy_zzX+r~ z;uhH8y0jkrOfal*zi#>^HRiF6Vdne}|8%ZUljP0=T9pFmfXzf^j-2)Hfldc~)waKW zy&Q8v24x>0q8b#D2o*0NuU7UwQ@Ad{j=WI%%K4*6iU@|^b*WUIbEdRB+c*WY?P3b? z)y{OT@&O0>KpyYAWHZ4zA02o!ly7gPfeU)e!T(Jji2~&9JT%S*;*gp4SBT!Glh<^g z*S{Qc@l_u%PC?);dD3Q|*#Wan&+UBT^YG)ms(WzfsgWQ$442o#KbIeA*?U37cK> z_QF63W|Mu2w4#iMILtqN%ift*KlIT)OaIyto#A~)=-dYP+ZpBKMJc(wr!4x=b42bX z`*4;ollU+v1XqkF_;AX+fqVe15W#b`HkxNOk&&9V&qF1lsd#J8ZVbcJ=mPN}PH%~C zFek{53fV2kZ~tibd~r2!iy2-v(R@~Dex!`Pqo0DocqeQ+yQidc?~O#&eCWt_oGbP6 zkX7xdPqCwj?D;TSVaO@kAr;p5c|+O&a)8qDFR_o;Ux;L6ZNB}E(c?VnQvbQKEiW4< zFZgv$YDM8B{r-+aTx?jhpD|fY(NR)nc4nc;oZ)?2w9t(F$T_ZO8GCV)cj{=e{?*`% zV?zsu;+odpCx-?LSo?kQW9qBSf^7!a8qEWShFm`L&?Qj&*EFaw+Pbq9B3 zl2aIqBwCi)`^)sgr=-(MqDjLE(Q2H4o&6-;HED7U22qL2l&;k1QRi$|Vx%$8{xXj$ zuf)?BaQ^XxWjk`mmnhWiF5=}V;QF-9{~WAbgfSa}2S!Ybin8413bO1gH^x-Ml8mq9 zF8WpmBu%U>Ztrvg_rqYs9oEh=GL0=gA9K&4Kmq*jk3WH1;O8Soo-^W}ZphYMkyUBw z*LeqM8F2zht`C|?83kp(tDGaG9ex_ZxLA`Ozt;Bdq{w4Z6;j+7x7V|gH(&9Dv)tg# z^myI&bpMgZVEqi$H95tscv~1cIf{Q^@f`zRBi4fzw&jv}apkfz+$w#z!D(=xud#Vy z!o$BTK7B9c7MMo`Q0cM>X%;F;s-Pdk4~huo4$feUHp%W{i)(3|;Ekoio@4TK3~d(X zEX|;v29K8Mcz(N&{nBnX+j|Uo$f zb8D!x5&j8>J-o0k%FS*Om1gTLlil3CrJkmc7AyYRUxprHU-n;-yCDWsdW6iIGgXGZ z%9fW1^0rUp>_a>3)4PQ{ZyMrg8SUXZb;40<;cCg;bCk{c7Cqe@6rM|M$SOY&l+gCA)zp0_>JLv6xsYy(wwcD(S+M~(etF5*< z0W1&@%uAm%c}Mq89{KFtb}4^KqRY7r6c_trOr?VVS-Ry87!69fY1>po#LBgOKNWp8 z1%vc=O+6;kQVxAobgyuGF7pGMqFj}56G}fsc?tUMWh0nz%XtpJ^F~GHTK(r6v0o1a ze#c2M9uz;!HzNx*o`i++wR_Zwj^}H1;Ra`yq}H-iyj{2t>IE5h)n@Ch8NdnG?$YXt zlUvcvjy!^tNfuVJO=%~QYc}=cX`gIU4!XdmMawi!?&zD+L`ROLb&JVki}n(zk!E8# zOSC~4(g$%qE2jn7jdZQo4{b_P+o{%8^YR@-TPgKoo=_~C$5 zp^rX5SX$BXHcxdN*wa6Ur>SzPcaut>Ny(%H-|&bsf^rKJ<9`HSatm!6?8GcXioNn9 z)Vj@ahtK>q8LL)`UO6ev8YxG|FZv_@RAgrM+iQ|b3~A+lE~J^b@*m@)nz)i{)B3#v z3`A5kmaU<(SW)Qg(4x|E>r!lfJs57+BPP`t{=DJsr`Zv|A-s zGCTs@UbYS34V8-YmODcwm29BIY$tOge=^1w>fJLI?q6;(PI1^%UVpyE@xlhsu+6e9 zX3#lN2-EAh#!`eW1&+wm<`!welRB#b4a%)EJ$>~F>d{%|#^xu3sT2{%k{@kbj#eaN?!;FK7U~er3b0*FD@G)AJ~hjl~O20y-8| z8Iy5`bsaC-32flUrMxz0Mpn=!_8VTy?KcQwv-9li1Z*$V#I3kAceS`E6G})ET1=ZoSp?#}& z{_Pr#^xIiI=S-ohfF>IqAjV4ceRm`74E^>d(goO@|B3c6u&DnQ`1l{x{QtEX?>5_w zibG{={B8@bn8l`{q-B&3IFU}TKglES109NW#eXBi27+2v*^fG;0KPkJJ1=B{Y7ibe zy&k9A(jc}(cr!F|{T&XXd1@iyt&2$D$lqxbH?DmU?dNx_23$P)t62YWc{>hF%2Z!x zczr1>e1g)Tc|29vp!jgr(3<}O8Ppm&yJe(WyEHn7e7V_dB2wSe_GHPmzk#+I`!*mH z%gIH6UOqK{VH|(xlMMJ$(d9?GX^hKa6O2WVcCt;4sRYf$AgNcsyIpG1ETKb#w9zs3 zS?eN}@2dx@n+d$qCS}rO3sx$Kc{`<>M$Rp{2Zjy>e!muyO&*@_C{VHZ_LpNKfO00a zjQ=M0RiLA4q==CUEz5YENgQUA0}KJ7Zf?a`PbY8%);=8_Qu*QH`knqx@~&Xgxi^vR zdc|)Kb1OTpKQ`_sc70jRSlwt?vVMaAFwCbT^MymDIstp>{!`&|iSp`#6LLJ>!MreTnCfXKLV#nNV9JLAk!* zAHIq6jT_8~EG)Jp&aC!sb!qw9r?sDbZUVe8GfSS(h#D>TLeQ=1(&F_U=cpH9gDsar z*#2nwl)Pzq(MzeajiZhp%qn=(Wr9}A+W~Yn%T3P>-Ez|_qb7=l8;n&fp%xKpO`EC$ zvi6?Fhw!6doz{($Xjx72 z%ktq$bVgHOZ;fa3zD$=9R zPLH-dIH7G-tOv)%y!I+g9&>W<89-OEZY%_cy1QwOj^jHcjp_)qIc$BKHr$qb9xJOT z*Q2M0WAGY&oVzRL9kj&^dj*G%b7Jy+#?{FvJ2qwZIjf|4^g~+qFu|GfEZ;iivp{=7 zXdGMI(RIq0Aj-dNIB2Xu#!@8ff$9c zNCfgp8Ncm~se8GG=8SWe=$O?xLp?XJ<+HX1Exn+41&&W2IssWxT%;#8f)_lF<){d; zu0HtT9N3}97Ul*p?}@l^;Qr#N&)2X=nH>POMCThjx)uXTe=26PP-mBVOds(0+F zo}{y?V_tXgyAW*3)S66m3FN!6*`*EuVA1!^tiS)xgRvqSyLAir;| zyB;?PzjR!M^6R*}R-eQ`LvW0S(w|sJ#tqbL>i}HI*3-4f6-?^z7I(;?X^_SXr2@ri z67>U_i!-D_CvU(z8#9bdDsR8lhO^}rUx&&KRx{9Y34Rib*bJ8NOtmZ1R3^hOuOe8J z`#LwqtKH122=1cXSRW+0EbCTSEu*KTzZ{(E(YTKJP{j06nJI?Ph|N^I-=z+uc$%oN zD6@0DO^h%sCDUvEk=_!y%tmL|(0Hat`@~gEPZ8KQIBAY{L;a!IO&^IJhn~=OIx3kL za(K%VX8|X?&tyFjv$i%4MHqfs)^ow-oEm;*InmVgg2fmw&@)CW+i=?vcYB|0FicdH zDYxB?{yvO-_jz_3#mi3Fo_d*Db178%DiKZo!)>}HMtwC?U6tm!SEee5`y;o-IbfP~ zv1QRTdST-*uTh;Wz!y!)_h)*oDQ^OyH7#|dy{D}huSv9we_Kr(Vl0TdcU5%QNt#fV zI+s11$VzC({Qj@rkh8K87m_;|8d&yD$Vp&iXg$)ocfoQ8wJlVaR*DX|J8Jy0w<>+gPz#at_ zA$09_eC=kcKd_j=t=FNuZqD0;N(@nPqF1|m^*1PNjvwn5n7a3riBGYxKUx`jSu$?h zSD#BM;vbP6KHg1(;vuZ2=5MRLdYHaw{meb$tl9ps@l~La^d@M8Thn2@`oLT6vhfF< z;Et-Z5@&PqJbprVR+eMQnL~|*p2tLT%NBZXysUU3EK=rr44;$1a-+&|&dbQ((WC~B zb~2hB_H(qM-UT^1vZ)1(8Q7p}$|Nz=eK}w%W!))kMUg+ zym&ciS6nt&hW@cH#Tg{3xjmnVFkImH%&Vo_cb?DkN}`>w?pD?LxzmuUTR-FK&23?r zcV`jXcX80m`F7Sxp+~oJ<@>MgVriMRgCT=Wy>hQ}nOIlV1+>h<@|^<5<7*E``wnh? zv0<4c`EB%?#X|$3!yQ%A`}Ynv;&=Y)47P@Eb=rW71Evu>b-Jn_vxBI+4B%Kgz7upV zUiNd+yYQAWmnph`96lR*7hbH8O;Ym2q>VuO6Dn^MzHl@cIm!Op(-kwgfXYyXTy)ty zL`!zzqWWP&11Y*Ab_BP!Ng@}oSYz%Vzh-}_a@XU-)|CKbv-8pY$%{)7X(t`idh8X7 zQZBS&em}(?{ZK!$rn;v9#aMrAxvKe{CHoN$yJgy#DpzA(6%&0SI1ewZ9zC$X?hZfV z#%%m;)!05r2ejxCy=A(v+he}v=Gs_nA1AllMtif%kjmSb{WF&<$^2ohr9Mz5J5KEF zUwZiGottejlvR%WfQ+j)HmNIB;dEcJ8Dja4oziB8 zmN2YeSc_hVA`gt}&RZ94cWXA+wtp9Jy1gpfBI1bEG%%}l>5*4F$p3s~gg^p;{Oxa; zUa`|JJ1X`Ib!K#8T&FI|IF2YUkegJZ)D5iFvx2YH9HAC7B&u9ds-Cx9&^k{e-FKPN@TWg_jtyW;!JUo$$Sgp8BIJ3O4@*)TVE@m z@oDswty!jE_rz`r?+NiAvBnfHyiZ|n3_=SVohGOqCi*~BQHa>Vk7gnHzJ9k0^u2pS z8c_M<_mCU8KktboftxLYdeGA~nXVryNQ~u7?s?K0p7W}#bd1ya^UL(4K=s+-o$NpE zK24yV=SKu^H=rS<7W5XIwVprC+eDK#4(~TZ1&-hN~lX zSiVPEdC)K+Y(XKKY%%5j=!NMS5+}1AvewalUTBGj3+aMuK6JqObj>+zo5RUA+D#w! z-noXn@}UO-hiC)qLwiZJlX+YBz^^h%yjO3fIWZaAzwjG;2{{CjO|Ra znk}(NoXFqo^fab>xuK-0V%(*<7YGzxbFGvNvdnvZX&Ww(JQ+V(Hd{%w+k|G$EIQE~ zf=qEb1SLRPB-9t4&Xr8}vt>lgG$kPvNCX9XF3cedQJb)dC|#048IQMmZ4K93l_%*qsn2DmX@}Aoi}gM4d{k`D{1xJ>GZQHC7h~U z8$H_E-nC{S%}iTUxt&H%HO|MZr&EF^a$=EI;p_SdRW!5wer>JvE5;@$4^iX#)2CU^EdHu4q9_5^rW>$TUo zy+JsrE?MH}k48@q;*iq5$Kmg{X9{=^m}Tzt^JH@N0smq!THk%o`~Q7IBx!~can|A%6u|Cea8;pN-@ z^dVH8)MSxB3hQXhBfUE4r+i8_MNi?tzPn_zDJ~K=9OU^3RHqobZ4m9TYcxz%AboSq za(UXUyE>Y+W3_{FoLt;d8Pcd(+LH}WFn=)<`Xx{3tJybR8VB}8)4f27EcJScJ6Rq( z`x(F|#&3iyVnKD`^F&koxs^?fSor1q(>Dt2#Xv9f=6fR3%cFGF28W!BxZsYf83o`M zpE@|J*-;*3Q7Nw}(UZb*{^Ss$9VuMMq|9(l`(qF~+hF`FMbGO%U|w z?{Ab4GK@$uP#9#}Veh`)N6+jSVgaP)WI`o@yis{)?3F{bZT7 zRqnW@ItcCueG_0K=KgS)XKtIUz1v=j`BUp<>g%E<>Zh|zL&?y2D!CQWFf#9o-pw>z zX>MLbC_nPK!D~%+GLM=Xf3CNhcPBv$O`zYAFqTG_iasna6L+Sazd`GNWWF7-o?y zu)(mGVRu=r9WO64a?sE|S~F{AwzU0QFs4kkGTSFKM%ilF0yTx9inC`raV9)e3b&0! z&RkT&d<%Zs7fpb;h2T(p2iio%@HDmCWy4o0FWZM~JhoksGp$px{h`)vod=$2;_gyE z%;XTCCHqxAv@>R3SZDAOm1+WIP2|>%aL@RsCpM>agN7(Zlj?*-^ld5TZ~Un*X@1#4 z$`o#w(Xf1swpvhHs?a2tQXn^)E>u-rFfJz>C{Hbxfs+$L2Kl1oidvrq4|15jrIjjh zitKp4<+N$(4;6*Bxtgm*&HUWlK!}U3RyG8BibIANU%atrOLBmxnjKh&;*kW!S0y$? zc{(%NEtTb{uW~HL!+0UElWa*ozJwpooQA-aFiPQz9ITalgM#?=STymGhz9*ifT#lm~9EugGo2%E}yVPzIHy&HVoMD zuZIvsX3E!`XN+yf&a>&H?QHw*eDPEZ4Qg=FvPp2vQbV`MR#eoK%1l!L(8lmDIHg*o z=ZazOMQJ4LRHxF^f)s~2nr^#dqH`r`H0I{GF_fqFI_^3pAALOFRHXtv!ml;$es2O) zH6X#qZ{-O~34G3_2C9E2iFLiClfVa|sJoozJI28XfF=R>o4XkRBOzqs9KE{1VS6=_ z8`87Hcap}kj=vuv_L++74G*F=Gp&zdP^$X1H)jPs9M=aOJj`8>iw;lYJ``nxYh!k= zXsJ+jY&>EFIo_Khp<)L?+#>{oy?8{ML$sNA_lsx(!r5_E$g9xu(Wfvz^oJVWa!;He z!TXF!WB4d+R+J6aDv0Ir5>91xOGaSF%%+FNDA67=6WdmV*I(o>Q0mGuN>ysyYw?W)_Qn05?_)?5r6~gM>U-{^?Xd-*f90{V+&5z=FgePLms+l3R3-a~t}b9FM1{ zIQ_Kn(%xR&W~n5hw4$X%j$TZX&3sBDkF3jGjDCZ+>Q2nhEL44AKPdE=cTzsE$kqRp zu{&YvucMNiTpu5Vo`}3X5#~qsifE6cjhA1G^cn1Mn#i^oeDE~tk)TA%rk?ynX{Pfq zNs%I|J!=iINZ9Q0^$l!1YBb~jB=YlFmK!tvS^O3E@Q{$eFhvh-WmA{4dw9z+dB=Mr zo1xn_G1@Vi+~6sJ7oIrOoG|gJe~zAtSu{0_@8QJI{`A7@x;qR1?93z?NLhC=zT6{{ z!#fq&pk6=I^CT?$a4Itr2;zPz>iBNVWLRXnTv$D)<2uNx4XcpF6?%r}t9A}>k~6$F zE1fFNyy`pz_cU(%hV|9mbV+6keK=%1tvTF*Thw2=i=`XMfx6-t?TnE+ea{TFb7p&>^A zM8Uo;*RRNk9oIW-mn^`8?r@&8wq}InTn+4C{Duz6^KAUCF!9QL(N}PI9-wa=g5Dxf zu=$$}eFzL9Xhik||A3<<%|SuQmJCL(QAz z4_{wtO#XX<@{9h0xQ^h+#pQ^FX5brnC;ztFcF4 zGyyF+&}!RWd32-2-sLo{FX>6hg!!(!=FO90w&Nw@0kcolKP=Yn4P{T$ZmNA!CnjbD zQS4=}&3CMvy=T?C=4DiL%}1U8#x_h)ON2M{oFw?drL;2Q-AU}3X3I38I-k;VGvm_{ zxk2s&H=)MIQcC*|^iciIUMLB8T`n{Dqgf>)-$&AtLS3}AoY<}bjGbCZ%U?fg6?(Nv zN$cUQ#E!#ky8@L-buL{me|Bz1LvVdQsLgUj3vh_7hAC%Z{Gg*PcGy>$E0LO6Vk4OZ zFz<03o^NGE8}0Y1Vl^Po05*jV1$=_RJlw+P_7WV*_LTwlb85?y3fP;C| ztT{`^a}#C|RFHv>kF=TCslG-?Duu7es!*DWtCu@(O~moXyJ=F%**p_rHQwIGSv(K^ z@n_(i_Ob+*Q@xAQ+QWy?eFJCk+whqh;VrM-p`VTFLf$(C)(ei}w&Xxyhiqpm&%=4k zP1mPA-N}K%^%wqwN17vIbl8gtO17J`I}A{Vz43QZm4!h;Hps~qkU>QRh{uH9+?vZF zH?^KkTKOeTnn-u#?5k_34%Hi;DP7dCKK?xxdu2b%#Qbo`%GqFg}l+HhfV4boWuOtx|%%v-rqf zPXpHXx4Jpa7vHW9{)u+@1})?Q@!y!9PsdctdbMZ8Uk!mk9mLc6uY)c=&r>Tyf(EJa zr4D0kZ(*CdI1JPUZ>6!WWzabnD=^akkld~%ClgCh>XpN}j2ei5Z|~Q>0{9Z%taAYD z;N(F%{s}>Q2GFAD-$36K3p%>djpty7pl|N~e2_d9dc?*5N+D|6 zjd)Sz#}@r>3DW+z1r$N=e}6bMJ41eAxq>4!KWzO?8)YjEG4zB4c3!8xex7jE$kDQ| zen4nJx1W%++E^qo@j8rI!~isgC)VD#SI91}V_*WS12G8f16_&VCp$>Ot8`kaUZ!5Z zbHVep*MS*J=tO~zJIEkE9Zf?<)3+^`8p)`aQUZ}cu$`zlL9uuPiBfkW2?_aByzB?H!GU*YYN5QH=DiT1?au-t2NL_ z;}v&X!KSikxdK#`RQ-Y8gFoTHuTzA{ZZJnI1=>w0{*tFX9%(Dy z-s_NDj|WbW-9^tkUsaOMMRD8FpHqYv7^in^|E*Uu2|1w>1&KQ5BorIUEyy%K{&;BK za}-dg5l?)rb_b&JTPWs-_j;DwR2-2G1&)r_6H9|#&s^G2JIsR~tlUuHmK)D(G)S#h zTV;8b8{C@rAOE=vNv9VvEx39vDWj+UDYxQ|8J?E%^}5Qh9h6y$Nmq5#ns}uk8{k(-!s+H{Lc%r4 zN%eu?7l|1nAK zgPBHqnAB*eWK;Wg${$JuHjEm!$`0vav5K-=aqw6mrx z9Ru1RQ1`W+O%8WMskgPWQ^9eGn@?haVII{3wR2)ze{!Q?&1NSbYqoTRuBpX&N!a$^ zHbp_nvF(b%ENb&j;Tg|9O}DV=5;r@(1lw_#?hVXltqjf!!SzN2yr-j;SP;f7_MWGg ziQmjR53UhlOy5?>avm;l-g-{_d;gi_egDO5feZ#RF!zjaW`I_TR`=n9`l?jy2dxu(I1jaW(yO$8kBQ%1&Q^I zsLmjRXRI&Y;t;8c0Ini%ZM&k;;4D34VDefLOj#Nwowo?DVLe1Y=bSH8(BL%j^hfTR zi#I@W#>>B9e&{eEuVZ5Q;Yn7d@OTC0%sm;U{uZY3N&579i~97s^O?V#`~to7WJg^3 z@Mgxw;d;Bx85{KB`PNTWhc%POds~_H_^QLoP=e+}eOYN!`WZKJL3|vd2U$R10w_WtXkrpQaY212G$6sv{od_z&D6xmoD&2m5_l6D(j%a9BF4jsi7TygF z(kgj>sBfDlizPF=!2&ewo+fmjF8+E|6}l*Pk{0hXXl>|$|0W5W-Mi&_<%LJ?aIOkx zQ$&To)jJ*0_{9sA3q0fw`*s)gHrkG3Ul3YxepQ+uz*GG`Iz3Yi}kINcz`8WJ)&O zhgeY|K39<&R}CW<*G6VkQYR|sTKaDeAB2ZXR)0s^H&;K?Q+-}AIP!B(90SuHf|*L( zS&j)v<$|AP`^@PqAhq9(9xXRy zUVHG-@Ai%m8KzeRcZ1m=PbpF^8}^y&#CPQ9LpPjY*jKqWbK$*axRKM`T!gN5UGTlA zAYFE6?+MXQC85hb{0echR0?LV_K%^Clb!{>D@s=N)m-D|PsoV78za|G_-EwQgXJA2 zoxney7f87w)kVmzywTAQYUlCJU!2poJY={AGt z1?)gdyC$MX%}`br8gqT6zWuT*+)-6%XaVq2{524s2kFyU&3=7`1$8xo(pKnYZdexp z-n_Z6pnqj{{A1+6;7I3H0)Oj4Hd}<=aZ=RINbRl^f6_!@3+iN=Z%NCdsHxRTJ*rqk z_adLIVHImXtkP@#Dibr0oz!+Mt3MP_Z}mQL^XJ1^QEWtr+Qr)=*I)FCJQO}a*L{`m z;XNnNI+&m&adTW`KgQu%_|-Kz!e-aAS5O=wbq9v2*GdjLCzO&aH_aO&yy?|v=5k8!)v z(pSm`CejP;0=M-1Yo8BNFjCDw=bdx8INZ(0cTg@53 zz^r$FSV0L-3kj2xC1ysw00bi|#RTAY2pCR>yP(*6#@1j0ed8=LcHTPf=C*fLsR|h6 zH!I$dz|od*)5lr3J3xR@sHOH!DD0V~h_)do!<#D4Lc1P#)R+V+QQH5e^YHUx@;s!_oC~IMP zlznVOy*p%%3TX6_k~=*+bh=H{YN+*&YtCLXc$G$#)g{WfNiEZ44Qnn@N^R!zft+!g zwOJ2ZJBZU4a!AUeVQLN1ne|_Te{x|J+eC|SIKOp6fp1W*S3yhMy85^}W`+hsp zI=S_oAmHP>ZT#MF>AqP{{7&W&ao=N{tq|w!$l_>cjcD|ar`LFY19Q5)+=m>HV-CO4l5QOk0~lO?`g*ZZXl=BY@e~DAw!4c$?HQCXJg23;TdeV z*xG9Enf-M@JaQfTq@z!CNLK#u`#@!w!*28EZt49C^ewuVqPQa2b>Q&@K$_hf+FJ>| zj+y*i@%QF($=dZerpUQoR&YPv9hwIwI+(N=j;gsk%#5Gs5uNN-<)*34=*+JVbEO)C zs^QE}ot4nD9YAl^m{x6LL-Gzk@cvNwC?G=ItV1F8NiQ21XRnN=d{Vw zin5+vOQ?n)MQTgPr-MV4n)W^)$i5vj-t&+mH8;KJD!_s=)9Gp+C7a#6V^s0m-RBHC z3X*K*?AE2~RWVx~<(`h=ElM)ToelMhk37YN8MnQR>5D_ye4n0oNKAzx1~x{cap2+Oy~LZJR8 zw-$b@%(CJ~1@PU>OZBheh|gdyL`27}lkAU94pooXt&zBN24@zzc&fM4pWk)8saS`p z137S!VgNaSf!oXCj%!dvxrs2=Fmda$%!EE%Ilyej@?U4D+W7MP+T>3>dQAFrIB{`4 z!W&0$#|v@Px~jj$p$3%6g@GyjvCI(%0WrEkx)ruivDBX%u$APVRKSOJCti0<6>3K2 zJDY=#Niv}-+N7+rs$OmZ>`NJVe1mSE*80=PlU!_?Dv&a!-=j$S=_avq&Y6lVk_wc_ zhY~K@?>ud?>Ih&UXbPF6(w{afY0TeD&K$Z)pDMgqyZW%bt{YvQK71NGE}!tL zQ(Zj7;D|}WY@=f?WFbT3-`9vaS}?P`_vFo-cN5Ipq^y~1|B zE{|5DH6m-)C3q}C#B%(Az5;31WlFPCH6>to1xP^Y9uW(>z^Qf^G85N(=%!akkw7+h zPYcxgUBqyI49BR)WU_T_0ae)L0}?m%6W*=oZ!YKSO)H-BLA>o;?Mhm72%En*vvBi+ zc}DM*ntUx;5pDMgW`9|kVK}uH$ zp-GK^$sgpPH^w432C#s5-z1DGG8lH5~0MuCMrtIR`!_esuq3CE!l)>EDWK zt4pf1UK(-v&?j;vX;ENpV2wjZ9+OXcR)BRMR?Ow!as9((&yd9+;QvwjJ+@~%fm_^+ z+CIhuzV=6Y-fnL<-$_A3&YqJvgD~#zN`Zk}(l2X?29JkXALP)RZl ze_qSr{M<={ZR_Sn6fpIl02lk~Rlx1C75Zwrb?N@!F#|SQ=vkcT(gWn}nBUD&yV!yO^^0U?n77ZES)kQi?x1*W*;^YHRpiPie>Go@sp>g*UMFjqO~ z&bfw$;DbD3xF7<1Kj;8m=~zmU1g8CVdeI?0bP z;v>`L0Yzw;to~a)cAFB|T&hVewc0pn1g67QtMBxmZD2!?7oY{KpIq}fQPkXI(0C;B zCX}pQ>*+5W51&0H50JFxfwp=cVfW`0By+pzKD&ZJ))UG){%T<85?7I28XuB`vd++8 zM2IGAZrXE$m4pIDly9*MS~9kHi!)1#l4e($9oq@ zDVj8`Dg=zesbtLmMVIp?C_^c;*Z%b2kjuV*dghK!eJt6Z7o#*C<7Ura&TBoip{0`Y z9rW^(b_O>@>_(SHXc=bn(`SO_$U#F;UQ-`y`k$Wp&fmVL_kqHT*_wZY-neTFz*+Qx-k;e^aFKri zdNV(-COzE!Iq+MqMNo!x^$_N%0ji)#cS=)LAD4KiVBg(a3k{o=)!(9{g^UqO;89;C z;kEEOk-%MP~-+jo|J7&4!471}$lY^=2?6L3bVb04tGq{vzPa z*!ahpF&zjrSN|UKj%Nr3fe(PFZYds495ai4DlE%VD4V!?VX`dOpLWao1wwKOR;o;5UscJwvoGk_|ONCMZ-(;7W3R% z@BxRfmddMbh`W`hX7|S(triR;cZ>BrezmxDN~??BK0<8LV!{g&eFG9tF?oSA9!m8w zB3nPa7;z#Jofn23&4jiP&!r7@m)t|au0H50Yc4!?5DkFFM(RG&anW}Ab zS`R{GK^nlaIxmT3b~_TDyLtXn%H%19Kt=}k3_A3aKyU8MC(L}2C+!1GzW>$c|EDl3 znF9tJNdwsfaZxPh!__H^6Iunf&Ogl5>5W%+!bg^(fC%9f>jBl0e%e%`zfm6-!?Ku= z5pysUm8+$FhNV&9O}NyR&F?*QB4^8gy9#=roiblGXERu;nIVgE&3Jy87Tq!5gdCk@ z=H)tSTYE%%6a;f~J}cdLR1A}5E@zpUX_WShl)MSD%}@%N%~$l2AmT&BT{6Xa>PXLN zLB_4FZxyn(fDeMWD#$>H(c3MpJ&cxxVdluh+R_fZvDxMl#g3bZ(ku-qQ*G4psNe(m z*tpp*fm5}MJE#TeJvdqkZm4T3lR7&Z>J_leh{Wj{%$?fW+?^ zy?_q6Fy0R_peWStWKR%rA&ua-|78oa*E3Fx*>fN(XN_A16x&WOA@u3XCMAL(mF%ABsS^uJamEd_R`)Z zX(5ZA2*ej-HMfZmB7fbh(ae_?^BdrjGScD~nZ;c)sj`54J&Y+kD@?IFP8qxzQ5BFX z-@GcywXR9&X|lY@z-et^Gnt_ejWufZs_i9wLN4_9G^-=a8&sLX1&+iSU3a|nuoqemP6i^L zdk}2DlrQF+GozoXejDeWHkO?5;&fhE`omt&1?sJ4<>fX*jiPFoQHzXICItpphm$hZ zE1a@2qwWPwyWl;VlS)ehrf_f?JhQiVdx?LFPU_5Vv6>-BlJh4W)M_*NI_xsx0-{e+ z*r79~rIR%XAH|)dIXDdJUl1jJpRTWCt98bq{K$~>Vqm72fiR`T z$~HOArPj>Tefq4lG^bicKf@lCW9FPebmS^g%ca103l+F9Z1IF&0QnklRNnfJdQ+yQ z*`LL9joMR)I6T4FSo`ogxAo62mPHfkSrKf$rSMLza@2UQm^?)t zt;~AMCO!F{U>fw$&=I=MY5@OVD5>O`;jXpdn9PEg#_uc=CRxm~wrw-&8rvus#j z5D#vq7x7@sZT&QIT5H;?I!peGEax9@?FEV2POVk_FjVN=ND9fc8zD^*WqdOI1je9L z@=K06HsEKmkO9?+=ed5k4lAzyk=&Wn7-Y87gyE_;i>-#f5EIc^y~NS|^$E=&REsu< zbfZ7RJYX-L&t;k9n2=$}^U3kOtLrY#(gi}C)%R;?F~euilSUolEW{?vrk5x_@QBMt zxN5tW(b9p1LG=mf01=qITTZYr%--F5jF=1avuB+$#>tVsn!7)L3UDGo`3wpLCfqga z9vr>%cZ%8h3yKa!uMYMeOh0e>$HlI2PBP&@a^p}(9qRxy^JW$4V zPYR&&zKO)T*2`+Hzfw$yhUD65J~0C1hGjMx@(^p5*Q6a^qxOi$8*3@q=LX;Nm+=Tq z>p(ksju_aZA*0G-XiuY!pas#^k?9@LgNN*|gm?SmeqTB(5uBUiq$DS^<1!{3z+{+J zT}#-;$x%z4Z7ybtBQp@taWju|w(>7Q;pNl@!i$tI!YSi5^D2C&iPp(W)}&R;;kP#- z=9W^=e{IiEO6JiR{k?v_oNULgHGQTY`xK7SkaKw3AtN|6=75DnflL>+E)W~=r0EZ_ zjeQ>hzu&SpyT?+SegBGBuSjh3DJJQyDZ^hZpt`Eb?h+u2In`%h!h;`k99KIv`3=9d?=dNiS(i(BLFd!pKAD>f*=8c`m8)mcr;Q0}%n zZq;iUaK(0bhRg8;%9DDY>JGMhiVOm?%gpvyWuOf)2BOo+F~SkEu#xX3iO-&+2UJ(i z#v3TH#f++co^t;{%h^;ZNFmb=Og(Xu((hZA3KNt0)WwJgLoHPG&?(yX;XsPhGtAbn zlDuE=6!U5qO7iRJy$|rNqQcm+?6BP+yG>Hd8A3-whqboXq^{rbdD7o7uGfqiqXxwb z$-nFCex)&wanmaV^RTfn_j&2Ms)*HH)qaM1W4@A1K@+s*1&xVl(_Qm0po)=addwtZ zTNYL)R7r6hRhebGjN<^~sigUVm(V7L3A2QLQ|j&Arv*vDC_R)nHF`-fnxU%M2+zD! zf%i5IHVxR;Tnmj(CA3zAcM7T?t8XvZa`)c5oqHp3G5O1?-Xp`RlRyJCL@jwFg+cd} z;ua~BDVCbd+Ralk4AbXaPzce2yL}}t^k1Rm_VY+m%m2~ddj~a{{{6yn-IaA!u&jdA zRTPve#UL%L1rTW>(wi6&B7_i-k`NMiaS^3NsnQjsHz|gaKyX1Kgdzk85Fj9gNC|<2 z5JD&??)g2x^PD;FJMVeU%=z!lADKz!n)|-zZrAlG-_O^Xu0f1eq<>w(nz^R$^b$V< zLq+p+TrB7QKh*HRAI`hS^iK-JX2%xFY(93WpM_@(`d zI&Y!*hTFK(pjVtb{B?F!;q?z&%-IELZdQf@FOm9)Tb8DyRR!#S*nCzZU$N!MfJ;j-rmY$r? zb+~^2g*?3VY~B2}w5WQpeh$vXydCXS7a8$m|GIA|$~8eaVoSkMwEDWlP=T`%D6kr@3p7 z7U9?4{~)sV%l8YZ(vvQymy+`-6I%`+0deD1!ScXM5tm3&OAa>smmB}P561(tIw|PS zwpkh7r|>z|O4R4-ecFq--$eN0{egU#w&?fc!dFixXEp}v>dHqO=&3}2nr0QpgsCpz zeeh{YdggudMU?7BDFJpes&=$Nv|irOO*n_Y&6|z%T&CsQjE8lEUNqkO)0NOHtMK)h zt@@J5$=*ahu#}>07}iK9Lw|W69YeKBQ;n>eX@Re`ReYly+;T`GXVozI>VT0rgZ+Sj zOwd0>uLx>^Gr}igZO*MsWZ%^t!w!rC49~qSi znv=WY1lgy;occo%Iz4=#ejn|QzMxFj;_ZHNjRr9U379ggyZWbW-{EHwxn&`2z>j~J z?OzUjv$h}5rn2y_=qX2we;va6TL%9sR(BZuS9w82(!b0%_fj8=V#~gN%IgzGjdu~x zKsy1O`vHv?=~0H;@H3%CfC&wr=&QJRWKFO8U-jf|DwCqVv*F|Tp8&9t%Zt9>M=AX? z%CPF+B@F*h`*`;+i<0yCe{bpk^l<<4rY5SZfmz`u0YIAfOKMF5boD6ht4aW6zl4by z8U;E`sCQn8X6*}SmHBL{+Y=|AQm5#*atyYQwCQ}F74ueAMeMCL{o)F(VzeA7N_r$O; zc`hMx&#q%H<`4fD(K{3R=obR^tP@tDrMVCy1jp}v+Wxqrp|Zu9)Ra4lt-Tt~ieYKs zJ_<)qIl=E|O*Ip)ZH$Xua5=ENt9_X8o<*uz_J_Jnn;LKL)@+w74SJ3t>kngVeX~h* z^`@SKe{M0p<%9@!++enIU9~doj;2RhGw#HAhB@u%bl_p$dI;58h->4w$AUdCSVtmO zrvEZj2_qtVuz9WWX4$tnv#E*9Q_nZrH;8(EPGC+3WWeS4^Fnd#hxa|e@28VvP(EmY8lkDF3| zA)99kT%*b%X6&-RkO+M&a&ub0r#CnRJy|}$T@)3?hk-1QkRvy()fDe%dzs;THeNZk z_#{H4x!!r5mQ^KQnK*;~svyShSM$gZwBJSq7uo)Pd~y#xT5y?c)rPp5(I>!Np8 z>mkLhHkEP27|!a$~V3d8h;K>SPMRi}wyuEw@?YJYhY zW-l_9J>>JLwW2GyqGr9p6GW~LML#P5LkyiVoKm>7BBMu4MD1Y{^SZ#(Ey1e8WOYW= z9BZOJWP{wzmYBU`%--2Vy6IA|oh6IZKkN+^y+O^=QHFLhyyJgvZ>2S{bapbIt3(5Hv7 zmV`uTc19ur@0Ab(Ls6Z@c{~zzZTO*NYR?1ryN>vhSWvvsC3})K?GcQS>1N0c42hpVn5m}6luR9a?A}*kK~Acdi*w&_Z`MIBIgAwZbDWE7 zb3-%lPn`|`kXel!ndpa5iz&pG(={06sRur>8p126uMn`jZr@0Yg&a# zo^pQ(Q|N^@J~%y#91^&u9|@JEJv`42nJlYMp+k(T-S@)iy^!EB(mc(@EDv-bL28|vtjHy zrEYf1t$z2E$6=km^*%jUs&ZgsHoQhHQMQ)JNgub~cg1R8CAJNttIJ3R$9*u?BwpOA zcOs6fPSqRn4~$UAXr0GDERdXkCHlw0T=6uJOpGMqMn}@$7YVDLZ*Ee|F>M-an43AIBRhlG? zguvCD!#W30WW?N-(~=|3!I;vMEO-y;Rwe=zbNuHc6<* z_NsXY1+C53kiuu1%q)^DjqD3SpUz`cJ~LmonM{-7R?>^@_+Ma{(`3I~tTBiloRszw zQkr+HNeF7)qj^t{a~}P0EV(*J78G?QEBn9+(Jd063#7uPH0q84S*du-?8t;M9i zR7oGV%QV=lGZ-4b;=%3+mmCG7g7%E^p6`aDP6>xQ`sIlxHh3X17ORlXePBD8Mzs;e z+ixM}#fX1xdkiD8hzx>(uaprrNqg>WjXZCob$u}hgXTaxpnAKGyYhSHV}p_5*Dhj0nvrOizItfPW?(A`d?$S_HEE50 z9)fpiLg%D=`|3A64}MT9Znt531C#=^t=lb5K|WAxKP#btuBiIC*JpcmlUWxFHGtqh z87xzR6LmP1^_IKbnMYrq<(ao$hQ^xqP0($IH9w`|AS$e{IOwnK?Abl&yB6F9=>G6m zZM1X-Wuj(&gPKE+NHb+=**jFTYt`~Dny06k;xDv^jC}~WPKCH+eJds;|Bx&jBUXFqI%Ei#VRlZAKh0yc*7_r=_E5wRcvSjX?Q*BV}*++Q3 zFew5?pB4=*y8rO`b(`HuJEAjAlPvgQe77}2Nm0S=D7{j(4;o4HMX_Ix{h}=6?BZe~ zo-8nNn)|lRl`IwQJKg1K-u`E zRC z$D{)U48PBQr^9bZ=2n9vDhDHW!dG?KE)M6B@6u z-jA>uHu?o>-N6V+pT$vl67(CiRiZ)zR+WKs4`WMlE;496@bSxwqCkkyZ=d6SP(q|J zAI9|e1wWkROWWjHK9BNQ5R`>1G6p{mhP47FwAkkkGP<8)K{q@T_%D@zFxSdfVXgG@rOBLDde z_fsMRrY`+$(u{UGfgHlv^{BdCN!9tPemT1t5_Nx;|KM~m`E2DRzK_!|F{5#O#U`a` z?4t8t%+eL%+`BzWoTrq?6vhS!YDr4XcD^l5_nf z&GGMOT1`*zH}CzFztXF^xD@QCzzkE#b2;Ucv31G4%WM3LotbSn+rLOXebO)n)eZ0K zY4*HJQqyV>Pgwr#VyI`1SNfC|S2mPx8AosqZY^_m)g-+ax%WP-HC7sx7!3qnP*&qS zN+f-hXdSomtOyGVz2Cz>(;8k%xIg{2<*YFi@vdRd^v0*mlh7;}WAU{flJq${;In){ z^lf=xyPO|2bHs*MlMf3bFA*o`oDR}UHvUQp+jvEt-_&J+(@8B46l?PI$!HIPZ0kAs zdJY|1e}SawR!=uSmP<=H^I>bifbmO-Qy z*^5r_*4jl@%KVE#wY_RM^B#2&b*NDO1*gfKaEz`h3DKo2GaP!`^GfS4k~TU&@EcTN zl!>rp5~WZ|16vYTpQldD5|Yl-f0~L9?)fz|$n8|>Z1$n<)sXId_pqj{b7`qL>#T#! z@*;KeDppa>dc2vWZ?|EcXpvumj(sd2i>x*dR3Ys@CP^(M#q(}!6r6%oVx#N0MJ?Ai zN7vjzXQ6vzx3Mc+i2K82*g}3Y`=pw&SExKuRd0kyn}Y`oPfQx_L?92NM1SB`BnQ| z!6bV;s&aCkX(Oo>xQEPyPb$;PnPcx%i~AwU!aFx?LM-GD!jEdMU!xWhOSPfQ1|wl) z8Cpk>B}JsE(_=<4BhPmTne+)M(qNe5-31VkXzCMTLsi|2@gu*O3Rb4{ykj}H$|ZQC zh3tm*>pcwf>RtbarFZIIP>!v%3d(s}MS81&M~gtg?I9i-DTsW8adRi?E}4jy;e|rC z44k!FUCyaubrLgNb5!YC>`!aQc_{mp5qR0QhE|#w&-Z$UcG_i^11xe$(e@~&cxwuc zaESN$@~*FB)_Ghb76^6eOYm6(C0GmGN9wG7ZBERJcYjlYCTruKTTBkjyPSkh$@SFr z(v@~jBc=-DmjdF#&@HvZ^wzk=*r^TK{3)@tIodh)GgMxDIrT%bvL#1-_Ko^WN+`$f z=QFq53lfO~vBA~b@H`Q!trM)!yaD&jJROpq5Dg8A)y}dP0)Uu=ZK`XObH7upD5Z+&RF+UnsSV6Bt0y8v@x{?BM%r1{P0vr*r)c&06Ep zEIELL1DYT_D@|G{6Q!Z^y1<1f5=pte=3__;<`5t-)+XuX>+J39IMr5Xu53d#&cECI zWGJ=r`Ln)5vk?anKP{L$3^^swS2A*-AxFc*-mkXyVSko8w+gH%MI*S-n4)O3hWxnX z$Pe#rszcp_mz^Phan|f7QLy_mv_nrCRI!RJA}}7IpX(qF;9D9?0Qd`uOaB%e%l|XH z{)ZpQ;m#z2ORx|fg)h4nMF+T)jW%BSFGMQtv+DE>12H5;e8F-`ph2mMJnhGeQ7cq z=e*gQAAw%+&JXeZ>Fe~&3^A*BMYH`4&yjah$uc;0P&pgl5be(eaF05+s5!gWeHfKbU}DItc8$mZj4$*KYiGwPvpo)&&;+EzSiYd<@Dca=g6Z^kYlBo=>r;d zQF9Kk3~**AYP5JQsoW>6sIsq4)jhRtbHI}Yj15IEI$ULKKjQfceeN!yH$Y$B5qtDH zhmpd?2>K@`C?1AxlzWRC@xQmi~@b^7UwFT;V;0%{}tL|?< z`E1@{rp$;feVKF9>|f#pTg_ex6xKb=eU%osIG|*L_NNbSzf2=WT^zeHkG-sq66BgFlkM!2IBp!tUFEjKaf0<)ueUIpdXStS9&OmySOiP0)0o7A(S?!`~lB5CIf<`9?Nal=WB z@UxW3z;@N|%w?a*PNcU_~U)YvfTqdVUt?uHUWcrMyBDt(cEf5T8{XR8Cv4T$a+kw(V z5InvAY^87NjOE#evF8LC(FC^mx;K5Q)<9@whHu#r+FiDmW37w4;a5EKa}}17Y?^>> zd^15rg=gSWQLy`93K5)j|Bh`>3f^)yskz$8iA8a&o~^0(k?$LJ614oqBTM-RtTRR3 zTqj)qnYo;Ia?T096*(gM&3P4rEQPOmF!_)G%{;{&A5@ytQ-vDC&~ivm16mY|JZy@{ z4dotQTGMAH*FUwgj4GtB2sd|O&;IZytKRrZ6y+lcWQRQ7>6`ecF6c~xrNPFu&_;_I z5Q}^(WOIiI&RHxEKWppy5BROg`@|oIX7+#CiO3}4F#$k{UQooqA;%C8gMQh5DDFAJ z8V3O>8dsNXX>~G(O*0fEt9;qF3TkuLFtV#wa|M=4Lid1ZYoTyQu)22vQ!I#Voqklr z`TOGrKYex_s&J|hI<0X$;`|!Ef;<;BmK^HJd?Xk%P{$BM$FdpMP(&w*>~iYE3qE%C zY^JuQ+dV6izR%`|>|~hBDc>wegROh)5YT+HpkgoG02;dwE8ak1SUMM zBRB?L_;Fm{F6>s=DIE3^t@?V%okA&TT82b=*vk~&Yck!vxG0(Z;2HSy{tW9nd5IRY z?H@vDfs(|vjk&R;`ja(%;_}m>J*`e>=n4ZM$46==wcGxS^($<>#STjiE9b$7&Udic z9x-0+83IRxTdj%xwNnv^lAk~yziMxvGR@%}Wer5LjtU2HO+jzwFgno4tACd~?)#uj z0t8y5!0|*0jMFW*o#Vc;{k-vCTfk5KA5k0<%?+#4a5{_WbJs2brVK=25itz*w9xAm z?%n7dQg#GKNQ$NLbcM0(#3O$gjlEJXRn8;vHIkG+XNkYgdX+F>(_Rv*8*aNow8QUx z+Pw|yR}o)%_k5;H7cm^La-yB-n_*Zw+(q9COp04MdvGkMPhd6ZWl9^J+*M6GE&Sbu z?1aXmKRmA3P>@z7Q@e{5#_Ba-m_j;k6hO`?2tHRCkmSwNfbyC z;=}RuJm zMMJN~YC!JJNj$R=kICTHrbFkKqN5E_W3(N0&bNLFD@D6sS#S!`qN^a{a0ov!5}$8K z8Fx1~8LHXnGb1$evYAn`0J%I$NKy44Xc#zM)p+kHR-JtX2ze@HEix6$A|f!0K^lDc)wBU-NFoueeL_fh_8e2q(f540g>F7i&4B zsIB$7-g!Li*}g`vftwmmvL0KpD!F6KED>@qcrRC#A2WrCjBzkqG_ci9KffZtEaVhxr2*5o#P9Xjn zN^(x}x?5X~Bw*qQmgf3LFbB06IkM-;yv293pgzI@|;PyViL<+lAZnyEJ zfjl5E9Vri3q1Z2N$}s+obXN9kk_=gsKRnS}`Ujx`0+at4B}e^t8r%Qn!xd@AhoG2P zg&wE&wuD!}DsN%$L+*-KdzK=QObWN5Lw1Penis5n zZCP(bVkfz?AMg7J;G?K5QdOOd5ZywTR~Ap zP9>YTb*UGxkZ2Vi*I7?|8)lX}I<~FYT|v4E@T8O3X2OhXHM> z6cOlZ*}L!+)82MDiq{yj{VSJFs+KoF9;%IIjvtww)I3`aTmNyz{~c7wbY4lPL_OfA z&$M@!)-yoa^r*d^OMf~gi(Rbd8Pa#p>)`EwnVpil(2*%GC-lzK!=vqjP^EduPK8zacLS+uLzoLUgcFc#S317dV&1YsND>FQan>vkkARr6@J^yk|xKm zfQ+`~Hz;##-`BPR)@4dgxw@f7saRFuHq=-CGLdVczwRywdlzu}0|NyE2_eD8i!-sf zc+WdFBb<&tAyI@A37IvZu3+??a9y7W53$E&eobW-uWK{B^Y*j)ab$^JuSEzs{>n(M zW~l3Bql}H4Ejb&4%V>-!aPEqPM-44y|?mB{kA%b~!vJY@YaQq<>uzgzz=I^`Md?-xc|o&wj$ zDydrzhN%UQg)H=at8{Y7n+m_5(~TT~ynrWfyG!}Bl+7e5Sj#8ON>=WjhNvR$K=Uj* z!b3nj^c|6j6RI=Ly2H^T>gmz{f+y7H$gps);|d_Z+sZ53{l zy_KV3uxZ3nC5ksIc#BWas5M2t*xdr-(Y^kb^@+e znrHjzZ^RtP;9_{)w*N*`p#JbST8S=$mY5A6_i>kI@OAjY_zUEPcvyi3TQlJfY)Fu@ zG||H^6QnV0@jc#|2DaVWSw<>kzd>NYN<6*e(|dX zXk!sCOYK?$?k$O8I#?$C{V_hjoOv1n{%0Bk^TLznz=f_1V};?mTloI&ekMvJ2<||n za%+UlRZ{kA*pB#DbV*=mx7>qB*N@J&}ilP zzo5~QZ+j;aw-j_IgyE|q7?>Mqs!GDG*KK;HrV*kd_;8U8JJr@x-3wNHbI*RTb+oj8 zvQ~>O|7;^T3wmE6yQ01S*`B$;u$RuYSD4l18+v5oX7nhnY{iBydp^Cu=VlMyfm0x0 zX&mSF^3QbqF)D^Q>AbDy@{q|`VhH+0`021*Y_v}JtJR8b#Vaa|Nkf-;iFW2_lrf6U zUc(I4QPGk^UBGtBZe#)4_GZOWRTsJN6w^(kZVc#RGcPpRU_h82zv*x9(zUETKnXFt z5^_s%O0ozKHG*Ay??SoJ;GzJ^UPGxOC!(NAvwv7kM{X$UgCcaVaB7bSN8lCCX3kOu zM6%zOMjFq4XrXWiWWbj)#wv&$jBQ6;qm(W5-zUcO;}I`4u+|mRipe?89(^^<$@%hXa;e`@yaAhD&W15*K>kxKBknXLMg9tT-`aetg}wRPvPQj940&Y8(#* z)6go%psCO(@9_-MHw_?Q+7Y2_alt7BvwmjEyxlkW{^c01%4cL|R7W`JfK~4D=W-RL ze_+p%%A)=A54Vl;Tkd0ig`oSARS??XBqBo3c3!wDP$#Q~HY*3sbCT{8{)W^}mitNk z#`$Hsi}{Ku(NZ2)eGfjKxbrY~tc$~vh2KtdN=h&Pz37(4gG`gD^N373WQd7g6d4fWrW!p2ZmR~H@$BUh3GGIh_`k3eptv0Uig@eD0U^!7@Ps;lRX+h#(t6jW-@TOSFJ>BU!zf{!W9rtl)hzu{Ox@wGg-$ke-}Nc@+La*>Qi$3`dS7bJ zHAY~Pm&xwr?o{1G_fB&v1VUC9Jq^noJ>2w4>GEn%6!Pw3yl-o{h)0N_2Juj2{Ef0O zhwj<}^c-YrAnXh97n)SKh1lxXVC{|b%3%OU4ca>5nJJ~H*HA+PbfBxbx|Dj$t+`C- z*}ejMm1v?+C1TUc*XLIUx2T^E04AC%BH22p2v$nsiDWWKX`uCu8W?rPO^!wW93z=A z{7UnVDu$}*w4|N)YxTYi`u*S%HbSqk9|ny5sA`FZ`BT zn-;Vek$MGl1C5F825hQ#1sjQ=ic0I0eP!pa_m$fd|HoTiak1)u0xQ-C-qJ>1Ryh$M z73d=SRF3c_<7AWBPDLWKa8AyG2tpBl2IvfN$#Wj>FfV4?P7Z0(2s*l6QtU*lCk-r- zy1_p8hZAn+oOGPQP3H_$@e}dm)7G&Du3`rP?i%#H!ss8LxD_S;=;`cf%3UEz)CdQ= z?u+Wwhd<+g<$5UP9VY#i!xwdu*ECn|`ehCbT}C{ zW2YA9ub!Z(w#G+hY0{U}3KE{p|MVAZK$@>N&8W|r4q21-=}|8}0$BON)2ohyg$EL^NyF@65xSpKa!?BIdeCBIyO&ehHul5w?SOJ|qMSKg2_% zMD(n#p>i%~r~Ed5-+OI;1M#Wdz&gZUgEs)6Vqj6FUVXP^SoK7%A`~+bfZqD_uukRx z>`u`dnF5(Gjb13Oezp%tGwCoHxZSz{J@kIa>+74%f^=1id{qSLMlRt>m~Xqr;tZcI zvA_B^O2bb0(A!r;Fac}8YkLlCUvX;Zd(~(-^7jQL=gY0S=SbOt#L=Dgav@=Es+vzX zVHL3YgZthTCja0Gak)E;YK) zxKG=BZb@35-n>70WNz(~Q^sT5@I>l|WDp`rna|0 zmPm=q#r`7=IS<1k!*CyKRAIp`S(wJ8QxUXr4(^7%O(NslyInal*Cqp5c36SgurpRa z(elkh_WIb)YS!ioyBxu2%-E_{Uvd*e1Y0y8m?g;PL$xft4ExJgP~9A}xTRKP)3L&p ztSsQ%R*4WWm4@^5$3~kc8|dfn5OQtNjuN)xKZE6T)e5STJGnp4)^3nX59j2}qzJN15W&GVDhUv554>$$Ly^LY5easCeUfrYW>?^niTv!M2MCwTQg6 z1>c=DhZ}{>aWB^Ix!>(hh7SadnHCDY$HO8-(Pj9(N1eSl?r!4!+F1E^9B+60ghB9B z&bpbRw>DN=gGno5$JghaXc89_T)KfCDQZfevMiYMPWBa}X*M{-XQ_qskT*qAM?$T( zhwe9!l^*&OU7c3uN=3S*_GdkQOx2+b#;Yzs(=s3#@iK#MnzQ#Zz1?BN<-q8^$KZNV zC!G!l@YNlZwnhfY%GkM^QgoP|O0^`fYVY1W9U1tTLcMX3N<*FKFfgv^VGsWi zQggxUzGsV3ud_R!feY+R#o6I^9ZG~xkAA(ic8!N(N0f)lx_9#z8>_?Bu9%e?W^Lt% z$LCV&p-;Njypv1MB46y7PR2?ysOKzo4&eVOiI#BRQjXx#!Q0u!p^I=z5V2~sXAub0xVUoO{^Fs z?1ZAGS}PuxC|Zu~ol>h5qGj4ewAmo=(YU2zs6v}e-RhOb6m~D%OCR?FJjB^7%so%~ z)(#JxJka<}&HNLgh42dgX!4cx}drj zj(qWZV_mc~F_oPom35*)O<}^*$R-_;B)Ifqo6bPftn{egH2T5S(n5fdt7{A~&9en~ z41(Frx4@WzlnPkcL_5(_8Bk~H2G(Z1A_aYaDqk0pKI(|lqopn{e)4R2|Lwun1bn5b z70Wn+8R-L2UrLJAV@Krkv#(2GTQskTqiYKxG9Chg<-*}O@PdCfao;q$vN`#j%nu08 zW-)eaz%ieOF^w@T_*zU@Jg2h0CH_ab$dhJtn(}TTDpJ`37!)YzFasiy`B#yF1=_Zc z=Y|cExBaRjE+*i&&UIaodDxz3s#~(u7iY&-nMn>dzK^e`J<97WdgW0SSY{%M(UbeF zG>5K%<6aL<4VZG!#rMqLu+81fuu2vNF(15Ah3rdobB&?D+cQIEAs;K~ggZ}U)-AR= z7kBB_{k3r(zIw-! z0&HAFq;FPzk0-c4iKV@GQ9Cg;=Gd&2tvt6BW8pYN^Shmr{IlJ2=DsbU*VC!;_uQ2~ zX8KdO2K*my0q=zEB}&EEL)7YX#9yUl&)?f^_qZUofWJ20$NQ2SkFAGhg&JO@7PPo3 z&r_x>l4!c@w$~Nmf&Fv|j6}D`83bc_cDi6{`&2j7!KPNXRxy8N^n%=pmZ+kE6^t?7 z*^@8II#PCU)%LJ#s8NOdak*Q31NG~0iP6;CQoX@JZGvA_d=DGMs7f}7stesdh$nsu z-<8!mjP2e6oq=jX;FIa?4m*+Y%@Wf`TqC}}Mq;CzH5c0}B=dSP;M2YEdmx|b-|HpE zk(IJeX7wa8ZEN6e4VvMMcJF+xkkec(>y{{hGiIj;E)S;l8L(^LRDSRM+4qX~DXR1D z^sXD9wm0vyRr3F&W8_m=Xw=>1y4ekigeE9!hp@Hspn1N~hxJ$>xS}C_kOJWrh7Q+< zXzCfJ;tB`Ib;o;y$>gE?r%6RF($H}-Dh3Xn`mjLWR+(M&!OnJ;Pz(qq?BBddQlRPr zJyt%Hp5dg4p@sHb`J60b^h(3ccmny9MP2`h_4mgXhR)>!uWNc-S1YB87cCT4dQM&OK-o@; zG9R20B`cVsNNO7wdO29b*etJ{BA!^D1@7HOSuLS+ujA+5c=|66XpM(L`wyl-43^-R zJd$x!@YN;}HDo=ma~-|W$pTw(HxZ(23FLh9@T^EiHd6n`LVY93Znx1k4~-i`@mZJJ z{6FJwb{`sx@eXv-P0_;>CJ|BxB7oGAJk1Pq&#}#7QFV$8qW;%@+exw2!=B~282@_9 z++iU5mcVze+8nyiyi9Npgz^_=BJqQ4J zrr8{qKawNO>v|Wc1|=NPbP+=0Gt2|kU5ms|0W@A}`cG1?pVs4CiF2zG4v_(?KkPu@e;45F!5UQ)5pMNXY~6j+i4(z-#hwSAgp$Kwge~nU)&B%& zRQ}(piTW=x`u{Gk8U)_wZ!+aXI?Id%V7f?j;#Wz34Xpu!@IzccP+qPpiC!Z753AGb k8Mxd3x5et@c)+g7PZd4kplefJ--lb6+T5tRcJI&s20G*)od5s; diff --git a/command_line_for_the_win/1-next_9_tasks.png b/command_line_for_the_win/1-next_9_tasks.png new file mode 100644 index 0000000000000000000000000000000000000000..840a53e9441d02c679d2d5217ce681302de62f0e GIT binary patch literal 138336 zcmcG#byS<%6E;c@1xm3}TvJM09Ev-%XlZdME(MA^6u06|DDD(#ffjcSF2yxC2^t`{ zBv|04=bZ1H^SkT&^WL?>BFTE+ynD}{d1mIBnMhS-d4h-34>2$>2o&DPsAFJYy}`iv zv8QW)iG$8g z6$^kT2FBet1)0~Ho<@7wxF532>uz(|6Vsn1eyrwFO8o>8)U(ok$U)BhfHgw<)imC& z@jbyPPhA4t6{pCu%k zmKlGJzO(0g5m(b~5#5Oi)J*rAt)LI)Sj;>gFyr?;5$vwqn|ZP17l0*jV~a20w=a>! z%SCnPrd{q9R?a6-x0FM3ffy^=W zGW@_`#?xQ#I6ILb54`%rxj@mwn|qJ#1eOBsP-#NWL3RD(6y#9a%{<-L)aZYHnLf#GSu5@i~Y4FIQ^$ZjjsZH-Xx^y1e@4{Qf?* zwR7((yGs|}yX(8ar6q$UKV*PuSI9BALKGI<%wz{ku>EAD^kM4&nv4_4e(c&Kun`r9m>(__^E--K5?YDU6=jRqQJCQJ}w3R*4 zaZODu)p!6fS6nl6&ClPKO_i@JtnFI=rFS909V$`mW*6jZMydFz$Mj>~i0^HKO3`W< zoJUn}BI<<)o5h%uj=YCC?7(6@QpBc_V3X{gExe=4&dwV5DYq~=MF8g_&jUnEJ#+%8 z#OCy2GQpr{-t-Zd^%G{%+F4IKcY*ixEM9+9dAfP0MOZk`dMZXk&}l1(}RFnM9qG!R+QL@1ZrpHinX$wgJ_Tc3dh-qr4prIAuzI%9!?iaxpD0fPr2u6A5fgj8BP6c6ny1l#v-Rd= z=wj^dMr9fd)@z^aeo2l;&fXD%OY-Q!{o!fIK?3AZP;QpO$TP27IP5V{Fk)-#$!*nS ztn1cu1}0JZYrcFpYRz*{n+Vn_t|vAGs=ny%I0JQhPQ5Yxz_un zLD%zgdT&1ojah*2(LK@)7!8*uNJvO4@=~EVHOw4Bv zj_F=~ITg91urU`E+0IRZkZF=*myt?9TLVu{bsh@&_|I#c&A**D^5U>(z5^L zjwX_>CBu0&*+;G3?GFQMdH*mx3H_kfJEbbxWypM4V=z=-cZ{*O06i(pdJ>es~QVKfDwSWH}ZfcM1v&T>U{XI``U(cFh=ESsWC3 zg6%($Dx<1D8-*FJceMNC#Rjaept2*3DW?Pu{`^LWAlIniRQX+XJw|2&|9aP03N#bK z#oMOGXD;d|JYe_5cIV|t>Ij`|jI9Th$e6HMDZ@VBAZD*D4*%Y{a z*F4zCGr=`arW7JKJlvJc2ToVBOV$)h%dQU}CFJiCM(|7fb?v?=LK5LxcjZg8hS5pE{);T1Ka|M(I$ zY*I@X_7^dA`VcA2+4}s6vMCr24fV^RcSy7AEh1HaE6JN%3$qP;DlzK|G4=e{e0<5E zZ{K9&&I^82leX0RMMPC&+R(mN)|(F2{KrG7CEW{Un{RJ1<#VYa;-WsQXjpE%iM}2m zFP59k>#?X|oJl6Mv=P~J7hPLhBOdBWhI7CsD~p&33d#a8^ltncGj~;uwHb3WrA1i= z6=JC0{Er04bFyQ!jVXJvz>B)a6)$`dL)T?kSxI?e(Sq}j_bTTfKLR*P+Zklp;VH2b zQoYe9wz7Wx?p+OcluKrQ7He_f|E!ado15G+D1*W^dQs%X@n$Ar zSJ@O=_`;*Am?i(kLMa2<4=NF|Qc^LOd&k(T=ReRtnY50_AJ6(9^=6K88O;AV_g|y@ z^Q-@Q^4|he)}4O!U%1I<9%PCBpBU9x!S$lCp%pgsNlUxI;MiKDhz*25DG5fFKuV?&wA3 zF4l)rpI5!FpNyNLivKkq^q%^0(0dY*S}$V56GD+N6l^C=1(y1D=gJ~ zM^;>cjo7~rz9sQIJ$!Xc&Y$u>Lhr{y|AJIcFJ`FOXB7in_GVg2e%wmYQUFfGSIxRz zo)61!p~*#ov5xn0Uclx54Hkamg!l9-?;j*Icpr%{Qw%VD55C7YFgFkg7zrL7JcO29 z2bKXa{BzHP|Dy>}`S^4;PsEcW8$w%U+x-P!`WhU5A0r}-d4GkJ!~jAtHR-Db{%3uI z<6p5SHHfLDT*K}Oq9~k3zkTMNxmu;{6#CX8iS6$}aRhd`q_6Z>{qM;pbw2+yxJlOd zLpe9smENiUFp!rMgEkUO)c(Z860mM~vj zjWBrdbGP-`DHle{q)-M6&4O|aDF7$Shvg{y8pATfP9up~tO~31gQ_}*mjCR6`%)z- zo2{4Q>*;bm8+#g4P|M@G7XkT&Wk6j~y1-ld|Lm6uqd5xoOWB>?v>he=VME8Z8&^)B zEeI$c0oAWiQ2KU!ro)Xl3-MucXmuxkvDpNTXb`~hEoNiuyPDxzJ8n7b;cY419~^&$ zxznzaK;)+5<|;CJcR0S)`PFJwed#zD?%ccdv@wg&mJMqALwcu=U*~oyyKzUGrnD>s zd-A$!;JHV`6?q|-cgKQ6$au#k^yvV{C-cSii1afu_&dQfr02i-Cj9zqpyt%C4Ab?X z2$lGclCKk&e6l#MY6#R=n|D{CR|`C z-eqiVXvb|v7pG5cU_Fz$UgSUvDuROh^KblXry=Y7){}(_i7%8g`2KwJeVuEE^g1!S zUh4@ob=o)RMH3QC4mXLrmnsovuCf%NYeLcdnaCVa(G{&C9&GuntrzeOgMEpD_q{sTZ;Nkoy=;WR{su831c^WYwO^*+fRyCWL_b8|MxV$&q_f;7 z?=(^&K4EN1U*IfE>UtGz{pPf`K7 zdauGc1zHSl#=WQObzp3U!Pi{;nbK#-ikMoh3{xvT;gyp&~%=G+68uKYvsuw;GP)mR~cxi#7SWLdC8a0gL& ze|}})O}6||axO(U=q&xI0Sd}vR}wQIU$L>8DEQQ1DxVt;IqaPJ2{r@L!U$5eFD{W4 z{dgY69F`I*>7np%^lqN+3hZ~uK>F3oGH=>aL)?;I%+0(0>}KK*V8O{aDgo;Q!W~%k zIsUFH;ms7{Gp3s!Wx*mHA{Tt%Lttb5Ge>(Cu*YoJKh8LbB&xVmf!|u>+tgft(CTJD zP%qbg3faXXoRV!CuKP$@d$-($^UiRt{ZFNJ7pnU|u7kNqGlAjOUr_B0Jab;l%!gsu z!Lpcct;s3nyRF)!t@=SgH&DR$!?22~=ND(l6s&hGBRGyus9;$`py19Lv>Wd2L=;^4 zW@^7R78&QWN9U{PC z|7%B6kxBUu(}g?J%EZ_`3)+q`ps|U`Z$PYu+Qrb;&PlhSAR>sn+tIFV1>wr^cs2Cu zO|;48AaruTtUHXs(JFVLjtIxG)g#tTN>^YTG+;(XF1SVm&4XOnnOR4#_vLFw;mG9GZ9M;PsC#yKKUJm`Zy-JE)o0gjZAj4 zb*FOT89^>RNwE%fX`EvhI6BRVmQBjX)&c%JJVZDPuk=WLy^Gv-Ie$(e`D7_cx@)Jg z8(Jv``)L4rR3>}}qa74H@!$imU_j*?b9pr46T~G$3s^dGnqBW-0T@91 zFDIdc;pIe}JYjRXozadyB8}frM+fk+No^wI0{5w@PEpQm^Lh%7R*8$FAL8;Q-G8Ij z-|)3_UqMaKX7ZCw(Sz>c6ecvnO>2_226UTrkE1Owu6nGuGkg(=i;Wbk**dJl8L+Ew9-0Hi zi)IW+Bz11}fSYB<)u~^%5!D9rJ*`L!P(upq?WRG_YW=Q$#N|}WBFh{FEBC!P^KTZX zN};8~*$s5cvK|%Ik~v0&6NsHOZ(HbImbZuR2C8nhfskeLff2QVyL}Oa5nh#5a^{#V zZvKt%pus=R6v`DP3DhnEOK1FLqGRTm4|*p z4$NJX?_lBNO$k>B#px@p7}0>Xhvr+Z^e+sX2YjRCmUl&+x6Fw?{QwSCSy&ow7fe03 z+#c90I4M)nue#Nz1M;=DV)ueq3AJGbf$(GJ@+L_K? z{}WOO=lw=*d~D;aC5OGG=7aCWVPxIqIF)rhS6Rv7LuJ7I>9VdVHGEMwxKW2n>6mPvBVhP;n0w3Ya@Uk`gLq0Eq=m5I{L7SOM4R1d;ut~=7}Ygz{maa$*y zSAE1gsFiSEEm8N1dUV;{!W-|wDSv{aAyYL2WaVCc>MKxW8+QtLk%!r*ZfI?8`eO)OV*(?wIJ()M+n>?BK? z?rlQ`(XwjH`85ZH0Qyh`0k3%AnLv}x@8v(|GS3c!-TGzU5Yd$Xi1M+ggiC_D-Jm+D zLvuf!$D(bU%S|08Q92(tr;hudZG<1%@1AELi1HXha@r?ag|4NKm$^)X&AW5YXZUq4 z$Io>>YGvhyq79N-Kc{uc`-@sQ|CpP=s!?1kJKPNXRE+j~CH?7O$L6lTtp7ie%Vr}w z$ta@a=H{+k+y@JO(-%nY;?eKo_tk0<+%AzNP66pfo%69OjRX%_dwn9rWr>`Q7cyl}cv*h}HyhS^iDe{{BRM0+L1o?jKf z6q^CB+FSX_{fkn-kJ|&j#0b?5lP)<|`&S9j?t6ztMoQ|B^5$LEn++z(PBLwS zz>AB-<%LNi|2lI0GV7YO#s^6DdI@BbJCPy zvji_0z@V07P$p;QGWVUCL+6is^(=(6ZbzYuoqaeW%N~N(U=Hv-%pMQzwb4*JW4F00 zu-3G!T*%R-YJ)u){T(=+64fN1@5z$tlKRMe$XTiOdOz!gtCJVZ@UN~!22;OLAvQHL zJ3g-nphMH54?w5chfrkuow&r^0{KG)$EdKF_EKPuKfBZ!fp@1bN6FU4|*ywS>|1t+OW+FqPeV1b1! zSNH3!TQ1Ir9A|a=SOzYm9}Ah}D0xXpzDVr&`fh43Z|?BUshYl*DhbXjx%_u;zar3k zyZ4xcB-Z(?yyZYjPcMTzs@Z_^<_0F&UpH&?Q*P4X;up#4Ox?ZNE}u$^OS+;+sW#BOk97qvPpN zaKD5L?1VsTCO5>^$X`)!kC^i4TKk`zPLG6{-K#RPIwo#%@n#;@gpt z5&o(D_KRMw3{;Zx&DitC+kkpK?8i7KDNDiU9CdRw4$qA|Ppri_c0%97tIPv9g5dPs z+1hf{uX8&&h{~$h(wZx`5BQl48}QM=2!A;UVY75Rjt&$J!{AI|?7pB_AT$Gz3G65M zxe)9`zPiQ)hVGz437>Xiq*yaP9O+Yao9Bez-?GdA;10(p2i*|hmoo`7h$ zAq#G=E@rSv^);sHP91tuHi^~=OGLFHh{|cvU%_Q6W;JVYqPGhHj1#=*4sxSR!mlx`pr&vGYeJ zBj9;vimo|=kDk{}_!ChomspVQX+IJwJ7l}S0MpTGksrL}UOH8R-?n=Z(fc?&2UE;; zwYX8m$v(mU2jI*JAb~FWb-sG?CNvE*=mHnsziXilI402#GJ+!yjvTy2JkRIi`d`QKPM70z+CxBmjn&`@+IuI@Q z6ci_KZDg9=c5FVog$}M2BtP9r3RvFs2tP}sok2;=N|KC19Ez78FFhX3F9W&>`|tc< zB>x~UGMyYKyi)jXlgcN-FPSY^&|RXwrJ3prA;c`n4|FY6S<5tw0An|Zd6_wB!Pe9J z-U_=L6EJSy(*M8W-s9|P`=e(?O-)o4pexoT2SJ(OhI;xJdkR-W#21QCwo;u~FCJ^YHU+X*d&Nj>9xS`X)$2xg9tM8SR3vYTumQE9{iM^zvfzF(pKr)W{N5p0RdjpH(n?joI-x8 z(mG>;ev~CZ1XqWxjXPaz7r&mIa0skHr}?Un%TbZk^OcMa{9sj>SL*}1BG?9=Ox?sxVw#Sb<8O+E91tm#5PY+Z{aG8{yi%XEcV8Y7Yp1(cda>$sludh!| z9QZrN%NDY>b~67q)9KZ4KNs|)7%pK(fmIP;WnRg*$FNc@;TZt)`zxvcKiU11LT;nT z81NYj6L;V%3>pEu&ttG|bTxJLlgOgkm#|f2Vd1kZ|Erzil9JBvN}2iIS!hNo>yg;S zgIgzm(524JB+U7MsGwBKSR;m@LM-xT=oZtGya%%i?W%HtP)G3CzgS%oI9enjYh`WS z$p{n+`hD=l#l@BN?jdrMH#fdDPE#}5#<3R{o^T2@(@27^-E;C@!j>OZYyeaU1%s5_ zz+E5y^J5|2@i|iH+NcTY>io!4ObA|D19kdjc$Xok?wyw7vEqd;fCB36=JRvVv}TrP zp;1glfCX*V3AbNY`)b!0LeGg1B~f;g?W}0$b)~yd2hZ?XiTrnxQLQ3#($H|xD#D5mHud9;hyfGVx?GCUf##iuoNVDdkoxaK@(e%(!?pZ z_5=q_d_;!ESZ?3;%5a=e!VUN%UB>^e-#HY${-BpHcESPvR;F<|UR&uA(PsSHZ-id# zOqXaJU%@L1T3eT{(0Z^b^Oevx*AHU|IUk=bOnXTc>GbRqKFyl#kM3J!%KGe`GcIS- zrSM*D{l9#15jl168EGiDf^g`q)f7xaT|GW0hkj-VOn)EN@$Rvtp0I~8+J|OnyFTf2Tx1P{6J$?P-)b<;!L(p}3AH%;A zLOUnrw`dA9>h=2eyk%}|KOle>oqtH7OSi00ysrM=C!obK_$!oi z^3y}~Z9!OgN2j@Wv_;wOdJTPQ)H1o~nm@YM4UzZrYpZ+zPt5lFjk3h=XFWpDw%y%c z$2#*ZbSd`0PFDl&kO9YShkis#N=gNlk{C4S^7q2O-MSfK+?q5u%fvNM#_e&;5LGymJ~wh`^jBrQjL8Nc{4a8Ou;XNe4ew}|3;4wLBM>8Ds+8+5 zt$WLdmRZ8o!a@|ftj)VDPHhk$$t}Mlj6PCZdxF=D)&XDDl1f@wP)wL^N@a7}D=}^6 zBj6Ne_Qr=7JMGhN{;V?$eywa64p(ZCa$YZRfk8gsAuG@ShN{RgbSUQXM<52h-)5nO9!s)7B;j+d<=Z%A?+5Q;9(t))$91Ot=kb_hTrOtv>sL)kYhV>h(WtmjOI ze&MD{Bi8ufhiOy?`7CNrp$Ex#TIlUq0p9aq{&WxM#xUWlMY^fEW>HxF@Wb#`9LpVr zpniKUdq{50!;(~;%&>%SnNnWYdj;SylJvZxcl|Zt@Q*$srt~?i=S`M9sQe!|UII?+ z5p+|W?+nNV$qt1a1Wpt*nZx5b9MdJmIMw6+)-YFuO6Pjc61`_+gHX?U8sweSVh6xX_hK zKf!)=h?g^sD85G&`{RX|9M6JP$(z=+pi4h7R4|WjT~1F6vNtIII_Kvh<)#5qowAvY zN0WKd;mxt{s9!KK^|K%GSqxL6Yvx}AKh0O0>r|PBUi$L9QXybvY=78l0-E}86?)Os zICH0cW20lwyuvIl*Yre6-R2F;B|>ri_1g*pRz5Bqfz@s(gX>L4&3%NVSg6UA!FOkm zZ-mK`15({Q@Smoy9gDBy_a|@E!mz!wV)dXwuvmSyt8ARIGE5xtKf;yb$?rai{Qy)7 z5aI@pr*P^9-T=5{)R%3N*!5zxY+W_CUwe-{`*2M%=QlH38q37mUu?W9O;70VC$WMn zd8azvGFpA#Ji$KF<16R3EC{JwBA{|FaSWRkd5^IujL>^kLP3%jAUeeTmq87hSUs63 zWU+~gjKoFzV1)4Tg%wO(H-VY@wc{jaXYQf|Sx?ZpsQ%&IveXCpSDZXujQ_&ni=l_e_7V>%-nA5L+X6k@S<%KU7w^i@m(DTr()-E7*;<`8}qlHiTYqr3t^m^RN89l z7rVAPgQygLin;nGv9bDL7Pc-PntP`+)8aw*E|z^w%JfnD60^1Rqas7v1ZjFU!l%L< zyUzbIXoO7Y8Z|9(AKSMgYhx0iB$e(<{>7Vb{n)E#0=|`E8{&i32-i}t1#nV5gGs0K zfX*W{VeWJLv$%ED)@r_*`%Hh`rnc>ZpU>BUI%8T?{kMf+$AG0Ly2%J$gi;YI(jV~U z!Z~z9Oafwxm@TW={RZuLtK`dsw*Q7Kip_nqyHz5A~-&=HYn7j z73i@NF1~vn{ozh}TjJE;J-d!Wk$BBPFL0PliMcw*ymmUU6=oFXSDxg`)P>jlQ4ZIv zzvTNe3T(Nx5?jb5lCpC|mI-Y=V6_d8J8PBDcl(U@(*VI!{f)gTptIs2MZ^O$A%|d7 zegd8eO|zhrDs4`8gGn_tT*qInt$Mc0+F>p)X+zSi*CMw-D}WRub|mn0T6Mpu>8dZV8A67667UIm&3&Q zoG3kYIquAi`0D7AN!6G$fW)HfvaVcCDW;8vr7ul2<_aQdA`lv1eYyT3rqzMLAUzK8 znn7;&)ydp*=9}|OCnNGrUul`))D@}QLkIcW;W+b*cwyWo!DYhmb8#5}+;z#W5CXbi z()W<*{Xyx^ctlOh7fFUBKov`3ylZsrj`B0bfHw#G79W8w44ut7?28>r?ebUJI8Vn4 z?Q;C^3d)msly)@7%6%Vn=h78l`SPk8CkgZ+=AQ#|qd+{Dwc%3x)f$-=ZIKq0v^EQq zTylsCDf6kOfZgUti;p&I##^pvUl1bztzloZ<&uaNVH-bHk21@VYN#g$h0g z3)n`|yH$2$?*vUQ+UWWT5U|m7ZIfwZ(Y6RHCP2wpdH2AW2Rop@IF#~sh#C9D8u(OW zP{N}W50RtQhgK`*`#{Pk9?*-88!Z-Tg%vmSV7+&5m85X1-;YDvjev+eH7#6V}_g=25h2Sum`eJbS2#?D9DqEQ+sr zsUq?RfO_SEKPt7y3~8qTX{Fd~@qG~0oa4U5w+z=p_T>o@S{V*Pm; z{f_jgWkh1%_q=}~{mGB^cKqb_OTBIC8rath!JiXQ7@-^U-D}_JUh#x2&ew8pw{PEa z0xaX$bhYp^3KO>s;vN`+$Fs?dM%8bMw_D5PBJ~9Um%ZP7{qP#=Ak}UWr{AyL3&6bwz3g9bBt-b$86`QCNH22hChp-jLYM_Q zH6}-!TcRhPZ4G+8Np9!JGz#?4wxWq_+GikDbRW1SHW&7xMci!TYED6^Q^S`W#Xi|# zM_a2ftkayvAiv&?+tBJX3nk5}fA2+#1^z%~e~(4fNdU7W@$Gs$xnjE+5(Q-kGAQ(% zERbA+`MULUVPm_d5el@TxC&)%#kjD=go@R1ckcw@cxSJ>Q+C7(q~O(pQn;n1cneH- zTA*6O7-v?ntFIhqqH@67NCBrIyx!%@_oI5J-9{@7;yofr?4Dvr!{&VV`Fw4r>b0Vt z6K_@?Rt*Pvm-98jBfcLnC$5>ai*8FiE|-YB^>Y`0N%!$l=y?tc>Pk#{NVJpfiIBYDO0p!_pHX(@ z$PfU9pddu4(S=+~p_7lnN)*)+9{N`8c@~{R15Fl>AD23#(KF;=KmIJU^FAoTb6`RE zF-{g1=U27e1z?(``q)9uZiuZ!)@)k#LKWoc=5x&8UuKEME(F$@I4jJ&UgV_~;!%6E z*OSX`nvBl`IvCNp5C4&!>x)zz~4#rJml=6q~E=Z|^jKr2s z47+QYs;9j0OQMoBQKbmg1H8~`g{y`^j zxvqa_%UA2eDDXPp9VgOKT)tAt=1}>Rb~_EbYKJ_8d^f!yqI%cF z-S>X{gYo-C)Q_Fg%!W}}dm+eR?q{U!*qfn8E=*k$^G-8t4)TM#UJ=K3GMDd($40#o z`AIVchm_s+gRPDs0!XrTUG}CIUcTFSv+fc4ORW1fyN7o2UT;9mrWwbrnP2)?Zf?t% zQ44&Y#=g&Mv(GKea2IqeujQ0U7t2q63fULF!4+h`ENf$TcH&@n41EPNMyhvRBtGB+INXP}P`m zpv|lO5l`vji!9uhI^oCE{Kx?H-37>RrM-QIO7u!!edSxU`l7Fu|1@uvX!YiCp}jzW zd>^36LeV0J3b?TIjz%afOWamyYcwLfo4zOOBp*Rh=eX$@yi5+PGH#{2=!8hI&Fi;L zG~+c~-9_>G60P}g1lXraGbgH&mq;^*{nev4Sn|7H@LRYLuZ5}MCIz>pw^%t#dbr5} zKJD8dy-~#B>oGZ}2aepRbqeX6LhU6qXQF+xE19wuy9nURb>3I`JjGd$pno&?=t0xe z6HvcgdZr0rwB6jwv-v0Nh4|zWjZ|NL$Z9TkfM_L3mhWbSM=EUI;PJ`sj-qtU@x`ZM z(7h64g8ufb$hnI0&$a?edar0Wd?uKU2*!4mXRVR9S>TzkP7@k$e5!2snw%8-(z@dW z{l4$dZ}vG^(fE+bmHm*~;>wZg>Iwx{^v4@|I0L|p*?d*f7WDHaDmy17G@9`?J4lY`Z~ZbOLo;B*5wh|xGNyUG25wUOr=4E{O7 zUop?`bYfBn#{kDX1thP{zIr@4f5-Mgaww`P!-sCKJ^nb{eBbdP?at2{GaGlntqd5f zN(uJ;hhNwtA0C5W^LFQdQ5AB{Y8khL|3DzUQVF4fYrgTvizKx~s=Y2&D_8t!<5&AS}h0soXKfV*PM3d5QGe2iN(M88`*7 z4*(!+UlcLa;0x~4&3NHd4C7Y8XW=*P;pUZKm+pqBVlzBRJluIaJk zp?H4}hJNdlk6L=p2#yP<6U%t0$2y7Q3XtpWGP<$VTh^-T`=Fl%;Pf&X@<&59+fM5^ zDdHj_y~eJEMmILWnFATvMOjwrTx!to3PeKMrb%)X;=G zWJ2Vi(?Z_T(waI)|mamrh1S=3{)DJ*&T$it<0pAE~X*UDOb7Z3eNQk{nn zY8Xk0>v0p=swNu{`RRc@bAU^OGJMliIF)a#M%8@fE5oTD^wFr#IEZ}bkE`Kof}@GX z^^B07TXw>!rWlb^cifDN1}pdJ-no3!(BaC>PdV;J_ZQm)8STIRctwhBU`18zE5X`U zHs;6Z&{Z5SxKWNKHin!OO`=QB%y?T?oGvaC$z`l_G5hx47#f76HP;n`S|5dP(Fr)w z-)zu&<^WA;_tAb*&cNOM1*ieaWOY&mmDFB|?&+btxlR_S@q89rz-9OeK&^iA()*Cw zcjuC8tp;%OPj5vXd0QY3*wGGrLA97j2HN?<7-GHrP% zCqO{w_H$xrI8(<#`~acz)y6|%llPhj6v!R zL1Zc&gT#R-S6(Dau1gXB`ufE)Ly~e#d8mr*_&|M1%l)SI>V<{k%r6)HZj}DSMchO$ z7vWM|0S0(qj(>(fT8#D;5ps$UJ=$M9_C8^o~L#hP5s zU0H0OS@u5f^(?SUfO)-xxu-^=*@9u`r{EKrU+hPpNjQ8ZUpkxB86EPS|;v_NAmc{rYhyW23?RWiBVz1c^k2JFQPn5)JJRX8? ze-a}6TFMxu_R2*+Z^8$MVU9++pGDin{%A@)bG?OrNkcrE1c2^QEwg%Lt)zv9nS-_2 z1J~za+;&oeHcjpL=ExjOj}22rG<7h{pC~m&Tyd3AH?fvLHUN`)lI_o1^}3y}M88|X z^;}C+(ut$>F5>7)Y|<@XJtPET-*wb9k^5~Pb1v~2PEK5^tuD>)I=Co|>e(0}*A*!N zGD=?!f!a2T;%?ZNnMlq{Uf)UAb(g*?N|NhFz+c3qS#HW+vN0P?j*zYO`$>e^WFC0qVlx79BSvfO@*)}@32e)rLr@fj?wu(JlfeVa1jcCQ* zar23TKA4583#7Ki>@B9Id3H?fWQ`@L5NVohbd_(eNuE926@M2mj(C6s+md%3_os5( zxg@#lXIc7f=Uyd`wdFUQ>n?1uT4$DT&k~(WXZvR&#Hw$PsAQs971piaC1B!apO&`K z(MBpG!Kqj5`%|~!MKA62JjRGTR~qZO`Ock;Y04ybCbbCUi`k?qXK=<4spuvzy;?a= zmzi(@r!*(w1Y{VN+wL!_wWk-vD-R0PAH8JB&|5q*MkjzbQ2`l{ z?vEDrtMUPQj((V|DP!HhJ4=B7d8=2!--9wb#W-kJ^tsdo@3_UI-P+WD!e{+9x;^r1 zvFF|8LfgfND5S^S%f}f4BTQpKX6?%D;l6Hd?`F5O_uNf(SvqaU+~Z$JSAt0GGgb87 zw%hYnNi33Ss6A{8ug|{`Y;aevHV!=eQKNR^Yjsz7uWZCP{Cn(J{)R>*0!WSVUgQ*z#%xoAmi9r0aG_luG_O z%6be^y}Pj5dO#c#>3Lmac*4ON&_bGQ@X5}sKP^^1-))Df5_ws6qyr0M#c zLKf%l)BK!hwb8#0QlPcXVBGzrn1%T(v7&20vivj0VmUsq-~K?QRs-?5`?2+)-_oZYyYRqkJF23BUE^CYe}^W z0Ium?A{wCc!a5|6fxKPLtXxE1gV;o6vQr-@<*k#9-mWu4^^v92^62Tf=Mk6F!>XQv zsGk#az52e43;yl2Ic9LVMN8)Bn{AQ?lTUq|Vs)z`jL~-N+2&GrVlKZdUvgg(U9`gh zUC9uC{B=pB1jyx3nLqBYwt}-i&=YEdY8OsLi=M&ixR)bEcXU*^i^m&paU@(-uwA%} zqTvoG$JVMF?CDh0kcd>IGW{gz+N!7PSywSU{-{7{pnfe(0CY-oiYyE<3a_Z>D0XD$ zb3O>lDHHmnFX;UGx*P3F&z4RH3e*{y+o>d2AWwVyl5R)I)5D9i4Oo?Z1qH+>AH&kuo+wHJMeUD-a~1d^ z@499+P3iLfYBe~+{yifqzOkfhU2OZ1GPq=tMk?9@O_P3Vd5L4aa&n*0f7O=BG5n*_ zkVV#8bW*44F;-?p6CspLzKZpZkiXo&Hneo4zb6v=xtat!oEHV585$uy&*ZN) zSva*em#e7j+MCF3-4+D@ZULeDzYHc)|92D=T`&Cqd*%?G!2fQ;_~-S19fa(8^Ds<; zl?f~I*Jp9!%6atE8jA^e)!!lTpJz20_~DTi0S3p&s~U=<<}yH%1_8QDlU-=)^M>XV zfzgG(@}R%(I7_S7>R86$o6)C9(!fGrw>|gxbM0_^fAOCe3?5^P^LDL$PoL)*sL>xj zzn?8z@cSWejq~KK{pxPc(YGbip>G>-V)gTmW5xKBjG)b}t^Z?${>k`LV;Q5>Xu~i} zYJ4lo&FMyPgzYg_^`OF^SDj%ElGl+jTuKS=peLP`{~rM3KpekRDDo3VLcIJf95xIE`MHQ`X-16SXYDY+i1HHS_aZGh87Ya5Pz*7Dv-P8*D2k#eN-v?k zg?1O(UzC#`TG!Nr^h6{pKjammD2k#eigG;S_aRPFK|z7&7cq#7i$i^VJ!)!efJA3k zIfh;ujQiEr7W&*SqKddm1tm5%lwzX1-{BjXH8sh#Y7tCI2`yZy zD2k#e$1Bzt7$b>en1N#-$2|V!_}D%ya!ibqu}#+>88SHCzN*yvqMWQq%TfdB2?rNs zN=diAD2k#eilQ8cG}XhE;zUkP4k{`tj6Ro{nT4{lGPpe+1Uc0{K0zeWHlW!D1pFc6 zCeE*$^|?mKHdZlZcrdv3G9?>KdAWWa$&>eX8^h%2Z*a zba(V*ALSHA+G#-Q2)($&hMwL+S)TPv+pu!7!Tz(^i@3H{83XNbI-N*NOfq92$G%pP z>wP|-`OGnrV;pIbanIxN!0mRMF|mzfA=f84Uix8<&&K1mEu@?9I}>3)z~|t-(mVD< zYS(@#S8X0FOdnrn1n&}y5$t9*;_W{cGlw*z~X9t_q z`2x{9*fM-k`r1*kL5xN#5~Lrj52{X~M1i`k^sxzXv1Sa+NKc1D#zq=JIrfD^({Su# z;%APB;W3fpXlOii$Z49;MtLA?csy26=U|+1${}(;G4hOANkD$8JY#B{{Eb6mY@0M` zFIw3*82w(_Hv5LY_76h|+d3D5r2M6vl(6-vf%HUz)9X(qPe|!BV>}JWOo~OSU1Tfi zKm%Scf)tY2`HRreL15=Lc34al#Ax{BXHGrnJXmlVpLF0cGB72@1d!$cQXMhUS^E(P z$ZzU#s&s|}KH=2P;{^&Ld~v|Uwm{*6?Sldmy)|g`=Ts231x{h*n_Lm9MCuA1-x;f2 znD)}$K7);!UL=W1IomIVCq4%gzf&-2k5OoGtnO7&jwMuv*k0Mz*&Ns=m}t}r8zUmy z2HO?e4%-o@@=<|de?i06K(`?|e}eQid3m`QK76<+cMj~@waX}YNlA%D!AnX?GKNli z$22t5BOxI{($QW(1<@>hSw%&qJZc-VvNDm8kzvlq-#EQKPV$2WQf5U%Lj!7SY7k_< zr*TMo537Yyx+U*eci11Z&M{XN=E{B!>fqg~QC)M}uf@;n>HqlZH~S*DZRi$OK_Wp`n8H zmu;p+#shC7oN=ufm1D<6vorAdbMmlwRwm|6NWT)f&r%eB-oN|QgdAp%X+A`a{F?h;fw%c$bZ0Fpczw>X{m?~|| zE^2y4q74Z$cKTZ6H}(euJ>E$hcGwdzV#Ek!WTYc8(P5?p9y)Z$c!7qe2__`ikd%~c z6hn3c^oThUoN~`8^z@j?&6R$^nPQG5ZnpSgUBQD ztZkxijA(8`Sz`lkkl#L+>B2aN9dFgvp)fuURo!`6H`Rq?pZ*w;mE#wVKau6iw(My{ ziqmPvs_=N&A9xODaeSmQsGo$q8$l)NJL1 zA#Y^I4)$b*ovx<=3nn=6*|T!3jUgC^Wy79EJoi>PynYdwX#Am2A;L_IyB=fmlTnoC zL`7XQHWk;QEkP76?n8x9Iy75M8)lA9!M~lI+oj{)Q|85^|2zOsymM#;%g%$Ra{Lhv z%1ux1V~uGajfjytZ&qk#U3E8v1bV(m2@l>>CL-^bh7<};PFL6Z#&e30p5)3#n+R{s z^4YAS$#X~Z!X`ANy5%}t0HrV9Sv)_5E1w53BFM#w@{l!tCbGxPgfnl1++z2_9Tla9 z(h^i{UyrKYo8+GTGN8#bnT21Du~K*{!n#1^opq4qN+_IDA!Ky&_%|Uyd_Vr%uHezxYMt^-Ef1+Z%7ZiNF2rZ}3Zf3o!hX$}ocm+Z4xi{_Tkj z!f}-bY{uR_mgAw^^Ax8YmyO87W83$lG9dTQd+I5cA?dWtG^E<%@p^d;V&(Y*1KD3i zqrN&MD`gjSk!=#|Dv{pm$N!BRiIlillu7-+?@$F+)zec}+JKZ%nruHWEd}4m%|xEu z_akLhc&54z{+to8%sz+VGgciEIZ9-?)C_B5|A>?O$WKZ}O>;9mJijvZu&r|3_WKYc zpM$JN9D^uJi+*d9s=}Duu><^KpYgg&O7^0S*Q0FS7P^m^)|QZrOeczgm?g>Q^EM$) z&Rdl0z-6arV^r>uUvM4`pT7;SeOQCN6wk-FR5hSpf?IR?AU_Xa+D*)izZ)48IJRNFlksKt~@&z=S@vVe0Zaoxu&&|jlKMP|PUIAxzAslI$h>`0w*H+50atuAtcn#(ojbT0! z{%ByL5v;dwzQd z1^~8K)~|NYN_r-T6cyGtXJ)R{mptQ@oRV7zXI23cL~-#+-5Hi1gwqy4i^qpnpB&4v zB`9r;n6^9w_a6;2ea$aQRS*TPWQ@*pVN`Z1GMx@MY>Z20#VeD){O(G!%YIH{K#dn= z-Rln-O4E`O;7DMs&LH+zH=?;so@X$;;w7&gcDq@iiBtawrvj#@XP~mO(!>d6Ueb^m znjYUbxLSREeS+%YMVu`(xB^`8>Fw zAPb{Yl2GCEW4~LTp*J4uB9l0!&-=>w;YhZ{V_jt(Vx-S#8|<;2#wD-FRh;S@oX z+qA?O%pMc{ZL=dG789f+oi#cITlO}X7$*Ken=y)3)cLS^Z#~LtMZu+VD@xQS=VY3W zJSQ!|D3Z~rsPp6f-Hm9C7lCL11eK^z7^3hM?&vu+feiMvp`nI`Urv$Wv(h+1!x{&; zp)ip21j|5YIFg{id*^<99)705ga*MQJqHbk^!764ENP(OwRsPbb<`+CB4o3^Q&FX1 zh;^#-^}D@qc{Wi-lG1aH2WL`d9$bZEkuhc}>h^9!OMML-PM0wz#Ys6PrDY<2>O8os z4vDfN*Jj!F6bfyUr%9p^Ot|oB#EQb?t*byl^39Q&ftcQ$ONf>70K5U|(SMJ#sYCD77&#~RH z?8Aoqu&1a6l@od!r{oUDuvzCKXX0td7&Qr5W2U24>W$Op!?!=<#JMvZm^>n0^nf;$ zS2ZJO788)f`qaz%*>9}AiXNlWM`R(_m28ZlM}LU`*k!+TrvsTOi72giqf8VHr-Q5G z0tahEQKGS8pxX#B*oTa=&4|tV z#~85r`FVK%-FFdW{vM@HDt(0GIU6l!bMypL4zfRA5}9)8T7E-<^vCBHWFuAju1a4s zw%1Gl%=XaJ`w^KW&yj$$bJO9F_OkL&RcN*D!5-JyHfaQ+d`{2KaJ`nl>5`|pF+tP@ zTJc0>4P>uw;cuJ0K9sfukR<1O31Q}k^%z65O*v7rfb#-!liKT&|`qnwgbke8l- z4|mleXxd>P`fJu%kI3)wL40FLA;u3&mU|rde%}@si-HWhx#yh+-KcMnKCrXib1YE< z=}8M)lNv}*Bu*s*DLd`f7Bu@>aMmQ3bpFvhUkd2SjyOymk&LohKdKt!7=Ih;-7RqY zTFuOY>@*v`xG*2{Cdzq^(ur@~@5ZKmqR>RfEgfiRXrqCMLMsOvc!Z zIu%h@EKfBvjm3Bc4^lmf2J@Hoi_gOQr{_aYg$X{3JY#chIbuZEa%K-RhRRs^+$zsQ zZ&DgFb0?pHys7hyVTp#xvX9>pK})XFoA$z8MX(D7T2Q@f6Pn9*A=X`mnmr%m(8uo~ zPTE6adQPtmrJRya18dHtIS7bi=B+%4Ae9`J^er4uxe<`!bq^tp2Tv2uI#X0%pXmG+)9ax5|mMxvs4I|3#) z78UkEdIshb^N{^1`x=v^e>Hz)o7AZ`$?qnq8x>pEnR?>P87_6sfjHTxWXl#5<;96$ z9*2ySILsKGfQ2(1XbA+dzakLwPG&i>T@9w7&U|8DB4y5n9CA|=Wt__j8Ah#LdJ6Za zvXSpfhR+|s-l_&Px3r>BJ{ym;0WS+F|A1e{+tA9qVWVYpb2C2t@I$Owv(_kdsi~=E z<@)}_UkiDl#+dkqd-m)$9;In%E~6k)dE{bFG?KQmFX_h^%LS)m<(ZuEu}F|&XWwNv z9+ff1GdC)HS;et{`5PW@Sbtcq#xNcIxoP0AQ|6IM-jU<682CX+PRnzmWPrJtGyF z_5^IKZoobdWus2=0{c^br_92?k-y2f=$1ZuWO9-*kiJn?eZ;mipinONST8g9*&;PD z5qIXK;hly?Z1c((-UDVhlM$Pdi!vFWIzS@}Ux3kjH1fIo0b8J5+9GGx1tf1XQ_|pJ z9(RLX@-k8SoMbuDE@Qc`sX@kR4-(|QXei|v?x%cmyudy%oL7{g!ZH*4Rz7`rT;?;I zzLx#8z~k7C_&3}iQ}&{#FzXc0LHU8(`uh@8+FhY54hyHJ%h(aRAI@laXL|#xn}W#6 z$&uTPlUoVGD|u~R>SiYNp*+)01>C<;UKj2GWxjwjec-o=BW(9;7nR`F%dPoHmTe zqCjPBjzW?>4h^0F_LTcDp&&yBgjD3DCZX2t!`S>pd}3ziQTtOK|H9fzG`2|7h!BPb z910p7)MfCF3CLgh9>ePm_8ak`gn}*=Lkb-nfSLIe0%;uTtubvd2@3}lqUha5!HD-w zrGiF55i}TkZO)w2P+EEjTxD|M!t;>mNJLFVIa)4R*9ejF3-`hZ->Z1ZAdE|YsxAmXE@SFO%y%raJy)g>+D+fya?0vq37)t%oh>h zCI8NtI|oaaEWykf(=mP8G_?AgvGu*z(Jbes2P=)Wy@iHb*YI($B_^YG&t};oLLG&w zV+Flm^cQf^iTvNAH@N^ycMzuDb{pgeoKkk2;4so|_+;d;fyeZpSC$4fhs z=SxY?#K@_qSsS|Il;7=1$vC+6!%$y0SPCxB9X2E|nQKKPZeu-`eHf3c@xU%)cuFfM zLPByXYKyms0@8%J6Ks;bq5S2GwZiN;e6*(pfjBA}v1p?KlSIKfWN{ z7&-extUQk^*$$6CfT~8RTkNC4eP9=)4zez?zVTkDg!TsMM`EQ9akrC$178d!&-PO;D9ebM7PA_k&c+TUCLHk7iyn@~ze=U{9C$`TUU zs~(1ZLw%K;o8F`Si{03n++?Smz8P80G}JcKB0V_;UOtNjTe(Z}G0PS&*J$rJx ze0Iq`E@Y?Lu=`L0YU&zIC={kRX*-lv4p!8gbvLLd6OJEr2C8b5{ON7KAo*o)^W$@8 z=VDwz$MAQ937w=0vmDq|+=ynr*fmD)ew5EZpa#;D7Pb^Mke*1K2nJI2yd1y=LU<8j zJ=ofYEhPmi#$Q%56aq^s8HPU!1 z^7#^vk#UsQq`=2}=#$|=j%T|QA+tr4f}9Dbi3}PqMNF?isi$&oZ%sLBinn0*>OZ52 z3k!sU&i57`Bj+12d^jdenrH+%u1sB2GzvD!LjB07C*53Q;`bB|kGW(lJHq)LCbpi78X2nD~7(;&7GkapT5f;>1a2x+)FS z##k!Po{}gEOlBrVj*$Ii-<<3m$(uO1>+8*mxkk7hsORDNsBF;Fo1fWsdG2sJ60I%f zr9simdDe!m(0Jv_9fqoXyWy^>kn?k+`Qhm29}IX+)(1YPwEfI+GZ1f2GE)<)_Z4GY zp$%!thx<0WP5SG^SZpe3#prV{Hy(tHS=xS{0Y}a&*GP(w#mte}CXVPpKrfO^XQFv| z=;y*kgnf0`P|Ez^cgY8vlxv*yZ*BZ;UK;kIoR}~EW@*=UL(alRuGW6npVlkrEnQa%l*y!L?u`_a%S^|~KMl?3L!DB7R+#QC`Jf(tNp>J-eG zI|tcWS@1|(<;$`}X_tJNL!&#Zb~`2?Xy}$U#lIZqsK7^zgKQi05={&S&@5x%uz~_( znB-zpGp0|+v}se3l$?Y;yLKT?o}-mzG?4I~Xc%A_TjTl2VFj2lc8n=6E_C(ktFPjv zmtHby*|KGL`|Y=}dw0lVmw8U_D37lhWi^)4X!<@+D9;C_eVjtD?ohU%5iKllF@I?g zqDLJ6vW>DmajayW3&Xm?mmIx*i8*i_YG^buNNaq4lraV=pNFzAUmURR@!4qDBD{6} z#(SpBD9^?xo}QkHk7^sx)F$nV?I-dX2NTv`j)}Y{wpmLS@kq8d@&5QMJ%INdj4T5l z*H|OZFDK%{Ons1Xjs)e@7LOaVM~yR{{FSwpNR|F6L*(%k$-7v}aw5a?sv|SAamlRt z__z5BF*>IJsUp8RrLGlb=3sPg0p8mBk$LIdC3fmi!TLcR!t~#A59~+zJ^a#%dC9(u z`>`E_4Wg`D=DVf;g&iQcFWZmlqoh8D<>jzJmGz6`A%Ew#K9o&-i`RH=&KQ+q`ggMY z{c0SnYct-XgfH@{E6Z{ExX={%l*BkRdRo!wmHQSloHnE;#hb8j!?PS_0i=;RiO6-? zO{`8&v+O6Qb|uGSbY3Fnj7`CzYA^Pe*PEAytOE=^Q&U?fV^|Ev6;Lk;WzDt&91!cBHj z99vr3+TYGGw#%Ar^+-vwVMIXI!K)^rySA%F?ON@=U$Y7X>(FAafTCPCnaITm_&15)rTbSL=bB`p1i}N z!F!{38~=tC>&{THundnzfT6I$eY-PKvF>nxhBp{$L=cK?3rM|)!?0n)aQf+Uk(!!f zre|_W==SZ~;g|cPk+7zw2K)E#hu7;hUQqe@1!js&gD3$88m+p^lfj1h%KYsvk9z{k zK*}q9#CT+lo!)*PzX;PiU;95C+VDE6cW**~<#|L8w4-3o8-tpP3e1`{%LsF!%`qsH zGN4D;=5=qw+fawJ!ZFe;L%)aN{e+FTM}mv-&_l4UcuPpY?sT3(gZaZaO$jzrpQcZr zf!y4j_UG&j-}a}ar5U3sSN$G7d;}&=oQUz`#~T9^z3{jQ4ZRJx3b^U7jX|T2i;gHSpC{hn~aKrz7NZAYi&5AcPE zQ9$Gwj+L-09WS4ZVHv0dGPJ{ijqe~|bk>nM9m^^wBNiX;@``etgwf}G3N4an?$VM_ z84Ps2k~SD0XvX-03?$nJwm+eg;jqP{y53{rv6_2lJ7!-k3Q(MED{v)YOfDBfj6s7} z_UWxLUfNo$D5tFNG*<51xf3ZVDb{rR0jRUxz-fhCE&srQ14vFzGB3CMd^tjyq&N2; ziPX`yW-l(g>{1a)LS?~c%8@oXal%9lA2A$tGA`6tSBYR96usRZS_Ff2Tk6Q@5jI?M zK?*IGxJ;WC?P%$@uIW`MQ+N;&ca0(U4;4b<|98Z&s-x+n#+YXYu1>B zkb*~Qi+zFZkDhQeI#`BV_Q9iv7vfKUdKPcL@do0`OEFGl#zub&V&vIo$H$D` zSdWdHK9)YK05)d|c9&Qy`_gE~=Ql5$2d}(ODrn4Md+a=>h7Cf-%TV&t>aUX%;xTo~ z6pR}?77iI_Xs9=WWQ6hEeCK(&EnIK7jfPczAMAct>NsB}?QL{pa(W8Jr#dkqH5mno zHaO+-wH^;*<$fk7IZQuHkIXSic8p?5cA&_ah!K*wxYI#zGlEGe2p(n3A5hpgGVf?e zW7sGf%@PvKi%KT~Qq4tX?*Z)h+7cWxoJ!fzu+mT)%70g8sBax$eA4HoOWWIDS&Glh zJqKruog6ZJ+U>|qO~>>Rqp@(xEG(Qn3kxRB!0^l*V@U0cE7^&+w|@-3)W5*78l$N{ zn3pYbeU=CRhT8=D80IPac#+{v-R3sREqqnQ&xHLEk0ERiJSP+P;l6Bl+)fyFhTB=* z+)jgOFX8N{qTEDG9T|$RUDMbi`ewQG;~B;gfYagmB5%s@Bz*3iT(kbg|A{`j^1~XV z$9`DcgnCcF%z*418m^?=YtHqrO||%7S0lFUcT3sEqcGEf357}K_X8CTGTu6kPQ#a1 zyARf3-h?zWT|Gwr+kVi4{Z*15y?JpWd6<(NV~n|W+Yq+F2xurSsqmtzUdoR0@3BM; zq$e%x>C`}aBGC^6sfZ}B$sl0&yWw{?8IO=Q>7WDhH^9Xwnte!)qoGvx?2YhEqZS3N z@BknF+*!cuGcqu6Fy#3tq{JtPa^W^_&UTf0WI!p$!s(*P3V(aA66JL*xZt!rj45zp zbiPx@${;@8*JM@^q*D0n^om+wk{wl?d2maG(Is^BW_;U%6Q0;c95DZLc1t=^orTKbt^WB(nmumr-stwj{(u? zp>*DP=b^s7&P)|85oM5ye_dT23JZscFcJ$N70pNmWw4-7M-K*i{?NmL0wBwS`On1s z4QFvr>a`IpMfsKUrRI&m_{CQlgOT+kwk>}W^@oblMgsw-o3WhwtEkBF^m3@Es=?%m z6Xa{?K53NULN4?q-SWX&k#Sp)nqMUPL`XnyD&L3Ae|yaAmy$oqZ0imhP*ZY8z*k=d zPvs$_-1I0v`itaak|?m}pMSpb!iqF@90}$D>luYxde!n735$pIa`WcR2=XO@nesP4 z&q2jP`ttMt{kurd8-}dmqcLXoSx6S;t@dC^$dDOUOd_E{&C`T9sc#9Qe2qWjJnM(< zaU`c;*o0}AAp53>QdVDn(5!MFG=^BITSHMckx1K5bfzI^!fbiGcoYBDQ&Wzr(lX4S z)Uh3N3?UzEIDq`=XCZU+R8(&JAhaM@Zw-h?f`u&#R;u)!T&X@>2L=)@-bBNvHz0il z$3Q8|7(ZmH%oob&c&izS(2i&w1yaiwiHf5SbYnQTqzUf`0SOw-7Y_ZqNFX zo+Ho1=b{0D1|Z45@`DGkdHwrH@_2A%MjGa)Bx8g<0lS<1#)I{f>8Y5O4lqhv=K;d)9b-cc2?5J-tX=j5QHU1W< zM?hms0OzJUae*rZW2F7;ko`*OiR^900k_Y@EZrx6Yg^jTmMAiP__>A>)?r7ek2G?s zw3EWD4AfUvn3pj0#Xk+g00!U2@~=QF>m}7%o;Tg zQwm3+C?_A;sV?Iw8uI1`_E%TnH?RE_`>M+^sbHkpPGj1tEgR6nYBb>eP7h(3v(7T# ztbU5dT)W*NT}%p6GjomHLV3cG>=e1tX7amD#sKPo2~z*^iYAzsztb0e5>w8-2vZhZ zglXqpB67}|$Qv`sgb-lJlomNR7jiV$A|kK!Zrrnw<40sm|2QIKAbtJgTI?!oMn*=a z8J`#%w5h2PUpOz{%w~K2X;j@;6-9sR4yotV zVXrtd$9Sr6D!Rh7Whwnbia7o}ZCo!>b>QkS2pnkP1_Oyh?h3BQ5|N{J8kaY#GqI z@6glI<3*N?#oirFh@tR0$jW5@kbI-yP60b|kn%LbX^X*xf^-qW(vas$GWCoLgrp`V z$e`IQIso6wMkuUQsF-N@8R`L#3WNwVoLbN6&vkXRqEy$Jm6zwwpO2X{XP8xbX*eaE zUO95)NDLodXq0bylCu6!nl#x=nQ3Yg0opvw1Y>+;@8HhqZmX4=u{38JjF6)8zE zM$w2D;r*lC&C(8>NG&Krk|<}D+t-K2KGSCpK-*w@m2q`KzRP$Z4+eZjdM}nUrl0f| zvC@|pW;jg@Z?1A5eu{ceGiu#df8FbHi7|3VQlbOt=|eXqj|wOkfNJlLBjN}4g*drw z&H$Nn+G)n984W6KoEkr7%vf{H(*1i){=&jwaj`2EDG}ivxFWZ& zEr?mki6$nbLyno6IjEgKE$^{%phN66U4I1_-YjEt9=V(T(F^!5UL$#vnD6u#R#hV)?V~N7*6x@Do&n_ zFVAfvv!rBXBVXj05psN5PCgnd4xw54=Fki&tKRZndh;?t#_v3r4O2%r(JcM`E9B*>>3(+3?EWHCyYkK#ofnJ@=jM^#}xGjr`1)YaWl=#O`D)Qr5Z; ziyLu}GZ}hhAeBnuZ4&vwh6`tBcJLncx3uB$*A5v&X4r5_gYR!&Ifz#`)EKYUthDH3 zW+eNon&p@S*s!M&;|r3JWRJy5?^NK8Ep<43T*sHhNund~F7u*>G4a?x401c_7B!Hb zw6LYCf%HV84+c_aOe_4N-0}s?v=P}Do=HQY444V=#yf0lJbxm|D8Q46bG6?_9!09ZkZWgW>RA|@`VTN%q85^jw zvI_O}^~NB@Y4)6Q&%v3CP!Pt8q(OfB_8r*0dl&NZ@{P9=jiw0+Hk6f$axxI!l}Eze zfZWM*P&ns&^EEju-*~gRMvOIv9wKE7>CDLj`mY%7=A{ z9wnkwW~X!PjOX3?o5!53=`jlmEhJGO5(+ct0W z;nmemCT-c?Z2AOxOfOk-ky-SQ#~clY3fQt`D`G{yqUYU!!?I=FmA^4kW@n{3adt|w zjN8`l7M%^GVRCHo811lQeIs9TNFOl-2B4D;=9hUnBI9&>m@2j*X@4|M(LgG)Qnrl4 zQ>IK6QMlvS!v2;kSQqapma>%nS)Qg1%JKZpa^d;dH}bcE=x2KhpNZF{tZ3wKxtBly z1)`kHbB5X{YfF>JkUM>HzhUDP@0)UqnRz6~493fWUXUVnoSyaAblmlWAK;MeSG;>S9IgyBQxF~kS|mS3!b6ITQw)Ri{_bs9yJIu{`O!M8 z*z`XB@!@-TZPN$XUb-KtvX5W-xe*yTIAh!-Q=c~N+k=gJcOfNJWWOGI%MKWPnaw)G ziXr#Kaq6^-|IK)Tre)_F*(6$sC2r$yd;yy^d^D0$UGgkPuQyz+pU32nos1I66D~w* z+7Dy1^K&m8YGR}vr;4mFqbLQH^?tmuxfUsDq3QL6@?3seEar|&Gt=<7AX8<7AJ4pA zW@3Z#GF*u1f?1iyI7%3IbaZZ_F@o-`^x@ez%CYN^7lm1NES`~pc@xvjKGe0g9rU1H zvX0{r$D1~(2aODKF~SK)LagyPt!$EK>&Z(8hA$8u>HKNwm{8bptSYYX;-4F8OsrKd zqC}co+VH}f3ixH9%1p7f$38t0`{a4v+gWdBht3+Ef^^Zj03iPemSD05cPEq)#VKkg~e!ua!Nq0KBDBGMq zaj>Qd9!~3|ut8;j<;pVVKurZ;sF6C5D9Rm$SPF#izyAS7jT(u9f??RPW4ly~Hsh(W zd-oo*`=-lEo{Krrn7U)<&QOf3fiRSGht%KZhFVl_{{XR# zAzmGX+M@1u?NZlLNK>n=SX zeQqR3dq}dynFV!NFF5Uy!f7mpb2b+W+kK?Iz5&I>#R$@acfk87xi4wQnZrgQH7nQJ z*pbYF5vV>;0#8+$iNko>lFwr7oO8M;DD;@y{KhL-|Bn}pXGc$rq=ZxSGYUqbbmwNt zQt6ZXJBCP~9@E-_!n`=xV_V><^T^Fvb=Q=K+?PBv6`2udEJlJe!tf>KSW~hE+xOHV zId3c`%v*>}AMQp%TpPyZ$BV+#hT`%z^HL&S`mwqLyAan>E2oowt*;&pTq&6^iiq5M zw$pBAcMLY13deqWWENwCcBMjOfyQQOFMaU_hXW@rGyh|P@ z4)f>D!?S<-lQBR=gZE|F@z6YeP{BzSfR5sS5Me;sylzzu4&q}wNpvZ`J zId^gbk74N@`M7Q|PAu|Q`tcYUOJ-kqxsfR-A8dK^RmsB)BR6!0GDxe`AHIBzq=mYM z(A`VxR=ID6b4qlkB4^Y%?B67^BI_#aooO$U zu*C+<3iM$Zl8i>dWP2PIP0uikFLfr#5f^IrlBJw(Ph;oVlU&B2NaJXjHCyXM&x$h! zQtnUZjmoMTW2{U{h{K8xYv79&9jqsMisZL5zRj$%Pvc}H3}Lrk9aPUcb{@y+_FNRAtfukE)4VCXaM7XsWGtMK zgHgH3a$G$2m5QR*S0ynL3LG9emvqiaF>RQYYs36P2hNlS~QZlmhdUjr~rwt|B-5poGJRYF{5+ij>p0C}|EP3Y@1*w7yfEeLO zWZ{-pl-GN)qqG){KG}!Q#h~{TKBz>~Tflfs^s~IKd ziZBgYj77>gQ;ZkHr{Pq`k3ZgQV$MyU9-5X*p_fxHxw^f($&H$-D(iU$3275{TRgt{ z)vsXgoH;mc_H5BV>agR3w~eue)5+r_yr#IiGL3^t8M($l%0-W89OZt_oI==B(xbkK zH%J~-?%0UNvVHK2z)EF(z+r=xvY>|p^M6lqF*4FK%)$m?C6I64X?$)9#9;KfpE3E) z>Gm{axkkvd6pRr8HpV$G-@YIwIP#-1rNBY3R{5*X6)1NXcPtTF^m^0@z zj2$xusVS*Q5dqbil43q{+ApU(@mY+)NV0Orjvc1%bT@T3j7{2AMMXK>4OWPN{@!~e zJXOGtfV9aGQ)aj4c_f^cX0zLIVC#pNa?V8&&ioZ{XwCU%`ku3z0u+bkuWo z2R%L9^);y3UmWU#yBm9Yg46+qjF>USj_baVZuIQp66vF8;HOcW=N3gOLHeSRXI^aT zQy9iwt1a0IPkjSsF8&loO+Q@@Yr&c|+c15!jE{~OyuZV5!dloGz~B zqXD2-ij)P7xAfFtA1Y%|L3(Jm$6&*kh*b?<6MCmJZ0V(SZg^Ydx%x5|v3j$|MunNrS-Q`*ROHqial zsQ`_L>;ouYhx5;Tm$t;0$ef*!m)mXKq0x>qOUOVf{Ri71pHdQ~?N*i|Co25=#&SnmI+__~U>`g;H8x<`hP5J#Wuclgkh*~$i$%%F zs1e!9FZGk2m#tE6EzMliCm9|o$3FF1yhqkyDgV4tW6f+8${d{jzUGDhHPhmqa&M7P zX5aqKYP|c`KcZ;H88RG)jAwq4^Z)VN|1xzdYj}|TyL~Gu*xasy$qUGo-`w($taa8a!A$^RQC_4V=?QrQo!& zsmM${ve7Tu5r;Xl-4g@Y(Y-?8dMfcC6tx&I}!s z7h1hP5}vow8!!t}4XG!5Bx)c%X`uwK2GSFWUKmK}{TcMRF+M*XPDe<|qL5$j@#A1^ z6Uys7Cbk$o`WW|$9#7%Ejej}yp1*U@XypLa8Dkh|Gy$Q{oz9h+LxGs-^|i0U4L{%N z^yJM{cNpVnBV4v1E*hJJtEQ%4a&`g=QsR-37>87QERt=puv>4;`0wT_KbmC}F3LMR zP0-uihRwzGxNuA|5@cU)cErb+V_h=9WG2O7xC}(obL}{5cqn*vS-ns6R1sRt+sn{- z`iJC8iw~~McodH6Sx4?}YQ^qto{+cLfZW3XLZOx7j=3*MEN2c-6d+h`G(O078mBou zv#iczQk{I}vfcbUBWLw0Q$)JtqyOWU!x`_bP%Gr$SGkKHW^mT(@qWSxG!J zeJ##-j?yz==gwVlyFF&1CN9XtmBpt`n`VR#8oH{htIX7VdYxvA^1OfVUeNosBO?Q^u2_L#^DZ`?v7}W5@QUs0 zktN5akDP$i{E?PnxVt=;?NYzE3jcs8TU1&_8MylDt4t^WmILcUf+Q1bOwP|l1%mx7 z>r1%25*-d{N^MxRYPB)IQ|UbtoI1(l_Lh`{+D?D^*Um5>q+K^R)*)+H5t7rRdlEa- zvrUXH#_Ec<6pu)J(w;ti?QgKB=VIJBmx|KWRd7EN%qzy#-TlFvq37$*GxEZcsw#Y# zG1YSXlbl9hKItri@Qv(rxI4PcN<#V^_X<_1#l!eku1vWzAYb0 zKj6pAu{ONEQTp@|6HE+JcU39M_w2%iv37F}Q@45x4ZSm%gQk9c6*bT zVc6%=2+H~w?eKuKt+KjMSd`ARn%_K-VKij0=q*yO8M~AHXlI2qOhC$jaT6K0vr!as zhAW}5I^2FDVSG#O%YN95(E{64cjs=EezK{_E#s)7i%-W4+@m&q(7aJ6^0u zPVO)ACgVwNm;H#;wl%ol!nEBAA# zC4jdZ+<3RigEyoO?e@2X@PGps#DjZ1NwSx75idkyi@Cwqg(?wP_kBwusoHW-8Sjcp%c z^_Goz^`muIw|gu6(udcY$?egJmt#{!j;XD$#+l=%;;Q+J@YyrY#e#{`&8qo34(>Ca z4Y1-T{xp&UMsxCc%>b*Nd?S@|0ynoiqo+AB2Rjmi*warLL zO*6)H>jyKI)l0o!FeSaqB1B;q5))#vcAJa^L;12N5;c&Xw6LbDf%HV87Y0%pn%Ns-bZ%(% zc2X*e&i2w;v;UAs--bP7^jy`C{g>HR~coyJjar$E3&#e2`5 zJ!T)Kh6b)k*<@l-9XN2nDDhmu*eErT*W)%mS3k>?v65OuNu#0GX~nN&o6XM7#yAn) z8)~buecc-fh)|b4e0;||?j`X}mDu^tO0qFjvriYK z{K`IlC!}}{gn}z&x}U2z%X#VbYP0pc-uhcw@X<$`jNlyU5mZr8iGBO_o7k(73IG+b zit-A}E3OX)t0N)xl5sSfYAcQBMOVdx)i%}`NaMQc7n@k`)~>>sg`b7fl_3Ike6On> zS3TeT!P{~%8AJNp|H?U9d@b0y%ZIb)C1J`$2R3}mM;vN*Vk{oblZvr;`*%kPXo&?a(26I$Y=Pwz`vNdK20<7#+e zib(jvh4;xR=D&8&k+YU}Fo{PWMFvZ@*_hy|UJIaUUwP7R9pei+s}8QZxi zlT8ZdnW|bGki4Cq>@d^j!*pjLeYUC&B{IHG5IK@Y(svtW%nTdF1`3Yhye9L3a>!77 z4lx7PRBcywMI5GFPh9TedtRE zkfO{qG?X90ZQuVs&N=5CYikIOla%}3eDh75e)<_QW@jQdH`jzf;23`CCojdsi4&~7 zLvXCm&dS1SzVIy=hC04XI7ZOGnJ8_^C-v*fX=mW)`U=}6BlkR}v^fSjA-`QhVY zkTGne>@!VN6q|{KS+aRO8mme}#zeN8-o6xJ|0n0-LWLXyBWDTG@qjTwr;T))>G6?p z99#KOEuMe79Gmtw8E?^CSAsF5?ke*bV<`=j+)l5{&K#_6Hj6aT*&{OcH+7i0dTDpb zGS-{1wFl)P<3hT<4QEYqby%D!%$9v_)Vc#WXUf1ENco~<#l{*;EKH7SAf=)BjgO_T zh?p%mq^N=Pq=h4n8c0thdSM`Sv^EZ zcqhiBcU0((1ZA!dN_`le?`${Pas~U;_#kHH*?V*z8d0;7;-q5+_ST5dLIIp3Za-;@ z;fl3BlcxYAn$b0DlNihMGz5OD*^86kto=^@90-_92P^a;e#;RD! z%c@-f2FBPTV?t5 zS25-{`AHPcS!n7~G&sfHTUTMcWf_xhd@{88{!m!VGfzx1LMl*{&-DjGAavSHcvq`mV63XKNr2ZhX(Q2pI< zpau=zW;m0iY-FsiZuB8j`ck%Uw#R){jb@=GyNoFeW5T|cV>yj!9P??{Oii-kK($-W znb>Yzt@AXSbGOR<@siPEkcMBPw)M3vMCndWw8QC4u{KDbl9Y(CW5;3m@ZrWF$`@2; zoG}lxXV1czF=NcaW_&?VS6ACUjg|XUR#qDCs|zo@0H>XHnjAmE^n>(3ojG$RMvpEs zFBIaWJlS8fO|kg-@=Elqkb*k^1UbG*UeHMDXLuPYxAL-56GG!3|9lnOcWgH+(*N=4 zKVtmoR^0T}OiUbW$M9h`lg5v+WB!~(86N^z{l;#yiv2%debu}up`mxx>Q$(ddv?br zpt-fptXR)$4tU?oddU}fELUcfd`=0r;uC2p#z5+nyv>vL%NUW7bY~!?A-o{LhG|m1 z?8|9ft&#gT`A#DT4PO0i&tXq4wk@8M=j*2Z4k&COGHx)Iae_S-fmXRb4J#4PKj6@~ z!ZPABv;PRk?vw`I>~@>>)7dCb8D+GjHU(krvaQuQDaepxJx zNOmAc>R75R9yWQ-LmnSC*D;)tz&c}$O2_Vg(_|d0+_M80EMAN+ed&uv&g%?k6|Hz} zWxLUu`@~A!Jap&~uDtTI#@n|uBSwrc2Gou3y^GY$Z20(s;uyf5rOoTXb*C-Bn9N+H z+7nGmPfEtyB|FT@^}ZJr*}r8YR{r53jGi@54hi*D{5{&s18xf+yKT)%y!qT? z7>AV{9d%-{{B@KxIt>cEA1?w6f>r_{VnCoBIzVZ8)yA#mIA!b%$$p@MYh~90!JH zAMRrrf@RsdDq|RA49}Y`84gaPpENw#tY%L`<@jMq*j4Jq>mS#`nHX;tA&$(G?FT&A zwAYPvms~UAC1abkr^d!61kHHf!)KBEk8f+inG;<(j#GynAV&W8Y&Z8C*yfeL+7r^Icdw9*54 zzbNmG^hCBkH*s}R8Y;Uxj_}+At@Kba;9FBJ#1c;YF4v(FzG%@xoORY&Mq#Jo!PSMC zsEqS%KRuZ!Tru%8SFY#ODegnXo{IXEDN}IKMHjXoV~UR91G-$ZpGu;@H>)-gVE66Y zi=8`nT3ZjpOV6J_-^9Lhw0f|0+5cki+JC^$_+vdJIj$AX>h0Jm3O|i;gX+B`{R(5G z^36VJIJgI;AH8J>K2{sxKBC;2kO6WprJL5E?tnbI5sHJNH#ebG1iwJD5A_FjhmMH? zjaje+;Q@hlHA%`<>TOWUyRyNJ%{z8u&3o(c%Bw5z*O&i}Kfm}A{_pwc@qhpK9G?I4 zpWD+*fBB11u4rIqY+FJPWO~I-oG<|y>FFk9L!{?HMn<~vR5i--KtrR05J!c&575|1 zf!teL85%o!nZ-Nbdjmf91zZuImc4<1=aG8x_PZXGRRl0@j0oiEK^)xhFKdVH;X)6k zJ3nrJIYLj;QPbz*tt~;w&}kG7VvMZvy!M0`eEBLD&YPbIN6;<(T7AePz9;Zp%rh!$ z($6p)4h@(Ndkii(Ee{u;o{tOXk&2K7SxI-LXXq4|j+OEBV4iqbQAtgwq8lO`3@F&Rf`iJ{pXM z4==>Habw$!6vhj+E#!qX7_iSNEw8}S&pd;JrDcePPEN#msZJvcR!Du4y}J

p#;#^jDmDLT@gspMqcRn?}UJgtI2({_XJrEW9LBnt~J> z3yy7dFyZ<6tTblOYn8@qwnHf^#@2oN?KM)zq>qW9yu2KH_Q=@Bw!>rim*=79E#;1$ z#vB|>SYC`-ZyBXtJ5Y&7wie?z+e+|j`TMuMGCmVND`iE?ka{fO7-p9`#?VFI`1=3r z;EfjvXYR1S@wg9{hgZgP_B~nhTQnGl{2Sl+I$W+axrV2!t~Ep?Ql65QT#(w)z;&ph z77bF@q8UetUD^O&PLIwhFvd|*A;-M9?hQQu?!Qp$K0NL%oH9%F0k>JisaLSiX5S=# zt9EQKFV3nP{bpuExHr!z7-1G~N{He`Xbx{_L!H}ijBSxJEaR8*I2+rSK*MB{FM!I% zW>nX?vFl$iio7h(!1~9((Hty#f_YI#-JxSXQl_J^mxfNWu(8F4-3?f~y&hMdm4h!W z%126K*Ri)KHxXaIXqbs#`pWxNX0fI))Z6!zd*ynuNU(R*p+ol}eL`>gOlgNrzE;V@ zuFub^K`+)OZ>yO-+8yh5HlV@Niv0XMvv^@RwFGTgy{V>MzUoYEQ;TUA(ei-MyLKS- zDMjgwv=ZgyrDKP~*r1%|%vJI_!wx9dm1N?P(yN59!}14OMYoLTnAnN=+(=7|!{kwE z*2crIgZ#Ke6hdpj=@S&%MNy>ZXtJ$$0t4mNTxUEER>^=WRMj`jz|)4DGH}+(*dcGX~zeO6*+uywrbDOf4nKz&G&;iE=-&s6V&| z2S50ibZnBp#v3^VS0D|_bJy{znKXD}@%YpANK1(o;oKp0WE)z$?cak^-9!nKI=JQaW%$=q4`ct94e&NKVC2-< zNOa|b?|S0G^;7B247X;yy z`;YckB1y)#`IECyD+(vi5e<5)auJU{wG}Bp3YiXTg=*IKi4!Lo@B2vja$wDxwRrd4 zcTKnw<~_YdsX&FHGD)K;L!q$mV@&9O{No>Z`Q?}8d)G0Pp(w_V9b@v$=}fldis)l) zf1xL-H{O9ZY3H7}1Z>_@g5|4UH@_W8ceC3=dHUA65Afm6J!nL{IfpyW4nK|3gAL2o z^ht6bG(vP^h)x#ou-&m= z;Or0PBaJlX+AuQ`mM>p!WE9FAt5^RED^|Q_W*|_8HqRbDhIwXWtI)AS4n0{}M!Xj; z&dK_18Ee0slYtv@vv6g48ord3j+^qV_}A=P*?<^BmCq4A#}G0i(}jlWO5FeRpLYm> z(;2>G=d^OSHFlH6rY19HyI6U;p>WtRIrn|2tti9rte(#h97qzRPS`}I=xm@ZlXev+ z+v$hE`J`ceY_qkH*dhBE2VE{A0VVAC7XDpS(b-q zk6`_!haUSTxsPT~BR2o-G1N<4FRSySqTYu_ZwnG+%q*IHmgx`Z6vISgr-xpk4O}eN zCu4t$S%mjsjTfc0K2$X{Bbbtl^a*oO<7qY957l~6)7T7mV-xng_4kmR$QKlBH{rI_ z7o;x=d!|N0T_MetA>*+doDxrH#C`7VaEqMzr#H*t_DNgr1h>7grUFY&%QW7k zPrqJ<7EXH#1#{nq(qOn(Fq3qu#^8W|B4ja59NlS{C>xz{>(^t`QU5}8zPH&w3D85+so+tDE9J~%p-a%yvo zMoMKUphpW0p5Xy%T%HR>QDTgRVN6mJFx*;%g>TyEg%atxL=ONP+Kf`g;Lwrqt<`(m ztKp*sEYhgaTPWDdxyEGlywl?oZYXQUp1Kz4tP{*4QG6q}ufik0#bCE5-mGxHt=b>e z3nCg^&?!4v1{Wh}_hK+P8ZuzDB}zFYBw_tKP5A2{%dH=};z*PxdaMN6p1_fd!V`^v zk%<`34tiO|VOWOKBz`u620ckAz;`~5=i)hs66UYXj?J4lo3EorjWpgFR5-X2?AEPY z&8nj_X3UUVoGM_@&=r_yjY>mQ(TR zQNmmEN&ma-l~?eWzy1Y{4UNdk%ra%k-!d{XMWK;X(ikuhuwD8*aODoe#52#gHg?4? z$}MAzdg{9xLeE}S^s7$2L;imk0Z$C;6ZNoOt&ec?R~B+?!am9^mg4}BOpBGJSM zZstNwQD_SU5NP%wBQ+jZpP!7ZnEm+hm8bFA;}2k5dNsasK`cDJAmXi;fyR@RU7J6M zf4tU&`yZ*oJ@;3_PwN?t0=-50Lq0vdKhskZuytR9dErMU4o^jHhQmyskBblDtSMRT zA!RaT-`V3bOlX`$do0eFm?3p0RL}D=66L$po46oGR|U71u-wY3Yt3_1*L2@LE2~0v#_jXVzC7v}zS5z*e{_pplHp87-GLG;S+WF^Cr`4rM#n796c=Y=Cx_u@8c4$)@7+Q9lGmu; zUt+E~)ObXOXp!-&tkZPi#_-}^ok)_t+7)btui1<1&bt^ckzsb09l$S^KX2sTTYf|A?7I8G?td&!1~q32wT2& zU8tRLTxVay>-V`2>;9o#W(s^F{`h*S`OYcl%&WQMQq7pKx58)Qka8+H<$Wf8<~IJu zeK_Ub*V1OZG|5w|OW_H`8yRuHki4f?D?K_p<4WdCjTlrl9R4kAtPPVa@`=aYWcsM; z>S}O7Tz+PVFs@q9tPVrtc9`-yzX>Ij;q2PqzAN|R@ym6nJ1WWmLrGO*ke*2NA_ggA zDKie&uykjaH-pijw67I+PHL#9cBqF5ge%U zV#Cf_wAo}pqcGQ3c%7DJTrfJxtTf*fR+o72@^&{${qfl2=As|JzbJqK z2liHb@Nu~hBT{W<75tu1?QO-5YU%V%tf`*eOOIfAP#KYd*H`bw+;h6VVRmJR!YIPx z!98vS8He;lfguSf1j~rW$DBDT$HcnLa5_xg;%dpE{VZ>l<79C2H8rBJaF|i5KmK^L z8N~PR-zS3c6l46Pf*O_LNjW708Ucq&Hb zCL5#bhr2_osx#hcs*L-QluBP+*(gdf%Yk{^>Sq zxet{s{-xowy1K^fV-p39@p!o?9gV461cmWPr%jt?j1%3#xWtU}W)|P0-ZfMP7Cxtx zpF=J;bDF~_d7XK0y%*be(O8sxZ2F=|SiaH+BuYBX+0mF*XivbIsmU0g5Q+yM8G|(2 z7LR!;$!692&QI`>$A?nt$^DTBj|B5f+H?9aJ4T_^$}Q9Eb(M3w=)QKdheHYWw=Uz&-;q)`3ex5tN)oiaZ4 zwN3OFj*Ya?N*myK#+M6o=gz^rdGp|Qb8#~(gbw8@J{uE_OvmD0BjH%idcb64BWui( z=h@@)6=?rJw*_++)H8$W!KfDWBSy|RE z-ShO*&qy}MA|oR-o>Wv+7z5Uqzx1W3{azRzQ;=VPKmYm9W+Akwq;1kb z%EdW-jkTuViIsZAnNB8Nv)rq@>X7+;_v#mnv9nRe=i0qnQMTzF929xCe9OD2*|SA{ zdk+WSUyXh5zKROjul~R;6Qka|j9?q%HAz3}U5vET7`cCrQyjY@3CZP7oG~sHd7=is zx}jR?LkuoHEz{INhQ;}(YHWEiS>Kt*i4Mfwj)9G`*SBdamD-`GfkgxHT<8yxYu~a@_FBu z=cW;K$!Q(iANTvqJ5}%o7`m?Gcr~PG4APU9V?1IigNX<6CN31G+4W?ob^BV3v4tL( zgq`!K>@@gUP3WcMZbW{D!%XGtOrxg-?{BX`ONo8L*F@E6L$|7(!u%N?eo3 z4|}EGEpG}UD1%ZAgt@)5jiJ<0VKgBQlt`Pg|Q?{jw9#U{dm0N{rxfCot?Dnv1fK2 zMouGJ_E^CZsX$32MG{OPK;#@7opX0}&PT@Ug0^UcGnUz2}~E z&pk)cj85h6q9IO&l}ZF#-PhNrA~d+=v#7LkJ9JM^uZlEfbQB$>+-A>0BCN=)9&nl> zw2}ylf#IsERc-q2cfY5cYqL=-yIw`fijtWK`Cu)p#Evij?`VDa6Brs9!^Gr-=%Q&H zIdW8V#4;prSELLLCc7IsZY5-7&`gd`@)ky1(lJ`<;3WMNjbFZsGH&x$=fAs#945QY zV(j8E<#hZ&3`VwB6nRD`t7xB61(nY$&&CDu{cpahXiyoqq)mrQcv%?V{?@mJN6Tk| zV%2WNo0kKkz}sDAXj-?m@WIUpj18mf*t?3hhr7<>t$+F&BL2z3x7WdHu}}TV?_t#p z4%AzLj@98S=U2w4XaCDJqp>Ww>zmG4rgJ#@jsJ|{Q}SFTNQ=>z6eDn3dp;*4Tf!7B z7GplEch6`B1~J;rYKwCIeA3vVqjBWu@KOcQme78VyUdA;{UJof@Of@eJytj7W$&0j zjw^#9m0PVi1&ALV98!^{Y@pT5t&#aJd5y3b6qn>T|o@LB!2cn)7mBSYEleA};o-`3WqQl88O zMzGRR!Fi)wtfP9du-b67CyA-4o9Adek;U1I!msE6`XG4GOptMA^j=uz1!>?!G=_s= z?!pmLlw-EhD}Hw(62l=mpUxCY^s5Qs#fzn#`9gTT)h)7v4UmIVPA_xRQDH{yIwv|F zuE5q$*JJ1B8?f=YT68{IiRK+;s9EiRx84Y+D+7xz3VqZMmn#idxy*0TNsOZT?%7v{ z`yVS)v{pnUq!I_L{BunQ9Yn?L<&=SJgd8#z&9!*6wo)Cts|(ezOLuPF=KgjF|4fHN`07{xrAn`KD-?A@C6f!_ zdw$LZ^jl%gn$`H_U;bsJ#m;gtx%F*?NDb_+H%wV*FFg;S#g2n+q}Y+r-s${Oh7 z5mf7SsMO^!G18CvvU2>vC%%X^bxkUw@#T|;G2$0p(o=z0foD5JZZNXcQCI*@$>;t^ z7_r6Z`lJ&EU65B&H!P%PNQ=EOdj1H`|K#s++)@BR1x9}fK4|Aqs9{%>&d+y5{6 zkG&!CN8~bf2~J|G6FHFqYyneD1;_eTh5ES2d8TPma+^9P$CCG?GoNyNi8>YoVMqfr zrGgI{2QSt#6XH2`J|~>Z}+E zr18S>3@%LAM5fP7Lu`X;%R=W9d5Z88=KLI-yfLzv5u{d=UO8<^@2o5z7e&?=;zE8N ze4dsX8$Nx1C3NX9`i92vg@-)Yv&M5xPa&A6lxYT1>3o`mSTcj!vb;~C6i2&47@kTZ zW&Qx2qZ;mM+#y<-hLr$?o=zBA?|2ZCq5L+7*+3!JHyMK0VL`EqJy(V5%f(>lc9&QP zc9Tx!LMv|ND7Q$ZXW6lN^~Gief`z%QsF zi-A57NFtt*Yh26!mM@Z&G+6M`c!}%RFh2 zkx5TJ`GktNq|=l6y;w|#+ooQ9^;Nw0-T~!2Wpz>>XV0F&;loE%6sJ-qmf{>)1OoAd z(6<=mSFhsR-}#Qpkvbb#B|0Nx6&@Q@e>10N-NyUjS+x#7{pri1u;|gTZoOJ$Nv84& z?`;8{F;q%REz;@Wd@hXwqry%4QAb$uDzhlW&G&tza6%r;S$gI5Z>x&kN@4z>!1*C` z&q6useJQB4icygfJ{3vHeBjDB>4@|sJZ^A!2xl0bEVN3;4~^m*jL4-x44B&XwbF!{ z73X9uibLQ320~&8se)9}o}o);@a{kV4@73!Zog0r%JmL?{~wWHI){Q`wd@euVibgQ zp~BdOBS?x-=%~D&?~(|O_6cu_V#BJN4Gqf6bG<1TWqhpe3MC)tAf;^_Ps#sE>2uM@ z%P!_l>lzZeF2Nfo#_-OWaU8pHW54g)TCE~Wr=v|iqug$(aa=RJ2=1`(1rusMWTd}Y z3IAm8I1XPK!KvN}we@gGQM@vrbMpI1pHD3cEEL=UQv{8=*|yTp1xC~{$0^&fV54xU zkns!0^?3P>8^@1eS%7CBBxv$7EBIge$ zQ}C0=k$0^mWbPR)x0baAvmTBL6UtZFMAo^`a-SC+dn>T!i7IUPXbm=hq83dXEl7+_ z!Dde5+0RsA+a9;5lGkaUq9!nvhS6pc)-657=pnV0zYw*#QlNu|3(1^^To|OzM4eQ| ztJLvwZGKR$P{z?o$}}~UtNcCxzLQXB&zR8L`Z6az+Ek5a8mm!V$XUE>i+_tiokMhp z<|cgc3tuRFGB?=wbPkn92=cvh7|k<1(O16w3uvgXN4@j*>L&>qhl}GQ=$#nD^Y=Z1 zfA#EV@Eafb6u$7#llb)~KY`Eeegy56HCSC;kKdHff9>&)p}8Wz0R8Tz)7XFR1PsE* zCJWo?37SsUlJsmt{z)a*M;Jh{P>}8^hl;$CbVK^*-*lK3BM7-z$z7Ioa#9#`uF#oU zWoHMspyN$f>RJRqnhEUPN`7 z84qvpqM^d74!-ASrJxfr7|Wv1H@7~R626=zzgUbclz#Tda`^Gl8yCgL11Z&RkArD) zbjn$3HyhA363y#c)6h2-M~@syRgmIFTpWz3#a&**EWDQywB4gjpHLVN!KgohA0L@O zn!8n3TE1xb(1J5W+hTt=VF6q03FaZyXEX4HqQd*dsAjG&5duYfhfF&dPvQK4Pi^O1 zQ}0z<;waP^K{D)*!ao&2wJ_|*x7WhsypeGyk{P^vb^@aTVf>|nXepo;D#B@Rvkj)A zgR%rMki9ZQ8_Gv4=%F@TeRw+ ze1B$Ko=pkOTPxuU1)Edh1)A2_F&fdKcZ&U?bN9@d(OA!K`xIl)x+n|74U>n1uw2G{c-!tX@n7=5`yg1RIr#BODB3VqyYi zWnNVsnXmQrb!v4#E=oL|pPUmsT;w?W5#mp;%lGVuH{Oa((YcK(uD^}nM* z+7rXi?y11KkNpywc0PgXwL8$b<1tuDwoRvn9=X+ukphb5rqSeW2Wfsbp2D_q4$#R~ z%1?Q&d^a{UfVQ?)j-ZI8gj1see!4!!TbgpP_Zc68ooh!Eq!EcTyBz}2w}-c@VW`OJ$OnHZIE6(W4C&Hq^^egxSa(o;UZK(`Lk`)-tuNUUjQXn^AvU zIa$*=p(`4k$^f-1*_e|4kjv-CVX1tKbRxRM#Mp@N(uQjVn{EZtMSuUm4bBDf&Hqi?tLHlX>8g^S9WocrzHm7zGmPYNh5fA$o_i(hPU) zjs19e|0KpQN8qZq%i>ruL8^aSg?+@j5V79#| zBb8H!bhLuBR6woQgOMv2@k_t-i`cYrW8u@e!5v25`OZJ9!g56(MctP=VbDVIJ8c4DvP<@}r@=O6E`s-+u26dW;dhe#-nodZipH@)7E# zd{4UOE9r>3lHxUTu5xb5=hU&(Z{((=yCUuLBibvxCJX%V9LhkR!+Ap|H$N-tU+Nl5 z1fBgdwoErO8@Qu|dinY$yV{z*5DZKvaA_zmGUn#OOr_vLC3h*QK!k;Y{UGykY$Bqj zB`fLcr8D0=JEaOOv9J`|O&x?$q(`oV;IqKS)huk0ei>exHu3M9mb%x?+2r4{Ozkl@X^m+9RCjz+7|nJ7Mw+zgY<5~0v)6( zid2MxL73U3Kdh?wvFJiDmMB#83#&@GRnv@DtuqS`N^hz^FZW-uf*Mp}b`Sj8+>=!V~n< zcu`W6{-NVT=fl=Se_BqsW= z;_C7DaQ>ZF<@EsKjDDa4v9$lldyHmb*9nYVI*qaJ%hC)zTw)Y)aqd z|0VQaIEgIBjeKOKcp4{XB97KZlNc&`oID+qkH|-JDiYLH)2#Y2(0>^tC*HtQJ1wXy zzj+><=t|+l)hs$5`>f0vo8lY8rw$;=EwJpPY)phVqoZ1)qCRLxqNOjm)(SM`TmWQV~EjGVswm}7xJ8xaU28E6Ai`X z;KO_l;Wx}j7YUPYTMA#y4KDHw4-bi`lQs&-mzl>@MNQ8G5kv?Grs3_IA_#3@;8rp=r0RJT5Kh!)1mb5 znP4&Lu)11@-R=1u9}5AS91vb)vN-aKo-=^O4aX-SgVtwoFQCu08IW6Yi#o;Jw%FHT< z>d~$s{`tU|a+rR8Z;i@H%HO?ocmmu^#r&#t!2aae1kUzF^ZDJELqAz6GzaND3sRTn zAibNgKnE$oD()G*31$)a3@(X_62<7yv^436#1P{O5RI<~ zH&m%tGQ3h>5A&J5b$T4b411@6wX6!4+(-nRPFmifD%tB0O=r;`Oyk>ULpVL2Ldqz{ z+pUyR3V<1e`!!HliV+x3rg3pRj^S_`)ea+A$)77%tj5pcPyVD_qv-fsZbU+&8)lJ= zW>8H9e+FZhk6?8eP*W>Ly-1aaKMA9}8nP*rxwH7xXWbaMIEDC>D4ujMa;1_#;z3Pq zu0B{Q=v<((OM{w@4fR=GDX((bZYugwL?n@dFD%M>afO#k3YD3Zd{#8lZzuQ+TtTK& zz*&ZzyfUIX8jWCNXc%2xU1FS?S7rN^vs7r(-**8?ZinO; z->u+yh#?aV1<={qsnR`+iE*4a7UtlE^MTOGWPdk$#qjApeFTFS&%ig_hnUQPEc=W+ zaHe~(O>%$cv5ZblVDQ38Rmf>njH1!27f`jTL#Dxve1Hzvx4-pQIPuC0m>BF)ix7&R ztLIojnxkVH7Wvn zE-;#kk@WmzMJh&N&1A4o2c4r_xa#Zcr|^{LTYh7A-YATtZ#;&!7BeD|9KQdP z5Ry8PeRm=+lJ;gq|GFHDW3$5s+YCC%Yz|VsBki38t3#%(iI_ek_yCx_ax!0 zvdB~sT9Y=6T?orm*U6E?ERtd-JdZv}Qf`-<%;$`tD1@=UcRBkptARTcZQ(FA;aR!1T5g3rfe z1)NsX;kMh5@=s#Vu3h-lr#@Nu^wxOowb$|9dk4|l+IDSGhdhkwnL0Z=RLZ9LfDwkL zPM^kA(K)RiugIHp;hU8QotIqr4}^j^+;tu&d%HwNWQ1yTY8yT)(z9Cq|9tmnI4rW= zEc$LlY)d*djw1?_v9uUs@zPSaXsJmt-y0V4ij3%R=+aAvAX$pTwr7_ z?j*g9*TlzMgOyNRb2BPNBcTEI@a3Z@tP2V5q2>SoE2udTo#E*QL3qo zP?=Uvhm{ii(mECODc9$H2rA`r-wNl=RgsGb#gcgksdBm$#*wee*_t1Z+XimWVL!1g z%E2k^U|WiYhtN0k_6+vtx6gB{Jq_>twoRc${zlP|&*R}!o7h=zz6?OAKJF< zfu$se7pKIDSH7p5_A1(m^G@;emEut);I>Zbzd$g9!QnJAW(RUyY!f=l1pTPpxCep$ zOBg+S5Krx}ptIpdKE#wXKX@-DMu-h94?YVscQ9l!=zjYLYK|#`ekGoR^HAEJOr+2~ z5>eah%Uu>_gb+5fK~=Xe%Ijo0t9D0lOMP>-^s%6-%!*6>A-sRl2fNvXwGHK%io}u1 z$+eeThR+0LfEp0=O{!vej5KyQoWdSwr!6`d81>3mI#h3EFwzJd85zNmBS+9bFqkj8 zQRK%TBuHP$40?LvIDaW2yjS{yw121ZSMK6q9%tb-bc^(fUeX}6;^Y>j63pfx^~+rN z!BhbKjAZ1;TqxxCD=E)8--NE>KG6>cqlkwx%HbIpiX%tK??iS7(y+ROmRK>l zr0cmw-_vMQ3!TEAX2t0FFv6mb`nsb?#N`4j=^Q2Kc%ptq9$efh#ppQ2Yv)1NIr%-$ zR}LihleC$-j*@{lj_GX!=|Qzc4!-9hbYc*iTW7N(DRcN}B#JPfm%@VWsIobdI^~@WgCy)u?XHgHHKhZzMwIBtjjg z2C09vIcsQAT5=mW7s=%44*$|Z-37x`y(pAROA1iicMXbHpsXuZ}S z-E(yx!{f(FyHTglmp5C?a#x2V!gQYB4CMRT-R=kd_+Nf1-$tYC6EZUq~M1TY`_hASs&AydF%IG2VTZ6Na zt+(j4sWG+;%)7Jvq)_y@zf(^^^SWc$vQ5~~puNeHm1)nsqJyP%RTGodDd>&DNRT&* zBS?Jgwu3YLm9^I|I9fC6XbT-@-=3LdK-9QaPH`ZG)}0xr-HhG0WCN3h<*Dwz40itR_YhYku@f#W1d z=piMGtbxe3D4OcVA3J8b_)3|-C{lIdjDdwzGB3Kbk?owTfA^b<^m%6RN9FN8NNH;o zNrfZF4=uJlXBk;I*P~IPxcWAZ4)D{}NT$?SK4e%TS`612E@aXf_BonZ3k1YK#%O#o zo;X;0rw;agbV>HL1b=*oaZhl4aaO&w6g+W16rb@wWS%JwN%_-vw9mzeP}%h2c}C+V z=DyZ8OSHgcQIvQYZZ12=$o!nHUB;BHG)^tw=@g=5meQjL`tS%2dU3jKazU9Dc!t6b z3AUe(E(@BQHUE^{d8N$7e6gx|ZfR-pF>I`9!83kYTh41;P3&Rp9~uwoL^&yo8^^@% z*!xhb@BLvN`zK)^zgXZ*5E0(H8%8k=cc*bS;EYod0x7UUN}K1P?(Zbd7XK#@3XG~I zrZCQg33I|E`CE}cSwF@W`3Tbped5@@^R_KU5+NyTjPomU8nz1Wu$gMJbD1qQgP;{* zpXb7KehkYf=NbX8DU(42n)JNRrir#7XD5ihbfAw*aml$})am_~5V8Y2uIVSRbyaEv_x=Y(6kmGyI)tXdUIx2hA zhtUuv^~2SDKSy%<#{n;HSpvdBRBXowybu6wt)>0AYpVIp zh=wz^pr8)psdy7l^R80XNh;wdE4rd7H%(MfIXE|iXbM8gd&5B(OI8X60ubdYwl z@Er-D%|mb2Z-*8&M>wH$=_%#`0d2a{`lC^+{sGCs_r0hnWJ~u{Dw4RJ#d7uIlMAUZ zIcL@KR|?Gdg02GO_<#eiB@INSxPrgu90mf)wc(jO zt}h)ZPe!c#MFY;?m?1r$fzmJmqrCh6vrZZIs8c!ykz;MsAKq~{8}i)#gb5QxeI`%) ziBbSXSh$SFGuGkTt#7T2#T;gT3RacujL+3^VZ5x@(Mu-!QtP%4J~ejoQ`Y{X>Mxu% z09>~EVD^3+3zT;q^GSM3XOWNrL6Y^@BCx7Och<2vPa1XO&o_2)PO_Qr?HY^6OWs&V z=14_Pg41WamyFs}1?02oGUgASUms`!<`NE>+>CBkkM9n)$9{ZNFvuuVj~?fZ|9n7i z=}Vo2N-iKz%0Im*V>1|H^Au^2JR=!See~oiKI9ofrr3ZsWLPFAzO~~NNDEr$E z#v7XOTYY>vT#ml!ws|}?{d2ttEq5hktDlDqC!}?<(n1$XkvG=dm!U^Wb&WcG7v@qU z5H6hd!hnSnoD=$0ZiKu1r11B!`8p=Cmq zXN}A{4nl84&)rb3Ch4$ZmAtaE)9UAR;1j1x9t!H6jjlc;v94$UlwLYhz-3>pHeI9d zsdAaNm0n4MyWyvCVqdlte}Kj0N>k>4Arh_%5i<{_7`*5^UnssgB%WaT%a>Ga-GU~Y zj&~qTxGC#4vH=Vfq*Fb3L)vK(1sDCu8ZGN{$8-4^!WFNd8w>0>O954Qn75_QZwDMj zI)fF9HtlLAuykl5Tb0M$_>jwwl6P#*atm}iC|fz;>R=sYcHad z5Dn3TKSr>mZ2OelU5+7C%?$~kanUNptyvyKLONLd=Ddz^QAvW-hc8)O5?qaj#J!)X z$yEgiqAB8gysxo{h)yA{k@?JdFei`K*!*5^{-$R~2 zbL{&6VZS-*PH%Y2;Dh0Rs-+M=_TR;5+9!O*nToQY^ zSYlLJBkX_9m9uQmy;n{xe#}vwibA(4$fx=g_;JTSPa@&9q|7d%bpE95Fjk0*8v98P z`Lu0OKMKf}{i_S_K*WbB8?6;)+{Vz^+GruQNCfOpX9KQ&w65BlGuM&$YwJgcuu2ih*LR4XS|8U&$h>y$R{ODZYG?I3Iixl9kp)$5=J z-5CF6GV;HEsd$X7slsZpM_!dA$>ep?I?56bAOb@AKUZR>M`AXw+`g6ygSP){ZmSB4 zev$aw_bw;sZDCe>kxC4qHOvnkn7*#5#5AsfS$B5VRYDi;rVW2}y{TCtCj^t$W|{rk zg7XTJ6QLf_;0M+A^2Wp++TOv}K(&+Aw5lJZuq$c?E?|>Wxq+PCj+Mlb7Vz6aejj=} z^KpOMFnSc6puRm$YWjN`H)s5;%|S2VvsYs@`h{$bKJSNDq~Q?#XEU_DWd%Q#0id|? zLDEtaJ#6Vnl5iZVU9=p}Z2Z*C;6J48fktNFpthVmV{Nal`%SCFc&0NF_=(Mluwkp7Hl7-OxbatCdj_0ej_o1_-|F$%bVVjBJIOy9#?gt z=_f7T+rTDnMLlp5Bt#9F@|-%2O2|=)?8cjL(}ewr5m+fPJW_%wY>5z@>Tfh)a5QgM ze+d#xu%g(;+T&xEi&=&A@60VH9vpEI-gr?Bdh@Bx+1qQ(xh2X<5`K}8fJSG}f2{Ei zRr^&%jWdL1WDwnPX|pm-2hGlmO7Ub1Uy3G*Xj+ipI=U$QqL~$=y3Hu+?HP(e;MLi| z&k@8NHT8~KA4+gYixoa$YnSTMBm@V{k4DoK#yP}Wu1MZ=UPOXpU!+QjrW?@=+aWw zh7nPNQ--LjTaaA0f-dcps1X(YL2fzq_bo$@_H74y(6Pb36XDcnqyEb%lzt{O594(337XV7o!=t9Brc6zMh@?GQaZZEwKd8LyN8gcaroNg6I*`#K5hi2CzBzjwnM^ zUD75~<$~*aqd;2!i8{R|i&pknF(j)GcV^3jtOHsc;AW!Y;PsAlAb3(Ib!F<9SGy3AD^W4jmTpo z8R>Ts*`*UizboP(!4=N?GGzDxI`5%Q^ZXJ`=z7l-tO4GP9r(#!`6+x*Qsph>gfW*; z5vZDTciLQrf8+5`c;H$?=G1kLoh=gLP8H3JtpH6?Oqxmm6kjbg0kdVFp%N`)DmzqP zlTU)n$^n4I?k8YHeM-oO$#v*L;xaf=8t5hy^JNQ;!&WszH9P-8z%z1(*y>=!j2W|* z#Jlib4wN>|8OsBVIWEhC$*YqK;A%~OGz53pF`B%i+f+|jI&|} zuO^lb9?M0FZnnOpb5^+LTfvDE>R-50@Ca8~e0Wk+J#_t+gp#V@X8v2tjD|q!*252NRuj> z;gKKRwzgc-#atW7D5>ujs1&55-}y2t3*G88ISzm5wP z^vf3-3PTmUnX$xR9H|(DOhInVo9ZULoE>rk)W`tLYV#Wa+2nzYM`RPYUI*O@6h^GN zf^KN6AM)~R9j27)a`E)Eqay3=@2;`GkpSB<`;Q+#`riIHQLzs180IqRf^R~6v5z=U zf*IN6@KKR9pKE%nwh!dKx7H<^2;kad>_@B$CJGpY#*=0idixB<{~#AP7rMCs;7|XE6G#83bOf* z>^*iahePmjXLqlu7;`P7Pyk*;WtHPx9OylBrl6&~5pSVL7sn6{UxD6slziyG=&DpM z{`3AqLtxz)&Aapn#wijSF|I)Gwt-;=cxee0-J>I+<404?1wmEaqsB4^N7s)y!7(+p*RyNX|t%CowU>^^G+B=++VbBzzhND9=+x($+^W zoicKwF*obksaTvyK%T3DInSD=F6C06pq^qwW36LjULXeUh8Y*U(Laq@{FW}0?)n0g zbuJAUXpqE7%BTzVjJ?;A9zPPHPq!#@d zBZwyU_7A3e?BK`!3^aV7U+|fs(RnG?O@)vCSzKA`x1aG{OU3{FNzOvsPRxx^4v$8} zZT$nuKoqizgs=YVOR+jQ9DkL$!k$i&+7y@8oRiR$SN~)D$Y9NQlwz@ro|R~DCq1|I zY#t=!9d%+zvZ(GsEF;O`2QRKyxNvmlL!V`RrHnkc%Jvg*BUniK5>tv6)3C`6obYfSMHokJgI){}>Cs z`oNBw&ds@zG#+6sZN#BBY!W(WE1_3g9RFW85pnx}g?8%$GjvLA!cU1+{Cm|{^tJY(!a(dAV6J$GiEuF>i<*gzp{!Zi)BDbP0gpD+(%{qQ#K?lHROrgwbp>M!{hT#9c@hTrWLjONk zbZNQo`ea`0()p|KzkB5WGziT3Z=@<^>AzWjj2KN!dSHTUZ;5+=^!wTVpT+*$P-lEG zXzA!ti?7xMn%_x)pMXB(!K_TVEL@8`2Wyp|d>2<;Pjhs>y+E5NbznQ|%+;VvfeAJN3T?r!+rV;&xy|vCNLKE1k5%8qvWc^>JM9(?BA_+qL^g7|f@E zUmxx!_OVNo#eXdvzw4V%Z zPUV;&RGdv`zOhZg;CB!abv}=da}H^eX`Q@)NLbB3J@|re=BmO3@rxMe=M0)8Gh_!% zM=e#1wZkha04o=s7W;0!B459KdmlMPlnb6RokXo1hbj>fofH^K{^vN{mG+anI2U2IK?p*vB7M~) znglBoTLBIBet1Um9dJ~T|6%2Uo5GQgf0~3CqAzfRhxUN?#T~1LT{yx|Nd}OZtIazX z8|4rwb6fjUVE-u_nKrlBSn>PoHW4>7N@xiuRVf-(P#d6*Ye>?yt; zdwf{&f7Z`D%g6AiR-#|XZR5yJU&Me&r9&}LVo=C^E5^=MDrQp};hd48SwB?8g$2yc( z?Z;(fqXEh8AI7^i?{=}W>AP4#u4K)m$Q<|_s1!uNKSv9h7!b(tP3?Q7B9#FeV* zjv-*%&>@SjOZKA0Bf&hetORJl$C85iNp4qn3fz%|2a}+o0d}k1D?PV5V$RXwJz09> z>9_;u4?_iYR(mUI=EH84q}J|)b0VptQE{d7znSs;(NDbmSR>;-`LB)v#O?*`FJRaB z7=J4RvGC83E!!;F-q%d@)q>=>pvn>bT`pGKBHH;f*Vm~zym`(M5In+q*J8cyXN%Pb z4*Rt>OizfRdxGVU8i~W+xH!0{X-YR!@bmp+_V$w@HyHEg6Tfp5Cgusw2#f!6hqYb%Ne506fxFVFMK^NmuUn#{R>o;B_FBjqeF zdy&qxfLF0Qu66J=ofGC(m3eP{z-v}lpzzM+ftU2jWfUjI9W=2iuHRkeUM_#O6uv#E zxD{0(J)DtH!jggQo7aiuhTAy`BsMCC-z!3YD)%Y)k91DIRJM-fF-ty~)L8F9o3N$S zcQ+#=!fSuQLswHu${=O3n^iUIuhZO1BAoCfD8KP9`|WCQ99)dlw#I)PCvhr2<;)EB zyinjt@_QorI1(NB&v@1;w|##@~W|phRn= z@3q03!TOR3r&8q%UTar=y$`jiFc2ue61*>KPCq_hJ0#lbs=Be@>nvm4N*NpnCt5kb zaN`zI?b6pEep1Poj;Y51{2q$m8t_4PGJi4rAp{M0`VfTZcOXZaP~=W@x zp56GO>*T`ZHX%S5A@#xcU6b!`9P|T^E4B!pi@LY#e-HM|!AP$=W&}tfw94wmQEIA$ z%m8)R-cs>_!bKl&IQCkD1=iyu5q-KT&TyFBs(rfQ>wAsJ9!mx+h`8!Z>G%&ayeiFgygsQ^sL!l6s2B9!~OAu zQG@vYw35S?eUkEaE%wIp;%y==ud|k!@H_bx^v0um}rYh)QCB(WO z2coYgboS3VFY(r7P~PXt{Bpu9xf#TcFKjG?DKGzs-tG5Jrjt#A-k-KJLY4=Jj(RQR zs5_=}y#l;-|1acavXVB) zL{FFal~5qF(0P}t&u`%yolwefxzSpJ>II}LtzF@%W5X?Nxm3M?0p;K(MSDDgrq<|K z>Dw;X=zSJ?cm~*DQkE_m5!M2AU-P>5z#s1(^$ElpJ?RxcQh4~uN0gmFk_NDyj?w^_ znRUWgVLg;P3|JjW*>opJmR>>d0<1V5deOyGkUG<7+k5Hn>a@I zXc4myIGbH*U$f~`l&7@I^tjct4r1@$bzG|Z5)QI4m>JVMg~ ztcCGmb-3x@dz<;O@V2H>(guh?;s=I^Z%(f1t5SJOrJiWxPtON&Dw+`^CdvG{&b$mdZ6%eXVchvWWE71~*UMf7>aR zE9(TWYIB|hn)tihgm^9IB#%_&BPnie=QTB~bxbMaY0?!H+SAPByPrVxOP(-)4b1MvD z4pvbamStPk{FCuD2cELf8ibMF7$c-K(084}>nyZnaMXSy6eGDrPo=YN0) zZ4cD1Mq{nSJo1AXW#xVT{ty8V(*9B}^*C$3Zd=#bNaEn3ba0FUG9R67ALU4&ps?J= zs(5h{^D9!nu`il4I_fLbuc)^&g!|d*ZGyG6o7SV&i8&f{BtKH5d9pknh0If$js>Q1 zjflo^|6Z|3!1-Gs{e{oqf#{E{$mnfFh-%YoWaXkZ0RR zc`Nfa*J=c8`jmaQUX6$T9oxS23J%!0)L2LBUwe3jwSOb`)t&Xms5z08&eiPCg63#Z zLxi%lsSD9R@Z2?-*6eX6DF-eFp?q|B$5v+0z6MJCL=VRUzJm zo3ba@pqQuq-Ok2HUmmu=$=zzk&)w+O9$UPqu5@YXB^E2$Zr4{AnC)lqZ|*k*YXdW{ zPc(VF3wp4!9TCE)R6`5I)!|lclddN_sYFZ?Mx;Nmj~Z0Cq?y{eb?SM0=s8@0KFE%~ z`r0m_`+Lp^pC@o|%B}wq6KTl0q`KU~X9?cr*o+2cB$mvtn5UWcP@#5oMeLEI8Joo5=N+uqxlwBo>(D1IK&p7UIrZO_fsZ#+g zyh5|~;HOBMxVVF>v)=2>vf5hhBX+avy$Jue0;0OtB3^ZJ&B7k=`LR~$mGruYZlh*+smA_nrA4aan zuRm|}wxEtkt;{ik2mHXr+Qo`T8^F9zJrTu zq1|`QnlVQX1)=N6=xV{2854u=c#db89Eu=DHsibfbWCJeK*+TT#6!7IQ7YH5q9w0! zAcnJ&?3?U|dYup74UoxgS}Si$M5MV>!HN0&W(mL5(+wz(_l>nspGyD;2Ar$&eU)e7N3hC~WH-x1o&gC~LFIZS)5Qk-ox5)^wNUej69++hTN}eNA-?cNs&?C@}ECIc8ldt1%WEZvZ|^m6JN8gS|cNoNJIir*}ASi zJR`v0V7f@{WxvKd6mo^FN3FK4{+eouhAiw~QBZ_E3gXY0=*!cS8TM)tqGo2UYv3pp zwyG&bQ-8b~JBYrkA3eeprV53xy;`E@yU-XZJZmjqM)+wjnGUAC;Ex@1R(b4#amx7= z_P+g6QFU{H^6nSs@%5Rq{|B^#RD!$MJz}=MqW8)&G6+Abj6&+`Ibe$}9oK$M2by#; z5bp!|y62JDx(oyu_W#Rr@VRQ)oDZQTweuI>3vL~@g5SA?-{d+OrT zMh@jk0JyqR{-JlUuH}SKuQMT&@At#e0J-Ty7-M3>Q>fiF+u!T!k=SxLYL^msYIkZ% zzWwCI=WT79HL{Y3l^JGB7H1cQVFt1PJr(8GaI^_`PF*yNEi-P107$yjEu&XyS!qTqihoeVG2!)1Vj$8hi3d{uZ@gq@B~X{%-^Qq z45YoJ!TCaecLkz6y+<1(drZZ(u64t&I7`NM3M9gmDtFzk(|y>)g{=Z1YioMV6r2m6 zPS~fAH;1SP8u1(X8xZ*?2@{==e5$zb2J|)Din9$C8u+Cu4z<26v*M8$=fjoAO-X{{ zkTFjkFjBzO4VmgKRa?l)-DvR1WW0%gEUA|5mOB<-t|tn(hSFvDDPIM{-4%vqr`B-; zrEj#;`JOdU(PE|DYg!B4vPq{LwD`|~lKw75dpANPm-;7SU0TerjjWN)#11QUQ;f^5 zCYq&axSG;WfN$O^*6zZ~dNc&M8O1$ZXh2eY>jMD`$61@qR4af}L!nDFG5TEjZa;Uy zo@qW8Aq+&--Y5nsn(9R8>wqb$|9wwdZAjOf<&L zo8(TiffhR%|n&+g$IupxmEl<)pf zje`%SHB|Vgm3NPznbiEA;fV4`SgQAg@%BW1o-4Df-&++G=}47wqroCWpjp_TUPRY( z^ad+EV_}8#mgfW-4dS=@;7_pse4D{Z|B{vze@uwUP3gxJYAPxMuqqL2m!ro%lgH&; z4#Oz&Hu)(=6uS~!Ni97v2Nqz%fu6P*7=FmaE~^TBl^omkDDM-Zh`Qn;MQ`4`%$=61 z_Ze{%dcC4PC4xmuSSVFCceghPjYiBLA|fy62ih@v`^&d;&TawEMqbijY@=yNzpW2i z8!jJaSs`9AOS2Mb&Wdm0HzU|Wp=IusIUcMbh`c&M zP7L^rdzTACYww7>d`NvAaJB!_m0MeH7CM;;K1cSSca#XCDNA0Lzf`8yix59fmUe)D zM19_7o@lpfq8y)ZSS){ceH0{a-I1uV2P<_ohx?&&q3)C{@ zVgMF_Q}$X~=BuoerT5(3U)1?|sm8ljJvRyKu=2!Nx3r1thf?L7!I{9{Tr{AqpS8xuZGH1syU}dB zY=3XqTuv7m72pn@vK)P++vzXKF__3kJ#jH`|BOkI{l0gfRl(jmPU3JrQ+(_{dANRF zH9saK7i(VtX`Sc;iM69CuPL%;9Wkb(6Vvh~tT<3)=A{F;V?4}4U*ATA<2}$S7kO+X zSXb|vQ1HHAQF1$ld3SNUqSW~@$kFD`-qChMurz+} z$1L)}XdLM}2d7X>dA;hfMb_eXyWjDzKPkd+ZihWvTA>^JPM5zqFIPK%9?T~WS&q-o zzpkH%GLs~=V@}DKCXu^Ufk;oxD0M=obN()t&dzPcQOm^bY-b8Ctq;@OWQ}6O_5J33adDX_*m@Sb_EYb3Y&}J@ES4u%NZ>~YZ_dg znXHqKg}b)wcN#e|xN%UUFxh76g5m3oa(eqoLxPz9fjQ-B(J!jMj8X%-!vrPx@eYh& z%*Jq2>~23Gi9Lr*i`gt>j4+wv>yi^-k*fAo7#;=B70Bp@;2soYep*AFgZmnph504% z4-nZ=z-h-qG!|TuZF#k*&#^@B_O_bDt*ESQagf<%x~z z);y19w6j(qD2Nt9o_dsTkm;~7#wDecs!ecJ&bDNBFO5)P3&PhxVJqV(G)=`l;}yjG zA!i=7yzB8@pFZ&^3-_6OB5Ts3)>yxGW*`O2h)8ij*G97O&gCq?NTVfMiS=%x&WvB)ZR}akOk>670xi@#@MMn3=g&*J+-uBHNSg z-;7f0bNl*vUsi;vjlaj9LOB-J6i3+ZyGshC>hv7)9BwHX;9oB%EW&vRmOw{QqdEeQ zE#6C&>0hs;e!X(YUQrVHyMyiR4@RdAir(=~iQZb&F)DtvW*k3PI^YkuJ$IQ)F8&kU zocH5S zgm?ARkF&MBvO3Ry);az^$eX;orGK&4!x#!&Db*DHL+3rMAvJc}-M+*qWe z_k?8e6qyQuQtM*H7#g2pI-8&nA#IQZhB<4jqz)lvrjUfeiOI1WPGHJzw=D(QEH64>Rayvv8T zA>V_i3=cT+C7!dmIgPJ2;#?b_FBJBvI*^SzaQbz`do+CZv_5h-Sxg?!I#f>`VQ>?o zL6aN-8K&Yfu|1I=3nH5Uc|#$2jf-b>R5;inp{juMqja(_x|GXlFN4@f?%@NE8uFyP zzJ@o5oW@{N3$=nW6cLjYJQV!v*O;rXHB4zPr`2g3Yi_!@91ZOo?Ca-d{wJzib;$R2 zykiDPl@;Z;j}wdt(_68rI?LzcZq1|z3QUya?)*5aVIZ+*4jKA30`VAFJKbhv zVqSZO*Fc*#s+oWjIqe?X@*(&DUKVLxjWrypfOJATqD`Ic^ZpDvzKkLV?QrmE7vYGi zFtu^f>8tFSo;@D8kGkmu1>yQ9Xu&mWK$79BZL79}e4&_F=?UnYBTW=Y?+}GZw;mB_ zcXrM6k^|Z_lcFH%XDUVC>%8m*X)BZG%b*k65npQ@(b<>Tic*jb5o^y-P6>sNb8w(o zBhi?xEcIv+@=3LYk`XagxE#;xLOL0nT3W{Ef~~ou=K9|sh<=gWZgJ30g~`$1(=~~1 z_{xZOoZ!`-RaRCes;^J%d9emss$4FU6_;KN^G_Z{imxrN8obSYrqQal9UdKJ2)s$o z-JvG-+FiZyOKEIDOf$G-;Ydm@dIIrN56)V=&2^@6&%lqQiv)j(tCWb3z25@N0cJ8aG6l#)v`Jh*2h(mx>AdA2>NU z@w6%j4N;TWKDsA(dTy24(p}5rs+S()-W`%;9iem%W|MlRX;#yp|I(OoqzFz@=>tHE z?yi5Tu2M*n7~9M5TE$@PU65zXh4?YmG4EU5wP*_J^sAp7E?Rd$8y}SEZH36x<7U|c zucHCY(!$$UQ@saA8_f+KXIcl$q-11Ts?$Xx^IQHOliPF6G%k=GHhE4O>x#ey<3)py zo)EX(yPefigO&EBxbRD_o%(Kc`%MeY^ZNl1BFT4VweeyhFJl(LQJCFX;=`XHOZ@4pT2vnTBTI@lVmU(*2zs6CF4odt3C?@erb?{WUAHlSE zbHl2e^zy&}9=D4&WZkG9#(*=1Wkl3tOSI-Er`V&W7dK2LG~BnwAi)csCA^52O&N{e z&kLGYTGI-9=ix0po(D9V%NY)o4vDj>XOP{VyVNc5krJaj1K^f;9Y3mdKpu(Wx=>xa z;_`42&TGtE7m0*SF=0L9oP4kgfyFe}L=R<}DBz=N$`==6DS!VyC5l9sqSzNfzPxH+ zFL5hU$4}p|ETfR z>oT|TuY_zMUoZKHdFxPR3`+Q&*F{v@ah%l$R>RTH4B~dK*Yos#9mZi3d9@+P|P>_uaV3w}i6&t|>X z#ni4f8cJn#jMNRD{~>3l2|CHRouP{&E%XAOoqHd&VbJ@D+n!OAYER

C?#-32h&d z*J!RYw)42UMXO68UUz+hJ1Wpk*^mEKHCTd&k9zYOlI-$&A`defF@IAlyv6+B#t?3a zN#7|!V3ZV+QvShxyj=jl?I78qnk`qq+$8ga!eflz``p(%`&M7|@Acg0!3Nh~A6)sT zVYB-Y$!~unrE@&rdhS?h7xDv>M5pQ8dD9xL#uCD#K&F$Hb;VPauH9HP5ad=Vfjc0v zAt34WRF*(O9TWFrpV>Z>lQ{hrO5{_nLfL!ia7@mt^a~pk&Vw_j&-^}h<=DeqA4H5@ z4@IUZU)y`E5CA^UCb0Sa#DG^=;&y{Il>jdD8R`YBeQcrD)Th z!hGCRPpHgv>Waa7%!{^1AKmT#X64cK@DuiNnS&^3Ar?7}Se3(<4gc2WhR$7jmQf6R zy2eC`<9g+{r5|H)*zspbMkK1E0U6e^>hG@A_Q+giT3vGslJVMa3QxXfa}Q0@aR((! z|7>F7!PQ99{o|c%6sS|}ZM%c0vcl2e*v!u+>z9ZN0aUFw1nejyV--%ID82YoV{c(b zBz~zDR)_8NpX&IdoM;ZzfNZx74M&^6r6Z?mAVu&SRJK8dtEy^t`XAo3s+BE z5yP(IKA)`^;}!HQzD=PT^Ve8N$T+0$N)*F;Gd>FRTJ8I#gQM#62zG;^2v8HxgIy1w zcpaf|XPQcqVsv6J+?ME$0s3y3SSWmzYD97@^R77e#ObFMat%qE6rKaXYXT`Ru2T#aqH#O>69hy8s#h zV=Dt41)T&nUu`ke`Skbbk{yF&%#!<>Y5hq8YGf5|Mx}K<_>^FmV3`G`ZJK;Y&_E=XJ>< z@zT+rz2}}(b6S`G@`1Y6YWD1Lryh~auf|ME#txH)D|0kHCwfDd%FVw$MetK(CNvSS`1lZK6B56!HhSD?a>}tF1PS+ zhV>mzV$9E0S6h!bp8WRCqwSjojUF7!jaS;u>U*BSXqqS`c6IIT-B*yQ$Lan*ZR{Jh z^T^%X9%Led0XTlZTfu;~gSS%ptr`3eIrwZwlo6x`+UDZw5`i^3pr4-{VT=Ml#cT@N z*F`G`1_I--tt4BYgYl;ank<83-o5*K_gPX*qlW+2o43?7AtC---E2W9k#N@k=7NO@ zkQDg>yiZ_T95zd+yyOxUXq>Nh#5D99teGa5B$XP;)UQ#;CB0{DfQC3K_ZRo2J4u(i z{G}1{J>0`dU(PpQt`yf-!@|Oxe{ZxGSAUJFUto~iDfxajm&nba;~pW!uJjP9IY{3s zIq##V{zWxTB_3RcDpdn}<4>lc_DEP5sI|NfsXxjMa0f*8`go`a5cYP}{t7FbqO#tP z3oBB_uly0YiyuFHz2l3a0J6?oW&g8v3wN7@9(6OJIiLQ^rG+iVYZ~EZI;XfM46kME z{@JX|g-Deae!yQZyJRzQI?|LDx%c&}R5p~SYpea5CeT|TD;{7lhilWW&y1|j3No|< z%&J~?*$8QL4!x_o(wSY|QBy6_4ht!GN4(R7bTKNh;X5O%;Ml4yHLkUoumA4o$A+C6 z>KmhKmEZ>YBNih`4r*R|A-3_`jdsedST+DdEc`>^tLOR3H>l*u`Ni@e6zipj zW2Dt}1SxmygMwgX%ReAZSo|nTzFM*9@kQy91jgPbCvHqOTXUSMvfjE#bQAtDFDP@; zD=zqnD$T)*cjBx>Z;tp9_L1OhXsi+c`ih92sOt#_`JuKJXK1BpO+{`rhK%%z_C_hs z#@!ih{&LKkK;Je~^NxY7?~K4Qj>i{JSJPp1@b1%3Ke#g@Jq;R0(qboL{?zzBoSgmd z^;b7;kbGQT!SRD`na2{a^;ccgzY0RZ3Y>AiPPD?!XOx4y;{+hJ!nDmjZkDQxB%nHGs_zrMHVP0 z)*M0;6iu3jhQ(A$(Q|=+{=iUWqL&X~WH-m2HmcRR!xd`nc5RD$6U-==vLE87uN-Q) znih*$T}C5}a1bVYCOfg=H!bpO{6-+M<I-{Y@=uw^nBDMVqg`D< zCOkZR2MS}jJX-syEMw1rqo%KyreBjVnDtz?ruJ9f%zHtWEjx3ezvX)x;g0jM%f61J zfLb!`dWAMgded>NO_PYuHzG(ZkDUPnw&9E>_;n^_Ni>59}u4x z%Ivzx1RSwe-B0XcBSVEQI0Y|{DGdK6+7?;-8j;#=hzi_#a)wi&62V7~ORO9Zp0yU= z_rc<^%eG#<7<$A_#02g+xFj4#iw|o8*t(C2n7xbDyj@Ha;so-+B{zUnuMQjojn}a; z34cVMI^dfYdbhulRZf(`;de)~c5B=EgqA9o)%s*6QaB5#r%#+5AoBb8e5oG0x^e!& zWPWZ;(deO=AG4bfBoWp+hJ?EiX@_{aql+TtcEiAl3iRTM>CpRFmdESs zhr0T5TszAy-qCFX1=^Yz^xfIiTQes_unq;eFsE9b!`vDXHCfjTtE)z-#RJ5g<2;BjI7KNZoHNwDR19qJpG9$0;9rVtD0EpQ zQOIWSnIv9b@h;3KM1;M9vY5>3TFNAch|{oP=rWhiW!FjylfD*hSq^r{-J-3R$f)7n zJ*opZWA%^aICy!Zu<4Z#(c*`I5rb_zzx1U8ln_WW>`pJd|JkO>ST{l{n%4w%UsgSvth7ZUeAk^4?6ViL)9N-QG;F@ zDG%6L-3T;k52$oP_sO?OFhit<9oup6H~?84+`G_UbS-^$)?v=V1VRS`-=~;_mB>U` zBkYi44}q;TH*^eoXKx19rev+VL6YKP7Ano2RpOA?_S=2$`w9ktz$dd3T%)nrFep_2 zau{&%+LcNTQXOXANl6MXN^Tl9?``yt8`#XNG<;b?kJrA0sM`kLxQ7= z4cSL(0q{D{_9qFT#YueJwNhu=9X0R&vXo1KhhESU(0yv#xD*z{kY1=gEhZ!7Qa+5p zmZ3z6rD$TvMcs{@i{B>|W5)4g0)}!h$t*?>1~J~FpU+)vjVjDpH&*EM^_eSK$z*>V z^DgI^aM(||U*u!#ROw=`frYR&%=wno{nPc9TlX0%MSh2cC9=8JjB<1r)Vn+^+pFq>zhXW`=6*e z$#l9^1yFs+V!xA<`a!q+tb1IUza;#g&J&y2jD{}GCxe?yBd0j%&IRIW}oN*4VmyN7}*_vw$}GB@aJ3<+y_v52m@58~A~qGm zKMsyzbA<;#*IJLWz92fyCX6KIT;aQGEoN-5uYy%{%D3dZu&~y!)t*l&aJwPH#K`~g zpdSyf+brX8-IlmK-i;red`)Di7gdf*k#Xl$3ZeFz`Ws~SKfWvami(StT2^?lBIerx z(wOK8i~#2%Bcs8Cp)5|FW3f1~H7bnw+y6O*kjT^r*ITf$*`)mHSNcpJ1EqbMcz=*uQh0x5t@Vao&{&U<{-VBFxM7)wQ`nF(P72P@g(L zFB!SJFH>)j{r5GL_!Lj4Vm*ya)ag|Bq;f*urj^j31 z?u38y%oHBo_4o@J-A{&c!a>?`S#26czh!l!_P?5-q z0+CYJe&OIa5~-|8AHe9>#lYh*DW@olII)-&ouUPm%h#z z&Dhr{N?tIDZ=DSzn8;##o#mRt$u9=_B+6|DG`N_)AwO=Dv8<{}e|{o~ zCbv;VG83Xt;zySwI5-%G%dA6Ng%yVbtcbaSN){EML<~Dud$GFFJ#V|M=+GOSh+-@d zLygCweoIHGKbjC46GNBVqp7%&eilfh3x-qMH5Yw$JRC;ML#1I0>iKh>m(L zzGPGsXmFwrAvv7h24O98FN(xNlju6~15EUtR=;Hhc|OnZWDH|d@fjVoMGX65INe={ zxV}{da-khYf3B&zk=GW%0tZ$x`u1Nwi#2tPDuUE)bI4&=IlE|B&F|ZmsP(}3-$!Ho?ozA>7vjp7zOb41yo~!%(1bPnoku%gn?`THM7eYK3MMbMUf1dn{ z%UsJCqDtk=lv-aeR?hOk2JJYy+oeFY|3KICMQgyGZ1usjtq!gFTmq9qILCk znPGPtux^VJEuA*3-Q>X9&G}>VP8ZtN+HYVnm(E626lxK!G9y|#@;YNi#_;TMI#lEb z%MgjIM_RZ#)4|C5Tn5Q-N;yX9Xg1ITEeMF-y^~T5JDDPduzY{`3 zO`*{cy;t9*W05v1X%VJ@;ttqT-H>v#24?o~QeVtL{Oa|{C zkKz4eF$DY>{NmFN>|Sd@L!}X0+s#UD|MZOSD3q1ooAHsyoVb6d4KvJffQwUDN4L32q_V+m-<7P2qw`xp1=1aMA=+sWs6&X`h78+9FAgVomCa@a+r-U zR5ZfUwi8x4s+>mL=LxCG^sH3RD)l@z*I2Nr+M;rpM#SiD?pUWBdAU?vZS~_haWSTT z)*VG}M284gKw-ZId6IYpwbK84)>SAYb|K)x0u9}+p%5zFHsz?GQ5;L95ly7f;B_Jt z7Q;gf$J|m1WX%)Yx?NpafnWKRUqNMMW#Q9XgKchTXvA@ux1nGF^{Y1u$s2@p&6pVI zfh{UZds+-%Dx#e4i&YXikHj!erZOt0>r4@xOc`HEkc@@kAL&9_ zZ99y!Y+sIteYp7EcSNZjFMN^*onrn-3jO0zbTqhTtUjJfXL0zV4}q8{!<;v_dd^G= zc6p|4^(}=DZU!SsPmS~oO(d~(RY&2|h2!$bpzymh_`=BjOv)r zyqESzM8VtDwpOJ9n2wQv52yRCV(Zo|b5;jmEXc>{AT`OHXT|^NU`5=&+5cn2Xl<25 zsw@OdcM*#vai*IoG4yDeV^M6e`0Y0=W`g6^>Z z`X@qIRpmlwZJEfvrSo>C2B~!0VHKmkcRZ+e2UNIjj(!{$L$QYy+2=Di_|K!FJ!iM^&YIR=Qs<&>_2N(q$N!wdp`$UloO(1jno;I9U|=XM zhI~@!Xz32OIU#zY(I9+yhXGh%SZ~&&tO>i{q zg4x{!gT;f;Ko_dog_oQ4NXoyQ@w#)A*^D+-Wf4t7u9tU`dRN)uZLq2+$ZS^nV#y8^ zxtq{gQ=1j8Lhe(y=oVKmMCIe0+FHNkArH#RZ@iDmq*LdY9(0^eCu`_f62B!TIB1p(VNYGB|=v=@7EymS>&w-T4x65x$s%O%P49mt7 zGEcKIo+e~FWW>e6Ub&UnKg*ozU_oHpM8BC5-EWP@i9=&kI2;J$X}3!`Ls=)` z-H8Ca@=TlTR-B5)@pd?ht>t3F2=A@2S#UWNfnR>Fp5sdN~B668D3=@~p5V;K2v0N$)xeOY@7h#<0rPf>cRPH1940fN&|FIOA zD8?1@R`!iwe}?G@$5}~SuL?CS6xA$JB|?A8*304mW(^6r!RGFBX@EqWHhQ-K|#JcgXer;4>|%PZEsOn6Hy$p%5jI zTcw|9b>Jf%4lzC|;e6od;ePDbVB7FGT@y!U+u}DT8d~cGz?`*2U zSAOSz!`kP51+IO+3eR)D58IY!;PI5HYd+p;hd&fo)vi|zVkC-5fJe4etL^eXd4Cu$ zzB_JnsSz z!XM(94Bk9{qVU0uP{xEDM5SJ$o`UX%Nk5L(>tZ2MT_9oM*I;B%fX^btWsZ0>#-c*E)iC} z-@K{{zEBK3W5FB7Je|qnbkCHujfVR??`yUq91g?p4_upb%sI+MRPH``{`pVel%i)j zz(P;tWlRCYXwpO?FGJXdsi`TEUCe{I$OzwAAhSgAcy8tFXv;fkru-uF#?nZqa~K#( zsR*Sa`UaA!5EhT~VxSj613e);tIU3#=dB1#W~5o@OZZ;xIwu;odY}`z-0U)-!%~S3 z@Aa{d1yahPmW34tvr|+)(aS^!)LUfi^j3t%W|q;bL zIHlGh*FI6Dw$t<6=@F)57sJX)YPRW7yT*=&Erkl+%k&&Kfbzp?M?~hvY&@Q*a+TqW z4?T%*z4toyUp$0MlNWGi>^L4?yIFW$E&kmLe~)tmVsFfVP%N6~Rm|7{k@Z`I#BQXQwAhbkvkn%aN#gj~09Z%Q zSwDcStu6TK6CYQf7r}9UXw9bU_g_hnzC^bQgmO4_HlEK1Tmlwj>J)x#x91DoPEVg@ zG39GiFb{N16;pm)|2`|aXegY;(GxLbax%8u!Je%F67`ru zQ)UF&=oB&&y-0K&LgL~9QNCtYWETYynyKMS$OOlb4NW37)`j@_w{Yg%d0h32LPrCH z!fUaR=kVI~Sly7{ZZjP=Q@-fZZ23dy0)=E}oeg#67G*Tg1m*@E5`}Y7+d8L%<06K$ zQA~_ycUIz4d#YhE8*q6ziobq!NLAuz0jkA-fiT?K84`t;MXOk-Y4a*4!to3SnRAg2 z(vsESB_o|uQI~ty*5R=xJzlsFLEVEthsySiH};dfzdRnr58pn9*Sf-ZyDz44l^!2S zU@($H{qAQ_*|M&1vYamMG*&iaDDA+H-#(0IM7d{8(1D3Ca?AY;gwU@(9>%(6x61d& zLN0XL(Vo1P2Zrz{ZUm=k0{3tgOOMUiuMQHt&Yjk^fCR5<>5pV|ccy8chxx z&iD$&O}LW2n0Y}XNq#pn7D6nMM!DN^Lo_Gfb89`*XuNi81ZR7LLfdJy)m?WC+C5e9 zR5NPx=KIrm8ukqq{sP`TJC0LV18Qsi<~A?Z%6Qu>H#*5U=7%r(a8B-}w%yLxa2Eq0 zA#-6@V>_&KL>6>Z)L>KFYB5w7@0{ay#I;p*NEe(vv*FlaH@bXd`RKU$I+~Km4&|KC*faN5>5yuM^se zg+nT$laZVg6BFwFFaF{$s$y{~1#Z`89(G2>(@9IGX)qXs&o`N`T)$NPWE!j{;RT^6 zc5Ja?`{q22vG7t_R3SQMAHLs#P3x~m<$62@O!_jYsx;!`PrI%a60wL8f98A~@t9n1 zC3jC0#xOb-Rok?A5Q(@Q7kXB~WS>NgG%U!Zaw_`MXv`oP=$GGI7S>{d(dtFg-wjtK z;HRsJ~`Ia*a~ zR#Bl#1&crNS{Cbdy6?IW#e1*&kx|dFJmZwh=|!wcUnkS3-{eN!dN*9vmVCZZL!NHv zZ<@RsQQPA^qQh3KvcuOKMR+m^|3F-^{56kNi9V&r@Yx`ekqm5QEI_J$uE6d3?rN*b zNouqhFmOBooyCGwZUr2qgy?UnWC9lkdQj^rSF&t+Bq+fGhTZ-y{OT`wQ6uxh@7Ljc z?*ukAwIU@GX;V|%4Z9o|Im+n9SI-712}mhh3x&DYUE@pz;!5oFx^GYog&DAy)sWub1)wZ9}s}%anA>6roo=)Od zpK8DpTg&CqbV?Ave0)+>ET(bI=e#@=RmZI`GL=x(=^1Uu{G+Qx**()6R*oLRWjEpr zkJe#JvmH9FelOQ5E*mY+;&wUl^zQZO_9bz4k_!0E+qwBX2M!;{XxfI4Kd=FR_-G~m z&wZ8n^v-5ahbs(e1m zO1DMjh^_KiQ~{sq;N4$%X8`{2^=KcWxJ|s2PK%Ke{EXi=l)LihF;CV?K$KBB-+%R2 ze^pfmXNBfiET&$gjFy@PZbf5(lc>qD~8=eN{ znf~~FRru^fH85tRA7e6)O8COOL4!}8c`O*k)zN@jaOs;2sq_Gh99=|L%p1Hkov>W+ zVXjlAhv||wj0R*5ava#U`GO6Vd2X=TRo+iVkJ4GmMV#p=fK~!kRaN-%m%ps4%D6DOpecU z_s0^zYWA=Ha8h`t%!Or)DxI!ivX#!5I*1&S@N~l zeu&r49s_e_i^MN{na9B7n92cZHtF!sKM3OZIX_w|Yf#+abDC{TMqgr zmghO<3p&Uh9&``p@U0gE`1gN2jz9T}Nqp;t08XEcW5;G2rb0P<^None?yM>zcUk!H zcixJjwpRK_bj~0BG^Bp>hyV8&{`k))@#>oqgi^e&dtv&N1`QhS32@eH5u|q$=87Pt zKw^X+1$5oaRhm~4OgO&3H-<=7$ZDypx$+DwuCcM%x#$Y-i^b4nLghD28sr%kVi3** zIW!f839Qa$gn`DXm6diXmSDfAm7H z$}`Gy>MJaw;O0~n`wh(wlsT>&TipIlM`|L@B~`gzsU@=*i1MTp!{(R1@(ZYn58``A zd*N}p@X+49Fc*@v7eS}W`t|GZ=+2EOA3CVUlH^!vPT`^Z_n>3fBdDy(7XvB<10^n< zKa2h`KX$M3pz*$EaOB95yaH5kJT4hBNA&U>4{oSLZF%0nVaf&Ord-qHz9FKqh-5N@ zBbTPsIdU=LsWv zAKHuEyLYSm)YjIj9HcvU?o|2srsMME%lM-|`XhDz^t_Tk`N>bvv~edK1!E*G3U$}9 z19+;TO8s4Dx8iCj3LjGnEG2SA=9Nx<&uvWoqhVYb3}P&hP)n3!T_AF=WIr{qo~==&Zka7Xs<)dk4qy?)iWiOc|W$4xyvYuJSq01m=(aFE929 z-%bggrZDPHs!08r@)p;Zn-w3v*dNMQBVSD9u=KxPo}Jq-nY)hL>o+u2Dt@xkAf0+0 z77X|zY8$^n+7Z^tTwUn=C?Kmh!XR@!?DwI)tsT!l|NPSD!aPAfI504P-riod0Fqd# zm;jL}Rzn(}`NYlhJeA7fzkl6_pS%*rP=5-Cj^!hoN}Z{th{m!wb0Gn<&5TrL1=`CU z0I@J!RVFlT5gEJPqoN9D0@st;U1l^mb(o0LsU`DuG=cD>9u{val2ctMYc!}R#|}|V z>qQR;r_)Hy@V{6vwc@_ zMC8iw)TAl`*fTyX{LQBd6dt?MgH7u#@Rk|T)typB3Rl-RVgI=kD&OUWpKMt1xt2a7SG;wGuiHKk5m-ay^{R$oG<=OXC zdEqgeP;ND&)nUb@a13wwMaM~{)p047z#G9ZdgcAb3b!iYMCa(Ydxr83U+TL{;gO=> zmRA~a|GqMGtg~bNHYX~o&GK;?Ayu3}z_u6ep?Fp*DLSkTEmgJZvr;hfcXeG8-adN? z#?b+BmesXQkk?$l`zFrO)3(01;%D3@IKTPsFw;4614?S?sMXc zpY>w*4!bJa^!DKxUON`YnK}>ku#AF6JUdQHInvSdC z!vQUV^q$2sN<|HK1VqV*ib6gvM&IqmgxoX2+)|4)q;7x+Cguno7sK>+gGO*HA)4q? zpM$Hhi5MCyZFq3~joS%Xq$!rnVogKdvB+qXB4#U0MKFIS9X~Wwm_LVTs6e8g;HgDR9YPsjKw7&pG05n(G&|dE>d~$0{g_CNG zrY|~h`!`YQxZwEk*-D?Uw#*@qF5@H5znst|;?gc79((LD(bMznoYk9|i|#%Wcux0JiZ_(?4JS#oqJigA{6dJxvx&^?|M1Idqf z&Wz*bBO|Jy631wJr#Bz@DbUF?da7I1`I;V1q@|y3Soxt%f zKYAvGz8Ezl_g3467vfMXqM(q|F*(8Lj9I|#jx*8vLUF4t`sc<55#j!@#VGZ{>oOL* z+7|ccue^wOp8xnK3MZ`$)~s8L-}%JnQ0^3iL_lNsAKrNtaXPrAO$&uS zmld{~z*E~Qu&(iD=O{teJRZ1FwoC?R=P^^lugPPJU<7HR2g4JY1U6~zMSrm%Fe$xs@EfkSx1gr$i!c23`1xA^k zIddBO_rHO@J{DfNnaA+6;o)Jt`R1Ey3q5(+TzL55z3P>bq$>rxIg9#Q zKZT90Cj9pEPJCpi4OjbS*K4@#Uh&pN(#h4s| zQbHB?5qjWG1j@9c^G=`g;Qce}k;%+XE4&x)$$PU6`L-+(?5kuP?lQwQXVyxhuF-;u zYS9fDZNH3TB$^$}nV{%E5#+c}SRRW-m{i1V0Vazc>poJAEuX4~w<*sXSs-imzDjgH zS^+~rC**fLhv)J)MI^!*T=>~I22L?Auw2h3Bb*4!J#QUBKW}72FYK_Rew`gwOB&fw zSQutNbfh?R+#)YBcT{wcw=SKqAd}QspEa_WM*n z@SN|+Ip06>E)MryMVK<)A+lR7o-G3n%>>akV$mDNmnv54Y8#&XR3$1ar48I|Q%VCu z&sk~DRPwqk=`3^MU#@Mzr(5d4<;|m!7%nD~XmvU88|zxo;1GTgisI{+`{j2sFDUbt zJTJIQt*|RcV3l!Ry}^!Wey$389+7^dTw)Y=0Xex}PIRCb4!;eb%By}eR#n#E3lBbt z%NNWz{C*D4Y<>{WZGS-YgzNN0oa*aRmG2G9k)CWZkcZX@UwZrzC!T%E1+VZ0f@w@r z(!Ia*1uuT**DLVslP^Tqf)yFuzt)2?=kl-8&xJ@Lqqbb8 zApN%($4L>X1kAZKKK(!)>R5@i1cMWC9J?CAGrJpLGv(m48nC9pfnA+$tezp_sR%~X zZf$d6ON$F@#Q3KZBWrZyjpHLK8nxD&k76Wftl6z5bdN+4;x;R;N-qVXP;FYj9$U9; zM*qoo@P79ccGg)?og9X-auxIruQF-}2M3jt&Kw>^{PKHZ=}&Xki$a-=_+e??hS9Mx z72T6gr{Hink-YpaCi*Vn!bA!iYOJW<{4jd@`sA8JOK(3RilGH*>{(Z-QW4AtEGlv6 z!lY897-4#?IEpBry`vEs%NSa!JSzVnLB|}o#WJe2crJfC=nLngu;z#~ToA+%VI=IQ zpMQSFNYU9qr$YZgKR*8Pk1HA}f{uxEm%GrhbFXxD-q4H&rZCZU9uHUKomWIGoyD1{ z5HjjnmN?G|wt>+Mj5e^?@{uNDU|2X-$RbNmY$+FhIrF$UEPC{g$Kj8pVK(ZO1C%+RXLa_;$IL5zzCV&LGPcM_l$?yK zUSwfgjYnwg_R4dUjLUd1Dl{mRuvnTZA|6F;brqg{_PHCX$`?V0=Z}BMPmOAHWK$Rzh4V@;eZogSZam#Qdn#IX;36VK^ym};#9b0YKuy$r= z9@nF~dQymI%}At{fxk`%pWkRiCZ57%R~X4~T2)Fnns2@rqsWbxC}8s;QQ)T&T@fUc zUYK09Nct|Ly2A>K=$ig?5)P*yN!`rO--O(!|A=1|9!j%HzDn7!46;z}Ytbk1v7fJz z`!ADhodb-}T-9O2rBh*%^U{};Bg+6rz9SJwDki#6xd|05cC6a%y_O$VL2k$UD@UlD zo(!ec*81Q`0SKORrzjn#DtD>;S42+cGK)FUsm-Wiy)K7DQ2v(p8T~ToS41MF zigDGhccEsD3*}7pq|YHb8Hd%96}l1m9?!ra^wd^ehmUODg)cw+5tP}T*xtHYj8YRE z`bs>xX_s=ElE?07T?3ow2O*KQ5#a%99xn&&%mtCXCSw+BHr=d`Gaqe5jTu+YM?{WD z2bc24Oa}gV9NQ{9Fcf%=DuQRXVpp{nkJeXWgV%+3#{D?$4`KiCBo2)FU=!IJrOaEF zIgy6Vnp4rE%*R;-cRbWJSrlE2bcaRW3+)zl5xIX_+C4HgsnQuZLRyPk#Cb%vltZ%GpTvK(ln;w z?uQmZde4HhUvrS&O}LeVG?{=6Y24RnL%HqtGWU2ohjZgexw{CZr5aS+?qSa1(M?`h z%`-m-BlX@s=Lf5{+h)lpIvw09dE#majg=N9@Ml6!u6wjAggCdiE#*04VXSR*iZShm zy(EtmG3ZO;q$ns)Kl2Ps@nQ8D9l`S{*2G+T6>d|0>$bs+WZ4$%KX^(xPD>r6L`rO$ zcuI$!;ZVLf#S#=2ohZIrwrs)b)g9rE0+t=0!si5JTcTe>z!EJ#6l({MWjn91Mv!dJHc(2*O9Dx7u58qG`rfb(;FOo%k z``h0ZrPi*BG#Ls?u|TrqO~2n zQQN*#{XG|Kt_tNG4NnfpUsR;?yyEI`IPV-?Zpgro_{OomrUA|wXw>TVU@RO^`PbgN zbVlV=+^agzS=Ud9+6paF-88MkB z-1@lv;Rob$H(oE9Okr?n2qu$B9rFck8deo&ty+}OLpJ16huT;{o4gyNzdU#HLS>9Csg7!4%RJ0`}~ zVt6k*On9zKWLtBkTk-qZzy+C0BYsRp;_y1G(!YAR9R@grH=E6Rbt$o5Ro?2ZQ9s6m zaaB}~j^f!s2WcptL^P3Hnq!fCSDxe1M;=i{6*|Yeozxpd&xpGB0I4deD;C8#E z-4N0}s1C8z+!lE-!t`S*XN_4usbCei4Cw$b{ z0E5+o#N=hvuC=SYmpnZq=N7?;(`LC=JgtMMhKNigF>pfUCI8?Us5!9=V-XEu{T9cJ zj;xgei$Fy}8I1PJ+%7C8E*&};<+@p!bFM0(pP3X{dHCu@Y-ns1y*V!@ zSe$8XeKXcKv|wav0u$U`&)+Q9V)IOp#>f0oY~JObab7#!1|;KIjF1LO<-Ytb5RD=t zdeUmQ^CrH{dGgOa!{`ggu-0rss~iuy9T*Y08W;YQT8=p`GS-kyqiu~{MUPHLWwjZD zJ#mD&i=rr-I44Cv9T#2ZWbYM~=H}gtXVk)MZCOR(mp6mOwf^DVS8?ddc^nY^CL}zC zIp&v-R~0}ZCbFFlP?f(pC47;xg}Q3-UOXom!+qN<*ts>Y>oH1{xk!(l$}dc9UY}2G zLTBiyGjUb@eodzZUQeEuD!c}~_GSdx<*;Kl-22cRr1vbAK|9fK$AH2?lwL-UwwBGz z*s1i!L_uXx$U?#2@V7<9c{*C;p1il(p1`&&1tR#k?ZG~abCh5n&VPP)3~!&EKZAPx z)D*t?_9#yGijqGIY;sSv&3%SQt$Bm1&mv;mYG+p3xmBLFY0Oj$y|=UQ>B7K*H2SKo z7!T$0eKmuVm_|yO%M1s>@x+s& zywA@_V3gK>`)~hE3~(zRdMLl`v%Ilh8EQ#=Rg@Q}2rG|VZ+AT&63ov~1}9X-VWWg^a=r?lfVDQ-{bH8?(gwefBo0+F)D8!h$j;Gr*Hlf{`znJ27mVFe}U6< zR!u`$dAZE}BJE9|LGy(4F{AMr5qc|-2XH~DrN#!2BX6M31@hNb)iyL%TCb&imUPYrz$$f zoXJf8k>7rQM)9QldEDZigVX6mLqnr_|H2C|;{5sZg{xo3u3fv;!quXmgL9VsFbhT| zviR}OLio4;X%t6J#E>l67ERC?|J)}%*!QplJGa^J-@Z19*WL;v5SqC?Q5hQFNEim; zA>~dR9J(9~(Vz$=(REn-i_QUg{zW4e5xJ2?^R6;%|7-(1^?3(RmCV2NR4Y2lW~MhT z9!LEt80`5R)e5taCa=M3@tOqh!Fx6DEE9T`=Vqntr9$Sr$(U0SowplJtya;0WDJ%` zrW2{G8I}q+ruySJ{rwS)oDU=FOCg=e;_5p-9Q)QF&dBF{_4miHZi5}4|K&P-`L`SJ z3%`{=w%zAKcr=b<-xKjjxy%G}!NGMagi|^E z=u!j+MWG6cveq_j%Q!&?ghdR;Q=*)yh?Av6YA}LSY}|)8c$J|!6OMI-aCIaGkKKrE z?XJS7bA!&*@n8y#6&AGB&Kylf2k?6r0*FxN@;Md(I!f_2SRs4|O^B8pPRKY}&e_Fz>@E4J2{QJbBFu_W^3 zCM3dG)!K%wyY^t$DxvGXqe{^k%DQo8z>f!aZ9{d(CY(Kc4wt*G-ndG?P>8a_h)Zs* zuPU3p52Eo5`p2R;-R;MTt5X>BC$M{M1-7)6-Q-kd)YjSFAgV;cy;bp)sYpUqrB(_l z>A4Uwu_(|`muK0reLME;+jmO`>Ez@DUVH5|yzs&cioCw`r7x)}(xvl?g-i|{IDqyY z5238)dWC7D7~(a(r(x#GeF1&pxQZZEnQ$4Awd~5UsIrL|Hnn)J6~yvXx1hRptGt`v zy^JO+B0`U`Am@~jZaRyup%Bt~;akfcK~@;ga5RKVV?*fjjp5`-9}e|*;gW9@o0{9< zb-K_}Rfo+@ZP?J%dM#q+R^abeRn%Zt`&zVC*Qsjn|Mj&W;LJ!r&WsM=$Y3{4%WGB) z&Fm5*#IJ$Iknpbu@85&!>gvLWd31Gk;m8r0r-DQxiFiDwqWf-z-o8E@Ja|aRKO^Lu zh0iyI&6_vhK)Z~DJtuQLk(N2K$jA*A1}V4Z@W5KntUC{GCrD~CV(tsP~s%usZPTP?ZMqIWc^wnjEoIANaV0G|$v$$;UhFfuG0 zvRIxavb?6E9M3-cQTgM>=lK5jzmGnljr#gJX`e|sLWhP15efxiw>y+Glu_?HcI*(c z%&NSjjF#u(AQ#ty!2qmQn~EZ3!8x8gIXQWgGnR{NbgoVXf(xfD>Q&6krxt#N_i`Ld z=b4Pt)JPZugFtKB2E6so5c&s`%E)F_`XackmAOb?-5*1J!)m;LbOLA3N7be3YE9S1 zm`3{FebbLr!i1muxu3(H`|iWqHEYn`-iE5m3UJ44$mdh@XweZ)nG}~fVfPqebr-hR z%XQ;P6DIs+NE!o3&ae{h?~h}$Hw|0$2034kI^q-11}(+GGKJF0trJ%=!ZIj z$k(Y9{DX1jWX&05PAs8m`qAmG3N|4DKpfj5kT?B`s z2o5J;b(t`9Du8_-tw84nyV^Rvd8ZqzH#u~iFFpFqj52T} z;KPeY-Vw@#N-MLca|5OqKjiONNa$40WyHDVdKvrv255~$n|pR zG@@ebFtVDDG94bV;m)573;oJ-F$%K?p3L?$dRKVgq>Kr7yi|LPT@^V#$3siY{_}Tx@Y+Bl^wm2Nj>d7JYd}@BpQ!?KDxFi& zPBfV5oLCaXNS>M!VIay-`ReVe%CavfN^n8Z&4wpoIQ1e{kG+Y`Og}8Sxg%E1IZ@tn z16VWh4vd#xM=l;#3f82MC9hqz=@F&yOfgDrsfw3$DYrV!ly{V4(>EHy3-1izpWf)j z8>hx`Wh9Dd&Wva8Z$e8+9?Vj3l(=Q}R?Z8aH|&qVX*I)R7h@zL%G^?-PH3>pSh5=Q zOk13j$pn02K)?U~`}ngz`!oF8fBT23Iz4mw{lWkK2V!Wq%Mjk!X8wkBZ=P1w-jGVb z!pNl(OeT`hi{hxKfzC*#<%V<^n^)?Pc6jNuUD$+lRWuad<-u+GD+ZYZIfn-mGA`#Q zM{!|t3PzlA9}s7jro{F{~XOW|}lU}E(068IFIXyos+ zZFRogP&**lopbW^Ss*;ZX)(#T-&#%Mc@M0q#q$p}sT3@;!R;{O$!+zxucKD|=2jrj zRK=l$&K3=M4)UDo^OyYQ#EBE|dcDdyO5`2rIpzGz3ZEl?i!m}OnN$vWI#Bsp{(Bzz za|zNHx85^?l#bHrP;FQO-z_imz#+0!M}vqwoPvYf-y=cPR#o9&|Lfn!SHJpIeBp~< z!R2lP{^T!wI3vb3WpFx^!^^LS@X8x8?7nX=e)Bhf6aUBm@qePMd@a8H{V4wQuO=}v zmO^)5Qbm_WV@`FgZQHiN<8h;|t`=)nug2bo9>R0aJ%{r0k_gVlz~(?EXTs2#5Kg{0 zjN!BS!YoN$9ES2MDvio?WK%ixAM?X#uY}(06p<`4z+_hrHznkzf!E-*l89qcbjC9; zjjCh3D~ha9Gvj-QHR2CQB@T+TO>~w&8 zkkZ+O24?3Kiv^=mgQLuqUHG5?R?nw{{qarPRmJ-0;LZyc31S8YMqskS{fV9{`7fuT zuB<}I(`)l^rC_xo5zpbkYg35FZnkNRCS9KPX5uT(|ZXFpI;y*(2n zINoy^UwiEb`2Sx1p88%nAXgexIOHhi*(GdZ`>okm35VF7Dx#R@h>kQcCOUV(jI@nK zIGy>i5WVZf={Q2+{CqurDh6Lb#(+*x@*<}fQz;v|M+^ujWK3tEQ4Jb2e0ZQaNbexm1CU+N5V4fJ6zk`(L7KJRYQM}G{@ZKu-=@N`w1sxrFImASXdRaJ>Tv8!@b9qO~?K*m~zKCx|UYHCoy z>h*&De!1sT6-Utqsdx`_rMUzg=VOUx!dg166% zBRP#0=_sP}InG3{b0D5f!xv_5KnvD2l*7TXU>>E#g5xar4ux*6Hp;&G%fI|9{NW$| zA^!I3U&pEQ7mzZTVXLgcgM0TXM=2w(ren4(RC-aK=_D-$3p7=)+lj`Vk3-L>swFrb zW&-k#@Z+>3_fvPW%5Kas>dZh3}jXl!i2!$L=^RyAYi&YgJZp@$0J%#HfG zdOZ5*BPs>Q#*G{B(T_f(A^}UGoTiLuT*BfSuR*)B#P<9^5f`4p=QJ&*z>?6sYXOz( z9d<@m7XFw6Wp0D?^E^&0z-1EyGP{I1p3NwJJ{^HTKsh{_H?#qZH^ucIRZoRLqtySmpeGvwc6Lgfa@ZWT(HY~=O#ZHy~n1B0!{a^nVJpJ_3D7Q{I^w(Sq%FTOs7Z+y$IjyDfv@ySm{SPMbdq zLOKmyCZ+O3)~$EJReOC5O2KY#@#N56mcvAMROKtRR;(4($RusHz~pI0a5#?8XabeO ziZ)i|LUFWlDQ4TJi ziKuA6`NCw;<>%2-pJO)g`Iv?v8iLuF#im^@Jotnc4?gb2hHWAP3SedOvT~z3_`V39 z!*ltY?GL!&v`af9!TdFO?G*x}Uo+C5!)I??SY>Wh7GkP#-yDfZym|g4&JW7G<+gh{ z(jwP>bo@Q^j$hAzUIZ5%*VH%XpJSQzj~hT6z~RQwU>ZOA<`}vzL~mdrTtHGz^64^* zIuo~k%N$ellsgFI$jbHhi!IQTNZ|)l0UVFSa7>QxP6iMporgcw|Ns7r%DaSjDV168 zqUtJz&CPABKa}PgaZh!`Ccl z$GsUd7lhV~E%aE>7n@VLwcV-zBKSpaG)s$rkL*hGXL4W9gFsh~I5|1jwt8%|iQoEf z^E)?5CmZIhjGcGJP^O>YPT>^3A8!1U-2vBRH6t3Wx}qij|54R87gFB%KfVCX^9CY8 z$ouY&x)uXhjuwP8m>fF17G5YQikFr&l1$Mfn(kQBHknn^+K)s+`#sxj{&QOq&WI+?65%u9psRb&{iwPz>&^IgCEi<-E+lB+dmjQsHh z1`jmu>|K9E1=MWTivCHz{)i)4D79AY+s=Jx5T|H^+og=Ny?mgytnB5+gNDsFs`dl= zH=F5HI+VHwW$tQQ_waPoPCpc3RwHN)i5f<}oc4Tq_xRbPaQVkI?R?Dw>}9zBHvfQr ze70?LHw#42+W&U{_mUc7@S)aU-%-T|FcppL&yeTf0ZfkE$2E1=!1<7c(#S(#SBMBM#BkR zV8F@4=zVig2lk%Myden)B#vqMrC!coq;3CrcFOqet;N5sfB!YmRxZ+FsD33~>I5Rp zKlu4d?uMt-4731ZZSD9O)A|BMMu2p;fsGjtwKgYSf`Bs!&YZ<~`^lffzDRx>HS*i@gB?T&IN(e%~fjFLe9YMhRI;lhW) zxPr z!uK;vWPeYg%7+Mn*y{1NTR(a146YUN6u-5_&gWUbRyO{!G;9DV`)K}h8(JMub^~MD z#i_`UolUo0uGuW6@AI*8;J8-H)tB$bGdK1Mnt&Nsfyuh!sYrG;~e&!Do&#RcC>HH&8&P85H6&%Z2kM|c|evb7p3kKkqj;+=cs)n?)1`^&Od!h zQcaG2E2*H)VfQxc5ie^|E5&gOWSO!a`Thi3ZP_R47aPh}l;6*gTIw9J5@FP@I^fTH zEuT=(9^AW8%h|T@<)3itprH?%PbF+0XXJiSxTStXcmiRL2y_);?^yIvl#d(c5@}89 z`Z)1Nz6Vf56AgPllA&8jr(vKM$@KKaKwSN2wj})5ws*jc3YUpMT;g_Dr>~4WD@!zw zLIyQJ@WwC3TA#?230=ObT)xato=pLD=3n%*b%JH@-@CH1fY~wkMc7zNgdfDTy)EfJ za4J8-dsu{onq*!~RQoqj)WxR9*R%NWZjNDZ8`qB%4XGyrP_vy!5-ST;G>kAo8m8otiz0&u6u;<1uYNOU+HX|~-3!-A+HSHRn z@BThnLj;u0^X*2;U`%A`JcFkKF3(tAG0BN3bkA=F*B^daNGTDFL zZFpRCQ$hBXhY(S923x zb5lYm<_K^m&w#&-yWz~oJ7F1ZSH_=u^7REv>?xkhzPoDekg#2KhjYi7hpV{3=GF*8 z#?Y|EbD;L(V)N6nd)Tw1BmaTfwU}@EJf7L9@MSq|TTqPwMy+oAWnm`5ObGa%c!Ol3--1qAY3cUZ}2>Dbeq$usN`l zGozJ}p~LmU3h-Vcs;^zF25I){GrfH8-=As&4;9Dhzif2&9-jx| z4yJ#6xn%Nr0hjJqBfXsNPcdm+_LpDA#yc7N1&bNzD4aIgc;Vo->nEKsbI)raMO@Al z@p%Sc)GJ|_aH?A;@6)Sl!vEAk2vS^fem#xV?=!hL*y@?{FTmOF2BM_o@W3msf;dLm&`GvH9Mo4uqT#8P65ne!85z+Chc!x{V6W(-2<430d2& zJ0uks9}_^uwzn|$WTzW`X~b_!VYG@(0!_9dA5AL#V_;@5PdFqyWONJGql+KbC}_WE z6nA&@GO&0(s!ESDI-1;3A$`_K9rbgJ6Lp4u*SEE(_ii-EiiM*!(p=NBHk#bNZ9Wrw zq=cY(^E)|Yu@j}7!izk|CRlwx9k20O9q+C9kIHU=z6OzQFXGF`Sc;tUvFmTW%@YBR z6;4A05^Cp7cB;BMyNpy)AE(Sh$^7PMtq?dq&mtM`*iYh`cwtmlt09Sr@Jq7vW&2w` z$&BM?0wfVh7!t%>zwGqymqWWn%hWl>zYsWDQJDY^aP2g*ha4S}lyD8m zU1G3Sc7+rN573ANY-~L8PjiuN=l<7JbXBLJPJ5GclINAE@QmFXVa-Iv%d&uuYTS9r zv_N2gwVq#9#k;FCZ|o)yQ#!pjd?UnGUO1((AJ9>dSEr|Z73k;hksD4b8ZD1iNlavf zLj(NDQ2%tkL;Os;S>;Q|>rg_?UXHB1$>*~hBS&z~?5_F!$#S%Q2lH4_AJ@~*b#`1{ zn=CvxiTCa^QYLo@+f&1PIE9HoS4X4XTmFCMv|~JBscj~`*AwrN%+`n4Vei8Fm5bb6 z)@^vrTYL?$eB&6HuL z)}?0R9lIxOPKqg(8-nYmhGqHsMN$bhUK)BT8mTO2IBdUd1&0mXF&>3_gnRp)_zb}< zI?N;Od~kWR+s-nx@h}1)=~sm=a)4|oukVjZukJ9$N_gn2fX~XRDw;@#Ft}V_S!CAytPSsEFV4&M zuM3>2?a`P@D%7Z*6A$N-f1|7nkX%kMi~ohlMRsY(l?T+8CX8?f3QTceemcv8CI`jz zqz-Q<q5C zgwf8@5}@Rs;GCu&_Kn(X`p%d)m%bSM|H zfPrH%;U}iC{~ET_%kdAe_MT(Uj}MtY*_@GML5(N%jW6nD4sH|0Y(qu|o-?C9Cry4#I_w(sTqWWoX)lw?Q^hryG)IS4}GRxNo(1D&*+d zu?#M4EJ^;9c2AC=gC9N@u5=ktHpu7a2cyhkJeAj{UqEu+7+*ImV^GQ0&FBh&`;Tg9Y&kLl)9kb3*R(T{eLQyhcsCntQBz>;;Kz;X-=m>ncu56y7kin8!b74 zJ(=P_Ad6s6ja*9LxYkT;pee$RKms*Pw3`sVi*QA{cPOH|_00Hn8L!=i7JDzN)-m&- zc5)vSXBUvokW~Y}FaLj62nLm3*m?vS7jOgmJ zOMHi&C+@^je_g!*$~2;h-NR*-t-)FQa(~agVhHjWA&Rk+(|0{b_1A66qqsY0uBUj9 zuL?ZEYLt*+D0XruqnA9%g%N@32_6^~R@H!*D7Y@V+(p{@oihDQj0kn%kH)sCaBB1c zb0%aqM*4U4KR=jF6BI87u$uP0hhFz;uEF$@6wJFh!d9CyGJ8>8`c=|iiPwz~{b={0GmG=&R zexz{Tk+{QHnZLF^<}$F-b6<7l7)f%YEyH1RCilTioBR!B7blU;?xoo~^IPNOK`DOMFJHyw78_tf`H8^Aqy(mjH z{o|o70ME}{lEPZOPDq!5uQtQMkJI8?Um}boS6qJ~?t4o=2hlyw;TtG`v2ep^0Idi7 zPlNNRPPtkv2q3Mmz|=1wwf1y%$xf-Vw?!<_-k66mHo?dUyZ2|(6g;SW&w}&hPx(BA z%-Bymed(O)wXmRl8MZ6od=8MW*)5V|xSJskw6X7_HbOS)D|=S9j3*)RtJ2%Ow$=RkU_j{f2{P3>DykCU)l z_~-PfUv%|c*k7@YrYXS>OI`}tU_Fj#tk?AAsd=;CIS=&t{RS-MYyb(_mzP%ug>MdN zijHoF-+=f9mEPzUKuB4Cp?Es#Ln&VarxTck&fCrlX2^=Uxw+uE*6(#YAv~Ur2Vs)0 z{J$WP^nQ?GwqjCQQ@iiVyc=MU0h>A&}y?p63z`W$cgYD#(vOrq| zli#v#+_Y%K*iWPbqGndtHXaG4rx=5&y*-@5EGrJme-i(bi<`d)eiU!Iy&nvgUoGsU z$h!GDv|eusV;SrDm55!p43CYy4M+P3s{6JuN!QG~)JxTn50@3rCs^>SQ}|*tuf3I9 z=Um`^Jl%J;vZ~lryz^g3HIV|A_OzRCXYyC3liNN z#*Q#_l==YtVrjts@pPVTg16c4KV11QL}1VDRO;-^6EY)E^XMc$VCaokMu?GhHNB|V zihM!7)rGx>0Zaw_6WOS8_2SX}jvN(7Q>VJy6;tKQeXDCW`xI0ACSGaJ?K*!`DHfQs zvZOS4jknN=@FHdL6e*BArIR)#;$m8d9(%A{0edQ67M36-BAmSoae~B~KJ3v*3PmJJ zBDZ>-B>(0D8`MezYQ6-eV!(cgE;KTY`;mA)cytj`;{F$zw|;EtX`jlv8U+BN!nmxtbT>%XDP zq3?V^m*f2zd*QSR;ksQD@!A>h&=!@xChzf!GS3h^ymwiUKk2v$5b#{6%c7up8h&75 zb>pwq7c$)_2Za_z3H?2_I3k)7&&}>zQBZTIP5ZDQt0K>_CE-8FvzO1-?>jCxnVv48 zvvD7F&s3oXU0do-g)$pbt%V$OL327`o>TCtIkA5mYQNdl1sI?ZpE!Q4iIei$Eqbaq zghq+dQQMHVuRy%SYB3Rb*4_ub--4Q)<%1dACyNP!ddndD^>F`#Iu2Y^U4V6LJCg@N z_KD;R710KZy!eGyJjP7;HCS$m=Xxs=zxc>6d)n5!wDH7Rt8s4!&y6Z>jX~^H4c)kU z^{SJ%w9C9G7Nl^r&m&oX_M?J58d*D6#;!4K(1IiT!BjIrn<#vgheDB-SvAdR&wHLm zrIPD*x&+PWn*y<;MyqKds;8voRIEvHDU(Bc4(sx7a_nGBtfAT19L6mG{CtX2pcG^R zY2dT7f0n7FUT+L*u?Rpl+wb_nvk6+DE)h(wx)xK^@eG5)3dUpW6?$HHU?6AAGT_a< zz^!Wv(@^U=MkttIZtZrEAUuO*cNb9$nY*6aIgPYZiTZ+10G&CsynZRm}S$Gzn zPdN)uuSRnTzVTa{0rl6w$L~AOQ?m@Nq#TE!g&ljnBqp@{Iye@f&t!aFn^^_{T^buK zD((C6`3k3wR>@u5E5`iI7nKl+$MZbrD}bHyFgiTwW6hTgL=Nt7E&}a;z-`68ePKn7 zsGA94NlCX8Is}R2(V1^}lBkDXQOgf^ufnGpFqsr#Em+p4C9y(g?%Z`U- zA;=1+0`1=IYg`0_qAwo|%uO@aI=n`P%uA1lEV?*T3UVT6s9IiQXeKjJpmmp9+sCQ` z5glfF`*MKYL9j%s*~3BaW`icgwQy2wdYqfui54<`DODT z#ZR6CYuTJ^eT)e|-9w1==(}n0nF|kifJ4gCHH<3HLktPySx-qNp3*b+BEO7GNT_rE zf<01sg!;xebq(w+ciYG48(MD71eZo~;PV>JhNY!jak0nl2&nxk_@+&?+~EF8N{HNxy((j zPqZefSdBiPN~r-BS4Q7w=9ERn#y<9&kCHy={h%8mg>5XJ99?83Fhmz$v8kg)Rk&`m zbbxqec;9fzx^DhlTDn*>%2oFz5%L8`Av`Bxge8(L0-ITRDGa>}+7w%D*Pt(+2-L;G z>T}^{c*k?R0{8&yvVK)sWa@LM7MN7NIr+-jQc4G$QZfMvk@n`^Hu|t-WXn$sISPfbU<=8J54J0mZ zhICIYK-1UsEA~_zzs80}>7^3?c)q`^&%tAxt8lDl6HgGM@MULV^sq4_M|n(q(eH+K z6u9Rq`}!X8&qtJg0;;@Y~QrMvD$ z0`YiBnr9$Y#v>q(7yo&}Ku0dOgWJDHVW3=lhE3EGb)nE#UQD*=GzaCQu&bB{bF%RT z74PSG6MF^}&gK)*@0;jgg%SAw3Hhgc`3l?XV6EH6*Z*FGsH9GZ6@(47AjQm^z6!>& z`PeD>XGPZ!y(4uxNb|L0Dw-)%DIZq1alYa7v;$;TMKcSH=cLq2F55V){$^w8b09hFD6MA$z6ADjR7gVy*#t+>|#X)Gf{xM@T--%a{>APV> z3F=I}Xf6D90c7w@j$CR3x;-NMzQSAje5>fOENEy313sYsLa-C70l%%z4?b|oP5r)J zOQu)dY&4rM5;`E_Ts8n;SG7qk=AjKAN&c7km)m@;Mve2`alW_Ky= z>(!f}_3-lV8qt8$Uhj}@<1;^1vlO~mpWROILIW~c7#8b&hOrs@3k#qC3?foM9UUtN- z{5`3tQ?up!qh3sPeoiXb_sIyg3aZ)|?hJ>V!c{V-;7ib$JLe04ulL36P?kQkzT}BY zLUpy>x?QfSf>+zWT7RL9X~Lh5+&}yZwR>{SB@~j{9R!`=7#Li`U4Jimb*<`XU(4?l zJr)py2Q`d9EsKZqE^>@xjS4ABB0CbWphFiFvgF-{^IIo%<9`Ljh}8)I+-Cx>MCV?+n+*S*V15?3~wzF+zpu`xt}! z@cu5E0p7X7ZxgFy%4}fI;$it}A*G}y&@Tb+ELSpge4h(Nac0@8JpSY!YPa63XLFkI zIn+7mvq1=;8ExYI zC@yJgWHqUca$+?9mY2x7WC_VKnlyO{MCXdOifT5EGcpY%WL1x~59)?;~% zN^m(C`-Vw7H2$-mn`pVC4;T`n+Q+iijE3Yfv?+jxtQ0WpJ9+aDZ{e~h#mK$Qg1(AB>5#|U=H z(5aqMoWy^EdNLFIXPM^K0g)x093`DLLsP!-1+nv&8>oFRqWU!UcjeOHlqrBIkc7P* z0X@o^>UI2%OkXLUE@yuPG?Y8s?f z1>ah?I-j%>1%OEsJ(EvQ+e8C1!`E~Rv&1>O^FNZnP<$pm4IZY6*LEU-x5pa&z+u(& z{-5gR(_o`>Dd(%RxRuDOx1GOzH?VsW@U~_j?U<>1m zvZsBR*p~OHTSVMI)CS}LYjw0@+%g#Q*CQ1Yr;A3{MG@;-2Xf$)y}B6Y!If0j?!d#> z4VLh7b1gS$L!Zi7Yq73}Qa1BO;pn%)>&b4mb*0b@1b2S56mTtM!UXByFi?VI@2%lG zoIsu21cD?SPkCZ!U}cX;;q$^VT5351XM#8Fc96Y-=!iY)N}inB+BQAT<1eO>>yTdf z_2kdu5DT!dMcF)mPcm~sF~~Cld+xgI;SCKBwfwO$lxH_ORzu6e1-gd(eRKWdKw7eK zMU5eL_^KKgxO#Z9t0G0FNXpp4VzK0but?Bda@aUZ@9e*d$`y+S4~gGqeEBt-S3-U# zINr3+5PD@jpEXtUCFxm%_iydT`tuS;d5uoOGETf)bRv&kasfTj&5BkUIsAPV&c_17 zDLIxSFw$F)E$HmsebZzgn8zOEhHSv-GIB6;7`gz#G_ z*XtrVRB7>PJDP}^YVfZv zNtZVr)6v}Ky+f#2`y1plpR^%q8%2tfT17yXD%-}TWU$0(?1M?uEzF$x(z>SAnW`1CTjR3ag_+QgI$;kl zd{~rxKFdN{AzXT;@AnQs>j21+^1 zN4rB@m4dMo5JG)xP${6`t|%Av&Cq%t%jn_8+Xj$fVJv&KP9Jr99-|izuoR2c_gwwb z8JHr8mRPU7=&oAZ(qm6~VOZOuvR3zfIKZ_kvvx2jeMxM8>|KqnL1+{x)oiI@F?Z5! z;nR}2U#_OO_0+auwn9ULGSE9|e_7V#-&Q6DDjRlPEsy1z_tYkYtl;`5UuSkGDB+q} zr#z#($=2EkDPGj=IO6>1>l#Xh0rMGNvtJD+6<#{GaI2ZPR%c}?@*EF@1#HfP+(~pr7xke-3<^HErP`zfU}rUQ zKcTPT0^f6dx@knaU5IIzo;uFMLw)4NDaCRx%RW^Szj=9`I`h=L%`L%msdjGT?(G|> zYlRy)0vj-7c}mLWU(c~M`VJ@bxmq!nPePFQ0!l`dq%@oY{oKsH58Y;!aQvu}zp8Hx zvOb&o7&?d_Ehw8W zwYd(&s+5@SgC$L`kDvKGzm03ZwkE+Rs`bkzZp3&DwG?XC_T(+iX_ptk%rE5?Z#_rm zd|5uNwGTwfm8oZoYV44}u8tVZzNvkA72#fCq>$SYeLdk84gBQnh+Nhy6efarhOuxDSY0=@{^}zWZBfL8-Ui03@tYUn3sqyZ0CY;eRy3y+>rg};i zD1G#21qBwHn#*_zMICI~gE&EuKT(ytSuru6wJ)B_D@P0EVsCN*mG@(DT%iig1xFNK zN3?`!eQ}mIEioChd*J2R&th3j&;FbX~xv}*qFm_L{CXg`tLH5{|T%27)p4oAr z6x|ZMcL(Bq#?m@e$~7Su!eWSR8ZTemxz_osyly3Xq6_z2xv+&bUhIiw7^&Ruf>y|W zb3Mu<YLT=tytbu2uxQh~x=~3)WH%%94Uh~GaCM0pZtxt?goj+Vt1K;zVze_C=pMn)Y z0_wAFYgftHNk3R0D?N~YfN#$twuVX?kqveSA*Q=ax5%%I=K-iPr_HNj zDOINqRmrF)NMKu8ep9;`lUz^Ls8rRnQAq!X%pNqc26r^=W+BPjlDOvB4K>VP__#_h zeU28Xd)W^IeM~bPXG&u7uJk$GA9KW`SPq$mM0!OG3|l&ZO5Phqcr$E~*TjMl?Aet> z|6Oj_uI?ZMFAa4Ay?@j3*Y_u2H3id@>U;l_m<=sV3gI;BQB&~HMc_HZgQw$=!@9`N zDYqyRajgQQNwyo4oh(2isc-h}U@d0z(7wRRCEkXH-P0MVYK|sX^nF@yG_O&g6zr8{ zYTWdsxSwjLI`!Y?;1T(f%-1$?(Lg-Epk(Ioj7lni8+B#%1uV!FbTp6E_Pu8{;@H7& zmjr;4*%~l~%34q?55LUs@EtLx{)Q29D3zAkR=lx&P))n(_$Sy9-Z^x+`aC~MTc5J> zvHG-l#4J_cJozKbT@|~uf7m#S9kwnHbJ*V;jJ(c&R`2WU{|m`JwUZtZ%MZo27MLXJ z`~?PgmziDHUH^RG0L*Rw_>q5Lq@X$W)X&W*Gq8GItC+M~LQPCWPHPBU=zy}$eygXj z_+JSn;QZdL$|;Y9A7_R&qq*gBH=lTi<-(z~Ml2kQ1S1hYfBNcwdfvm`ZZb2dVHR5S z%8b94!=5xy;!%r1X`Gq4K!$fk>;DzvhxSVENqoC4PeEBaI$-bcJR2mKS;DaLmO&T6 znPJn4N^x)0c*_Gu41D1+&)|h)3{K0TUYeZ*mkz5c_-TSuy3@+Rk?2S86Q9CHw)Xb6 zm7w!7zVVNrgkvm>*r#Mo+1YSz>o=q!9ySd~@H+g*hz1*)DFAE{yIr-ZR=in-%EG*fQ_XkuR5|8fwnYigWhr$4A#cE%>;C?z2|w)mo9z+{ zoW+RiR%P~UfTCe6!nuOghDhYQ6dpY?1Bn)8qaA=q@0TU5VvE^TzQ}_fw;5;HAC2 z%Zf%d>;8sH#hYzs<0b5OT?B@=;b@$MqqQlD4j3gsYUt+a9+aQKqmC;MfR*QWbD1Fn zS9v(+*n}^5)q;bcA$O7dUhA`L=%pl!MhjV@)!62Me4)H$_VMe=_IGNs{13|0SMwLH z`WIB|=czJ}uBSmpC#!JgDbj|A+%plRB99{kThxP$-w~DhD$U zqt-@v*DUW>wz0KBI{1o?&n?lnt$xzh~NEpL_wX70Fpr$!$*IqA&vH)2ft^-K2Xwm zy^K+L(=Y4M^fCsU6t{zh)xKL;slBD92mf*WPrN8e_U4KFY(4U2AZ55L;tRHL=R1x` zWIkmEin(C3@AaRb^q<*LtKe!_nQIh}xc| zdm{Y<PE8IcE{-fJwEiqq2k9TaSoK9da3vp^r-lrqW_M)bT0(z ztZ$ui*T85IdY>b}b-_hJ7G#p`aaYTqLqG4ULAaigt%e#V+{_@!|c9f|F&{?H*h zY7W;88V@iGnlfF}bhl$tA8x99UwZI{5@mazj-m+GLHp}jKgRc-8zkmD8@5O)CRSUO zlJeJg#o+(ui=glEPAhOW2<4u_X4Ia#qGvoImh&0lOn|lf9%+%Py zz%-$6V8BEPKk>S84cT_N2&=f7^+GA2l$w7`ZFSpra&P?5Z8KKys&y5tSw*g~Xv+^2 zu;Eo@q;eaip&gw%Osu9~nL56J6_>qU`Cqi>cqoU-e-W@@CRWaWi*ufk^%tCs56+y(UQ>spHhQcc z$*qjg@cr-5k44x6;BX#_Zi>f>GcRJ?z^R`dN58#g4dRhc(!(PB1(e^(M74_7-I-DM`}s z0KO+KQhbAQu4J1#X?l`wZEh;=yI>r}Bh}0cXtL=FHpa$q^M+b?K89BEeC`~EX zDVLI`GBX+uH`H08`fdOYge|<6v*h+_pTpe2{N3@)5DodgfyQHuylCCZ+b!adDC29K zS=I1?qNU#AkXw<6^C*#))hiX@c?h{LD=mC~1sZQ^UYGtOJ+u31%xIpL8Bt7UJ5A^- zeP#l)$-lk9DgM;@Qk}pZo8(tAV`)3RxZ%ef8yBRFK$~H^^Vc8zrahUsqR0f3-hqIQ>IDnN9yB4gS=r@fk(#u+z4>4IbcudaFJWPupEk)!Vs5gUHvJZ~NX z63i{1ba81KH_uKS{W3PW1#O+srYNR~XRv6A@fUcW_4gb-EU;56Uyt?9?#if zV?a!!6>ifq*Y@LA5vp*Y?E3R2q|W(rko;OnHeTM+!nGaVd(j5Qix;u{z~)mveT|$q z92FDe@nFVnJ2@^f>k~k%O_hNvneI-GfdN=!7}v z01qSB>o-bI*n8gPvyp!|%XaOAF*{`?}vnJ|`yV{W!no zPg52e!Q05Oh$9-CV#1hgTF6sm9YAjTMMmBYGr>l5<2eV?AA245NX{D)2eOu7BLx+G z#Y#aHkq9n@gj#n3fd7%Uhs)s)3`BHf)X1uM!yvxqLQun-5vF%|OTrH}$247>8K+ZC z%0@A?U&*mAQ&2aOu&c)lKpTlyy9vD_%B6E4hxZB#f&SGwH(7n839lBjCedA93~x`+Oj;D z^Z%!Mm%z>Wr3h-~Uk#ES=-ajFh+g~iIYibyrD-39z{t@YzH%*$XE1y^=h|Eljd?=_Kgy5%&qi(ycDu~ zTE(3?l#TQJM!+Qmn({Ay$@7!ELMQ*yX-tlBN~(6gNT&UioFFLECVTE4mJ0AjoxVL^ z12r?eBY*gX$Z|m$rP6Q~1}NcoB!k9YQGVqY(1x|*@T%MgQjl z4kBsK&G|(dAl-DSo7_U9KlZLzys-TiT5CjL041LmA9Mi&a=H`>${C~}qf#~f2b}x8 z!N!OdJOB6N868Q*5r6~{PHB}4+J=>rPuLQRbE9#gI^!R+s1S_Mvj+QqZmWu_d3tV5 z2GFZo{mna@1`v1%Dd@C)39|ggAVhxavq{}sP_w@GT*=J@;NYWT8w8F{7e zG-=5%G3wjkVW)cC*4!N?jzL`A$**{B#{sHzkzsweg;keOl4jy0lWpHr@hpWLNB*3`!Tv$=}x*)ZRRm)yIo z@6plWGAPMYKXl;PxPT>%US)miM9Ehuexy``%5XD3_iOyKo^OxMD44c zjFtwDDiogWSN5+*1y?J1Y%oyY4vRpGYfWI^Kw)$jYkZ~FwbmP*J)9Z8!TB);Ek6V; zrset$1e}5O!mpj=))V776ZUVUnAGYi`)gKF(@eR9V2y*IFpf14mnPr7qDDZKyad1A z=7tDR%OV8l(`{@uSu9#_X_$!+<-s#0M(Z|M@9+4dk(&|PzqC7oFJXwzDQJG8jDR>$ zm6>y3;E|H&ZZFT^ie5HRi}D>}YGE*6G>$vj@w2UQL?&mO^N}F-HneHFS)2y^z(tCt zU95BHxcrVz z9UXO96^VUF3SGQLXuSz`mmVsWKMEPJf{Q*D*0RDapFfj%Q9iszgdF`&&xJJ(_me-3h-z z!fjETxtjKxf}x;rs%}CF{2a_5Cgjz5pI=bf_sP8!pa#MR6 znU`teA3e6B7J^Rp_crmkJ>L;EI-<@hc@%uT%X5q}C+A<~z9>4XOPT?s-b{Rs4tt32 z^NKV}^bI;PVwZ7>SLpNJB$N{U4~{bPq(%Y{C#;u00XizfnD%qkMeDZ|bMxwU_im!9 z3Kr2_=G@)X)T^^GoN`F%>G3&#)Ipm6exAiNZiz=9yW17*#h5exUJ@<@XR;~r>|9KNLBd1-!G;72|az= z-|dF3FQ)t%jiJleM~a;J^2 zeWjrLk~FMt1)5`f25Hz>wNX%yjMDdZs?yMm22YMZIUU`9Or&fOwc7j{zjn{~&OsRrx3f|Z(tPTyVQqp$XhB^ic502Y)Nu$i_etf+|KsdE z!^QB3-0+6cy>cB{V@=Lg)!n0tx~u0xC`ENbdqkfCPf5fPmCM z0tumr)Q})GKnOY6+x?yU=iYms=j7LVGS`}O&9P<~bBuSqqhpUcjK4!4SMQ1$y}-zV zVuIU$7oeG_ft_4b_?IMhP&f#&@kE!woIePgRn|7oaYrzo`LP05Zdwb;j(Tb{#w}&q zGzabLenu$-{;-1(4{DNjr@uDyulnJ^!Cw)EPzo<$FCaWQZE-Y*v^7u5kw7B4F1>qK zlF(@~$Q2|z{CuX+YIPVJpSLTLM!*QdD2odbC(;qTC-1SHM^_}}El<3B2@0I;>6NsC zh(2KUy#j7GT+*n^Ph(Ctx6CvwV__k9(`USr_cPD&S64mvau@5m$kNORMe^2yC`9fnOZ+N2N9blTsdN7zrIq&OZk zx(+wvTd}Rgy)n7-TE0HbR0pIjca>e3JLOmW#;rc6>x9}p3^W0@JE7yH7*TG~=$uJL z+bz6W&?Ft$M2{F;$txu__e!n08CPuHPm%Kk?$%91_Z(0gQ~WDW>JRg6|L&y8R-JhB z`?NDcU6q~8R!2qI|Da)(I+!~sa?wXh`MiPVtt+QQaGuHzf5)93Z87~ZWGLHOM#j*0 zUWWl~qJ#H$E;}*`z{u@10+N~&qMMiP&UYF4yiD?te1@u#m+x=U2gcDD@v4MC{@xlN zc}zJ9rYEfv_DaXc`6Z;nHpn+4?^6Z>9_j#b%-NFmSkNqrWY zTu$e20OjyK)NmLoq9-XW`n$7vyVa+cQmc;V;YP1g~pd{o7ZFV<3O z(H1G4$+i|2AN`bNC$0`I*%4hv3+W;nW!6zo?m$oID&AN%=)l1J7`T=;@5D2-v6U%$ z{PVGkip^P@n;j?oUwnjF4CcNM~k@F*-jgrrC;>n`2ii_1A;bH1aMSRx|t@mdDG zcr7nk;P&GeQOAXjk5E28V-nl^+P0}vr5``$w0j8nc<#P4_EixXxTIdI>)q-}0YwEx z7Ai*w7M05E-*S1LRe15mLQEPOk^eK)0$gdklKZt$lYFE4@LtRuDS3s5`K-OuA}|Be z`Sh)-)WtW;NBB}17|eWmNkvZv8#w9&u|M&nuq#PIRrNlLF(HDae{LTX^Gs3Ks6LrQ zR@kf;8kDa;6}4p#YQhxXx0gG_#_vR!?z_crt1xQFM@E#YB z$l3zy+1Ge-7^m%z=)y~XcVVt}waHHId0Gpp51jzC`Sm^30G9upZC z|GWS2wb(QxR0~swy~JK=2-h|Ye;D<&rs0c*yPj^8%cr`LHxuhRuGT8I)oW3s=iT%k zgQqaD0&2l!HO=z^#_ZU;x$#1{x--)EO^b#VzvHMtav z92+yX@d-u**2jUY!b)zZytAGfD?7sLP7FodJLFt(f#d0&p3G}&qOt=HDV!Yrg6?|J zNE5l6e_auJ@!&NDHw=9_WPZ}hcF*ahU^SPMm_(-<_=Sbf-DrX8I(pFd;~}A3zTds!6s(agGVyB-^))Pch+0Ye|&>|~$`49*D z_u{dQNB>_57`uJW z7-6=DwxYmE&FSu&3;!16*V?yq{FLE~YR}i>WjyOwlkK@^01f}Q>?zh|bh-N1&Gw-e zcb*1+`jnJqF+5;my83S+M@-_DjkDvOc%#2wa4fl`q+S!f&S{w1`E8h6^WPhEJgWrY zmTsTEdF9(wRG)!AeW?5NPn#S%-#(_?_)`nVUkM!Ie=eWCxc~p$a82jrpMS5o{&j`( z&*j;=<8KcCxqM-F^x?k}=is;}b-3uypB&ft4q5zn`IltRY3cUHi>E%W*QDN<7YB_T z6%Q)Aka2eJ=$|{P1rA$`%ONjMNK+-u4BIOUc+PsWzu7r++X3?tF70cgrLmoV?#%B6 zNsO-dY=Fi;sVN+O8_lt#qkLO$DChtnpm}wNj?DpyPZXv93@LVtFWy5>Kl$@i_Sw9f zr-cg2vblK`A?XURK>z(`WRMdxXvr+#x8JESHmc~BGiXy+gg(0HmN02WjGK}uDA(Hj zPZ(&4v*&AjDzytbCk)|RjC5^Q(s0pV*E&!09Gi00se4zL*FxgbJI~rojq`CV9ZN46 zjQ`W_;+cfX>-_u`bt~@$#2i1C)uoKAPb!sHXee+VlMJg9$&WzpnfWVhFdOf>{gL3H zAfIR5lY|b(h(815(Dw>FFssm}I(Pc!zjf+N)&Em0b?|fc*2NLFkaVz(VO_+_e?E)O z6nB^7mw=0>oY-A@U)Ca7{7a#O-zQ)9&li3g`Eyo=0ozk~o!sRzcuhxb(CEj8?1|Xg zUE4n|yqTQ-#kgI$;K`|DV(igvG*WirKoMI%()Q<5=SLwfv{9VDu3bE3!fqh*N5O$8 zs(Ac=O7kwOUyeB4;dV=fJ;A+xp4&IHvPzBm@6EK!Yq_y;KjkiF|DOlW@EuUQWh}8R zs%^Wi>7Hsqz~pmLfaff|7WYm`=##V^w!^dy+;?s+zB7kgHP5MNPL>Zu5C%R_UXd6< z>&;8bZid=Qhstd-2hDayq6fvuX|;@uYFzpkX+Wr{mz8G?lmyLSRBHke`@y(Bf}d_- z!~fp^_V$&m$FjN`f}OK;y!zn{sbD`Czt^a*_VT{mqqoAWgTsBf*)`9{2AiG-&rQPG z_;MQZ-EuvgK2)x-DW9kQmEv?nDt%lutmgN+-*itAI~Nt_f-GCu~W0pE}5q zXC$Cm*k&pie>jKDUf`u!v9)^i>#Jt@ReJ3(Gjq-`g%5M@?~BJE)vrW^og994H7WxW za*1VM{E>7`j8)UTTpxV{ke_z2^g}IYzt0SMu$2szmXqK#{y{_4DIkTo}HS(a!jJv^Z#>OOG2WfD?38DBY9%fPZEM=rEqn=2(vE%ij* z+6-rKldKwfObO$jk5n@m(*_WqjSJwYnFrMozwccWa>%`_x$%AdJg%AA5-=XEM3OPx z5V0@4TiG+U7vAcv^>2@#win$4vt}PLcX;j>MB6N7?tYM60@Ht_rga@QiRD}PI`wAAEqFV&GWW9=UGg;-*9;}7!h}!h8Fc6QoBB{j9Y+)8Ct5lO9Gjx8+ zIe$Mu3v}s1R!w##|6(``S!R4|ZT~GRM{Kh-d_4{4@ir~Da6cSd+9l$H`6e@ig>1iE znt=5;dtx4p3vd+)^(?z*WpZG-nV=lI@A4iTf8 zb#3jD^i|(&YSs;-oZ@C0vh3SIk5%UdZ(6;Jr>S7nds%nU?*N*Vq_jT^)&Y=iSqmet z$yOpl{cc?~yqH$1>Ktj*w%e`2qEBG_tZJl9mclfbD`%#vV%v^$M$6__Gxn|Ej|yrU zskc4q@QnNAgL_;tquX7tKa{8g3=y#Gn!@HiQdS@{rQ+4;9`=qr2Q~CC!%N0nhu{%g+cOn5n*3HHJ*b!he`3Yi26X=$<6(fh&CK%Y zJD4|sOtd)qat^z;n{UHPUX*xZv$0XJA#aZ;qsEeVTGOmgc;j?dSA4Y*$;v zu>arX*1smTWwVTr)m3YCR^msh)~pSDNn`A5mcfs2n1GCQeErSf&O*8%S*7?OwzscGNuo$#cLsLoq!tkkJ z&zEfA1l87?xZ|>5E$Jj_egz-4%X%k_mR30N@5lW8$_Y@trT&FZKGBmSXNbcLMV+|D z#RhWJ>5wL=+8iYIbd7Rq?%{?T~@aCM)ZN9Qtj|m5gI`m-% zXgRu2mm?hjMz8zcD5+ih8H&C2!!WkxpDUo@yu|H@5K^T>ZET)%l{L`NYUW66j`%y? z6{Cmx$2nbMtQl0lv~(|^SB1R&o~(^Ty&Z4Cjk`wqAMbIRYUi8w@x(&&S`0(rA;?z- zB;%rM%6-%gbe%7cR+T%@G6GRDqAEZgVts#7{`qZZ?FE* z36Fnl+qGn=t$R+b*Z%tqhsxE3*@VrpHtE41SKHeRl{6}%(5sKCH81XC)YY^+}quYYwElPiG(yL`Po(SvZlU<{qmlID*6Kucho)) z9{ZyYejdLgSoHSUx&Jp!_y1CXHuv>9f$h*a%k0aGoBU59@%g8l@sp1}UDZ+h{QOAK z-%;DrtUrqQ(}SQznjgdVa8V4u^~(Rh?)`uHM*k<3{{O4mS566mF+vY#+7GnOXWi&L zU02XP8FcHNF@$ey`J}Afui!n9||nQJ@WlnXU@h4;gSPuy&Ydx z{ds@`{(?h1?Aw{_op}$@Q7$WM>*{mLmn+U-Z7>8YWvwCjvy-avQp2M;hyzK zPy@e)``(1u_ z_N&VpKU&Vd#3xdG-zc=mZ2xyk3g$dCe4Ovh&0~iTvCYK6s-L{td(+MG8zx)x-khy9 zw0IXB3VIiXY@=jmT2r(dmwo~=;ZGI1Tk!-!<(JbI2_@HWEY=UwWlT&)em7lAYo4pS z;%#JE$Z#UWpinEQGbkBjV`K8koj)?V68P7ZL>In$r??)n2`JH*uOxy&R&Kg6nSdhh zb3eB}T)h;zgAnvZ5~_j|UnN+>gAy_Y1b7#YNs0>CI@bz>uVR(E;j1aS!&@hmsih6K zgE5TBzDwRcNr~3(mMI@6_T9)}TYIw+d^^4vBkKA`nrEAjzj^R!anY;e+qat%52+ zZly%R+iRrKT2XDqi2?+qE~dM?x<>o<7+JbnA(8-!OtYqCk z(O*)Rjb0}vLZppBcRF$2-rhF(s&?*Ll1dK>f6l_Muo0bDHr|d`FPTCpo+ApC+2&-G zavEl>jKWKYS^*r2gA*Um(Sd$8gyks1-c4KtKR?q?q%8^x%^{iz0KaTLQDk-0lp9fG82rT}S8^799~X9$>Q%o&w*m(1u-Hj1VRg%;I5@44%tq;Zfov>mdy-K6{%!VSgGEf=Nu=ld zYUx7c9RvUWj1`(}t3)*sbsuC+klq=ye}kAzBoaods!tmeY3!JBt;HjWzBkzx-XV|1 zQ|;zrb?)_7YSONp&JadU%ly|3M|L+PE_)%~z2|$X;rIqo-+UhinA8@Myx{bJBj#xFyIUb_iN%RX;t+4^&NM_6>n$epOX>CHJ(Ej+20Hv1Kude$qjK`lRkdQ zmyU~0-3H;t%-Ed20%I%OHn$NK6&1+q-dE24)@?FqY zxY9-MLzd^yyaSY*a66=DWJvz4*}Anc`RQEchYyz`bCp&*JE#4gAF1CKL`m^AA>9jq z{V`Z@gt4~@litHAe5pnT2J5vpnIi_FfU^xPEkBa;wBYF5^0)6!EjF{MjU3fxEwl&f z>u)QwPO^YAI@O6hwhXR6V%a-<$RhY9=Y#5BC7g2A*GoHYrleQ~&&2XC#|hRDey_|F zh=+GZ=du}VaPeBfi8qWhf06i+0elzxdV1E|jGhFOcI?NZg`kIW0x@YBf%wrX_O}{;cfzvVUFa z@V5Vqt7sBY4g5yG7KMw~u6lW1OhWFeoI=M5x6aqwclv0VKe0Ibtq6vu;1SGGkHb09NQz&UVpy;qiyDsGvYnNIW;@2~nHm3Z+jbt6UesHO?<7cip26l^jRt@{M4v1a9 zj!3_ToG#_mm%gdSrYmK)u(|1ScC_TuatU&EtkJY9GMsHHLN9(yV1_`(eJ(-l%RxN< z*8Md1n$9a&6~wesIO_NG9k#N=sG#yY2Akh}5$eH*&@k`A2KDtxM^0+#uzdq86I;73 zGk%Qw2i2gG+FW*$vqvJAsmt{L^rfVKmpiFy1GuB(XD;DVGXa7e*D-&a)cW98>Qwcuale)4hWM5B zh2Hcz?thBI)4{#MY#ckFRFn|cdG({e5CJoO`tINyRdVO>5<`529a8FD5MGZ|N zAvx*VDz>Tx`u&2=PBqf8m^~#o80nm5BP0V=^83+|<#->7wN(jJ&8P&6CbgWrd6*d!JZ4{PtR8VK z|J@dNVq9KD3LcqaAVAJypZ}Op|A|m>S6qULFxFn{lYc@kqnnwjepSIfdFv}Q-+4Hp z8L%Ev0E4`om=?=Ek+8W#=f4@{fIf$|HJL}uO9N}-eS0;7oc#YCNy3LLo;=%g0p=Dy zNL&}X$_CO}$!U5Kez)w>I7MKsA|D)lKJap@J7 z(GPP%FJ0B7uebqjVVL*TA3dz`nA#8}^Y1ZQ-pZSdd-gj9o7yA=#$CTz$0L9D;u9LH zGQ$2+#w+D?@0n~l0r?vW4vn`|?wC3-q{)GG>P~D+0aG?)vEsKzmk~}VIlkmXxOYKK z-lA64lMl3|oev9Ie$0cDys@3RtN)muo#(xS_`qGC*uQA3x!TDsOy2x86M9Q1o>J}gkM~~cnKOfte{tA)`oOXgAa)|3W#7>7ieS@JBMsuvkPV0IH*DIiTe$)XjKhUWd~N;^aZi( zUA0eayJhv1b4$TB1-{QNdhGL>J#rI)P+&7SGnDR#Ir%^PXM=d}B{@3I9DdK%Xt38k zgUgPVr}0t0v(Xc{!$mJ&o;Xk^^Uq}j5bxuH+d0oOTdFR2hlSCJ3YzL3lsc{jNm+7h z_08dB)+uL%AKsCLy_-c39J>GOBF*o0!Y0F1BcB%-GaCjmh`UWT?3i~)FX&OMFJI>7 z_`F-}+R7InE#o#nQ5+vtXD@n4{LzF%A8R|*Ht+Z%f2eLmjd4~wxv*GpPlBN2up~}% zUs&Dh_Nz9#$UxLMDWBdRxw z`VE4KPXvvOe5zO`ruICHlpDq)?9dErTiXRf2Y#t#dGw&y8GpG_jrZp8D@F}LlO>Gx z;`gFP$&83;@8}~X)s@|_!ob%1u`^1c+bb3`B@3Hl3q;Rs(@~qbZYp1F1+>~e(1Mg4 z3l_%h<3Wy)iYW32O4qN+OMB`X!5B!sS(f)UnQOyc?&oGDKQeFO07}bHKW=q%wKo~# ze%g2z)!tdk=M7t&wV8p50UNCgP*pIB!rz;rjZi31wbVxzsY|jiSi-}jVBnbFj7BL! z^a*ane%kaDzThqcDrwmb7D|eNP)yX0Re^RVxNJdgPXsaTB9b8sv06ObGAVwgex2~J z{f_fg32K;oGmWygT|ebKiPao(j0H5dq`;v`TR@-%3|r%ki?i`!s#nT*cZ~#P5vAgd z8Q&wI6F^78eD-OcQZHG>_fAbg)wAocFbC-Ufnjz6=v*438-2cO3nPeJ&k_@n78+>7 zf|9-wHGs4v7Je(l`#~3?nBon7l3o0W=CIS~iI^jw-+tY5O5{n5_}<*DNTs&4m0B3PdBmt z4*yKD$6^b0*w=xprJvLSW|}k-^)#<$J7ufb@QY8uoVeQE@~Qq6@bNy1j`A>STIq=i zkm!)GlC2qVYWqs-qN~&5H${B^YW(Jp5+w$BOSfPyhhM{q?l-hf+HWLwvt}M>Gt=i< zrN53F0}0DRwQ!3mdyy)(BD2NE0-+<%Y;HmGwTBZ>gz3S6?A+S>)cJ9J^|#PN*1;2{ zIk_>8ecVt-0xInUgq2bgGDE#MX;aWf#(rQjq3yf7{nvsJF5?gKZ1&FJeb>*&Ta^`g z!5H(+VWE91j>IsKm@|;PyZ19t8q}z@@Jz;;3tg^G|2wA`0&}3N$kLiZWkM^M(C^Aq zGwbh#lArZwMo31u7xTgQio`MfeH#aPV~W$?6ogm?4Yi;4@tHXbK)ShjNFZfq}8lk3fdZs!u)V9RSs|*;UP)P#;tlg zmEC#bJ}|uRJXt$F8yzKP#C(5%a=dlJa#tIw{1K8IbG4avZ2Bdv_58rW!TG&O&D|dF zAlyoFnxFRQQr){-zuW+g%aMH_B7Sn8nDw9>tZD@Z9;@JvZqvrV!#|!_>d9%<(XPwl z(Eixhmo7MOj0$MZF)hj8a(>>Z8+blID2EUSPgb+&k&{;!ski4~ zMstavh6W!ZiAMN{Jw5`{Ptw}%J<|*B8dVliH|&cznz~W$8O)My7E7X}UY?6uyQ+zw zZ|dK5^#>v~Yohz!MwpsLv@O^}vR3_s?eoWJJARH)86LkJG;6=^5*#mO9ss!~epsQ> zoaB75p?Scfc-kqZ5MN4la_f_IrT5I_DV%P#w@nBR6;$VJTfX=rTwkB?d-_F6vm1Ha zB~<^D;* zd!6N@#$*OYs9+Cg5nE;HfHvG3ak-z+-GFpidYSJ>idRjj*=|;v(;mAqFdyg3j(L-r zRvnm=$?4u8_HF!{hB{OF6&V-2v(#%=Ssnu!f$hrGq0hDnSEnMnAZ$$}1~Tw0LVC9x zh(BYDEl%zwL`SXMKj}Y}5j-UgJMGoT(GKpcZ`hwcu_(&6mGwlY%E`%TDS1;vl0@%I6y%DeGDE`7mW;KlgxM)ZWW3#}tZg;~@-z#MZ|c0n9BQ()O>8y@ z*>`F1sX1X;d&2!P5z)Hy_|sg+M={-~_;}yO(+H~&BW^goed~ZOp(N$2Js?MDl)Xc_ zeyZE%E;#(1GI*voX4EfGCWjDqB!k7g-<~y1uH5>)e})8lh@Fo@b^$B6NfnIxh6W~j zY9CQ;hz{%&E!$bbApEPzXPaM-C}`WiV1%by)n6SkS;*!>gf)(~_gWu#>QbQ8bJBaS zdmocvdvr{6pVF_Xf(}#uW_Rkoo&I|@oVzeNESBhjUS72=9|N>EskAXZFu@`?-SqB| zHk-{&SMpmw#xS)qubRh(KbxI|Bv;FCQx9mtjb*q;VfVJJbRk~k{WNz#)GhzvJ=vY_ z!Hu?uC7xVE)UGt`5eosWv!4V>mSl+RsQVY(5n2q$6 z{jixxZS^PpdrDpNQl~g;0~I#pXXL}5rB8SsT6Gb0r6x;;H0-R&(tmd2QLK zPvv$XV!B)e^o+#+Oo;EYV;Qo*w54lx5b=924)xU=x}^5$VIwgyvM`Ir)xMn!ao*h| z_S3s+hY=(U>Ek3kY=!ngtMz8&_9HScsB(9H*D!{GjEN=0;=4~v!r~s}KCu0FTJNuc zcvwEb*a73Sc2z)wyk(-TG>< z2cw18$gf4~vGms@z_Ovof)&drNg%)^+eWZPQrBvm`gh!px z0It+rJJG{1BT+?`TUpaYJVJ9~L@&UPZS%(9{T!?H+W2T(pOf0n1T^H|A3Jj7A16fG zo3pFoQQCogy}! zjV6jnB=+9Y?%(-nml-^+$yo%Is8M9jFKI-z>;LG_4D^ zrkJU;Cxf@$J7~;RWZyzVeT=EYfEfOAdvxVpsy>>!MyJGlIJi1~(nhCuXySu!IRpsb z7S`Omn+4h0Rn)?LkVh^6E1Xf*TOQJkWeZ+~*e{Pn!CQ+Ncu>dNeqH$v)2KTcWMNP# z&b^3ckLvbR2)w~XkX*nuqzX#%?*B9)Z{&ev`jl3jYKxusvhj8g8XMd?{0P0ldS#H3 zpUzX2TS^d~Us13U9-E9R$0|x2LP0^KQ5y@5r$Im5?j2j0CrKM+Wl1X^^_wOKK0i2f zCMURrZAxf9_(nH{o+o4_<@I|#^F_qPk|P~_sO53QL5U~phsbM|BwJr*t;SnXsd7}d zUvywilXXLcqC|)T^XH=sTdY$EG=v;p;QICJUaI>9`9K1;8s$9A>rw$yXcEoyGD(}8>a*G<{YvtoAd7C*g;!sl#$td@sVZu3>`B+91!iYZiv9Z%YR z$X|0LWI?aiBLdIi6a6c|IZr3t(Y~eHJ)u)l84!^%V z+L}LT9=*igLiI@#eXLQG;$4zNL_Zol^eU=Nk1#;h7nu0k@`f|Vx7mpvM=X%px#Jbp z%$yzgl7THm`e6tw_L-!TO~(UIvQ}^xaekC%XLSpMvhKB&B`|4pX>WLaIhMVGZ{ocq0=&LFPecJm+4AQhvCk9P8j4+yAnKKB&o+ zog2nX(4_|j_So|`;_AqaC=47>@Kp1x;LrYqxpK`5QU>@{eMWqrk0{|?I)r^Q38>$d1&O?{EoW4rYxjwMZZ z!@1QaCbgZUxb>bV7Xmx&m!!ZU5@Rsp%SUcyeaKUZi(`0z7)kN{BWk4g8~-DW`?5JL zd=wUV(zIM>15YQ6UL_ON^W8*Fv0c=9`0aAI2W~7-L2*k<2LyRrQc?uk+tgsEhRUz$4E@labW`t;mlheQ0}ngt8r3;IoTuRq=)_ZmUri zMo7Arrr<6~UuFY};sufJ9nmg2NDL7*J`ub5gxctfN2uCVPgRTp`%1<$S=0r!rCX@V zyO2*XFT#b3Wo%daMQ%PoS{U2iY&}!$_^mrdtPwUg0z92~y5eT7nW14r?axVjaT7t$ zJjF&tS$+L*RH^K@&JGD>WkRiG3Q!rS2P6auU2!zO@MGJP->Q zXLE~sj5l?<^6pEiR9Mokg&Joi@rOyeJrv=Dk{%8m*P^cG98Lo|7A^OMDMS^n(WwVEf+SlJES^yN+kWSu?)Ik+Q6p~d$G6L68kk$+X)&aIgM zoBBq;w~bTWc}5JkVcIIU{4blwT5nBY03pF>_LP6y(XJ2V1v8WRmXic!afmgxmM?qq z!izqe1Lvqpen?S{_TKeYmBryZbPG1rM{TOaw`sS1x`rF^iNhb(@HxD#d``|nuwh~nuljIRyW{omgY$!HdG!s?7eBHUwNRrR&1 zM?KjVRx`3I0(zon*_?U@_GNVz&(sN^rRXf=PSLqHo_s#&>0cY-3kmHN2xhIiH?Ynj zeSk^~$Q zWnx;jpF78(pTE}JH*hf-8(f-ITYQ9ecc!KfwDQK{ln(dHQihf*4J~I8$I$Tw~?(zS(5>>wE4hESz!WPnX`0# zbStv%%Gix@bqd+)&V6i>F}h^H@mJ+va}i;0ZM5KR5kOWeZ;!vb^KN6hDz6yTH;ZO9wB|VTJg;m4jv6>CivEiL7D3bDYaEIJ_eit9 z0yKB+8It+Yiad-u3ITu|Ioj6}o+HfK)0hisdAs6SnJfK!)V0A=c36Ju3=69cYh%8~ z(#=VNIl(G&WmSVp+>x&_=E>E7;V^7&&$}t#p&;#M=M7+KrP&((nh;7y$Ds3bO(Z^J zsl$?F^$VrnZ=AgJVRfQ(9NUW5`mGLb?PcauHd7qFS0TDzGR};6dlhY{lwqe+hezA~5 z`{^3#f!K;hdK;|>(!05CqRt3XSQy&g%?fpna-dAmO#?eOKZb`E&;V;q$hQkMIYH@Q zT9psyc)XFj(RLwP%)zJO zqaCNZl#g&ro5SwUE|Y%XWP=06$)Q}7byllpqRxtmR$4{HsN7ll8Z(O)mAr#ZGMRn> z^F_vggjG$}cGcpX}Hco?qaxxEPl68D5)eF-9FSHcWpiw#}Bd?63 zU2ApK{OyQo4$3Gy5fsd-Ux+B#zXxr-#$3iEFpaVHXzcf?$3+8n`CWL-Qsm<8%))b4 zLx9)C{JF$m8M;fMnJngX;7);mv7c9~o)bXOC!x&P`rC8_A@=Y$a>GxcHh#~d@rC8W zB6by#=YZ#yK0Ce$c@oF9UvH*^*uYFHoPmzl!k@XP4(53Mn%$%0y zh#L7p^?nlOLp=l;YCYh)jcKW3R>|TL$UKWPET}i|F3JOaYI}WjW{c9H(Pv0U&khY6 zHMZ5{){2^Pk}4ZEp_9C-J;#kb_7ox1=tyJIo`R55ZEO0`#{(ljR$O_R#2OO{GAy3) zETMWQK;Z441I z`{BOt7yN316lFDP^cD>1!zex0+M}oz*pI2P(@$#BK+B7-m+sTo?~=ENLlBc{+$~Q~ z>o`e-_m(#?taagmqrA+;h==dh41@MD8%9x1Tze{0dM0xE8hi(Fc)p(c}4YFCbC@FTwb)tb7o=8tv_joZ!i*34gZDBwEKvbxdGR`bDe zK7Fn&ny#{xk=KOMqQe`ju$zlv%$@cI{L_w0P^Q}8R)kw)&3N5XPwq?!1Ex}qKtS|A zwNAV<28^b>TeGpAauWM7dajKXL(kaF!H4M&zUbaPIAlXv3qwSyK@rtUd%>$Wd7t4Q&kPEU{ zk>z+=u(Bm2+Vk1)wQBhOUr3Ju>O4(Ss03VP){VCgbD?dq^U>_Iw*vNqhhDlkDC7v?Ll>uT- zp4WD&3u#S{oLk*mZy$UiJhnd^#%q5fONnx!?56oMQls+JB&zPfRl1c4)BGL$%%H#f zm=}XlU~cmJy_R+S`4}V51&X-Fo=B-0i;T*QI+)Pdd?-@N4{lpmW#VSR)>g#EE@_KK#+f09}NPoEkTjT?u2* z`A(UBA8je7-9Tkow_)bEcqq1fKJqd{Z1eE>;k0m)ZrD!-8KUFX$`^U?s2aw&`NMX+ zZPf#!4%COU{X~{RwfNn^iagl4h!umdp_~@8MqYNxn7cWi_BtP_%~M0O;LX5A0gJ9G(OW%-yRzR61Ed=H8*T)}CK!Unn&W;Zwt*6kAy^~A3>ldov_E~f^ zbrQyR5QemJZmNOn1v8<2D-wo5ek_~#AT>l4y}z|kcfmWxETm>USu1e8ZVFvZ3-om0 z(SRo(EV2Ek6Ej5g9v4lx*zGoB$5nG;%^{#o#0VIUmwFA|f9xGbnw2#(uj*^_CtZ(# zA3b&!oV|9Lzg9QoUereE0rb}ZcFq~|wE_wBG{S_e;@RF%C>csvTJM$Nh7-e)?2Lt| zY8@7%(s{S7`gsL2Hw^&kjV>G=9X%*d<23VQ{P0Z82&p@FKIN|E=H$Gx5}1tUhfaS! zWc>bCJJTtx_wlB&btF4*Gqe}w)ona35xM6?-YrH6QGYcLq%#H(Zn2#c7gt1t7vjea zl|j2*L00<|^+CobPyc_A*o670-Il11Y26dU$6cQpfLC!9*~!A10Nr?)4ZVDU zo&IP`^e$DoDkMS@IWDIHTA^2mgiH2;MyKgC5`}b)YN#83YK!94Haa#oogTBmhV$gF z{%E-}atqR~ovVw)K+k4w&b(WBuH#Av} zm4Q>XYFms-iXRwkDfH7}nZo7=K3OBz!o$+?V`CbKKV2dN%-dn%(=oFTxi* zSdF_0j^AX{$d0mEYAy(oF)khn48N`sxG-^8Xzg**=cOC$bQws+QMC8VXT*@!aCaM3olqy!)3 zG0Ln?w5as;n<8Ud%>*Y}k}hj5FOUVzY1+Up|J5zjfzltW7zc!n?Pkl<$Jcx9j;`c= zdyz6aoALK~UnM(T3q6k2nJyg$$K6Ov7p8BZ?7ZCFi)E4a=H@d~K>eXx;m%8)Bu}M8 zxbIX$yFnv%n+Rs7F65(*w|21}c;;w8?-v4<8PY()bRcr`iPN7JFSf8xqsO@~C@CrJ zRjk+maKw|kv8sHg}i0T=}9Y7)0}bJ7U&eJ?~i0f*CF5>n`R&?s>zcUdcEMo-Zf&4M6@Wk3jVhumcIM%TJ}&0Wf)O`53%kaEX{^1@4 z=OHKfvh|)n5UCR?_07!}_^KD-h&cyJ1VJ@qcg613=MxrzkyW*WQuk2~mN%>It1IS* zv8>ub$JX*xj~#j;-{{5fjZ60Kef-GgQQ+IMwRH~;Jx(@V!F5*NN_pb?Vc>Sn0|!EZ z0;-i=-w5%7!ZMP5#px|x(@PJxN+y9DZWTz{L4?5kQZa5j!kVJSh^(QLQ(g)_nvjph z(r;KOhVPMTOj0rv*O%0EdS;PeuN>!?dB-(b@e&wpWoBk3D0|N0yw;ok?uR#`KfX)- z_3JUn#nr9ieGWqP$*&xeAKi*_QL6vhi+!vWvwga*I=M#EARMtX#ywMOBpv=tNtDMXw;s4}KA?G!EyX*b4nWmWT3(&6KU0F&%0T;jd zyf{Ic{Tf@%!9%<_~&F z7ViDpae~}#=Fzmv39)-r8YyT3T?!~Nw-4a94#rFp?N6OLg;He}hL@7d$x8fz|Pg1z=(EnFmA#)T^^WsNKA0^c9FchD$vOc*=lx%|B=!B zJe*&?%pi%szwC!?%b6@)n=ks@kAipSDVi?zYP%{{&oo@qWfqn@3LbGY|J-Y>c5t7V ztA_BN-6dZ(f?~T+xfT# zw7LYoJeW~A_?A|EFW0hQ=%?fFejBSBPra7X5BKi3d3K%Kfq;qbFQeU%laoVUE_QYA z(SChISk>sfRz!c!{q#Tu1o!or=vZd&NB#%ppB&Z|EU%Q6{>Uj_^yU{*pe4|Vir?#` z+?}!fW#!}&Z=Lj!P1jQ{W-cFr>m+{0%3iuO$f@XP1ll^923rR^*58->skKwD>3$H{ z<3&Z|%C6?_IYX%jrtm54Fu!lvr}RA%(#npmk>-5#if6aD9}wvI{n_D_@8kJ@%!_m9 z6V#<%IjtU!bvay0F0w7MEw;_WaIb&LftFT&%8{H#9F@ zshg{qQ?d`qI;d}-5=8LQ?HWq+UL|7@WFEcKF+Ow~3T@z0rEY9W8TM}SB&0+ysFu(r zqkcl8{EU2(Tx#Q!1@Zovfk;R8o9?NH^n9aK=17eAR3C8c)fJ0Lcci7pkc=Y>X_J9i3a*BUs?a`9XAsEsU6eHc=_D{OvduTpt7ReRu z&e$AzoSTERgS8{7l3u@!-q@J$Hb!83kUnZXT4b$3< zy=Vwb<%>onqxt0?^9`~vO6{ywbt%w&41uNbo^4}C70$pmcFHD~u4GhE7)>E-raS?- zu8p7CU@E1WLW4dBipdu@l9Sg_%yRRhpWAhmt#h@7!bUd0ACiXvc`B5zYBG2-Yu$|>Lq3eO;(!DxkgJ4I(s;<$Hs2* zY;c$T!Ubkxt|y=??)g-?Ix(Hbx&|?Sz5O&2iLTcD;rGt1+?sY;r;NSt3(J3i5?1c- z^BFl=K^+JBU@2c>^j7is+p8C9!9@Y(BFX4dj&6eYz>&(UH&zrlmxY9{1YxdU3Fz-73(XqzDOsf4R?0 zS_Q8U^YQV^83wOtAk*y_z0dcUGgG*!tvslbp(GI0#n&{YyI7n~r9OU!=!HcKw0y;(P2yt%apH8p#X1*^s-wfSX_UJ}2$YSZ& z?waxJ1f$eHC#?Ov8+@N7Nv_eANElm-QIK2x0#f0maiXw#bLGE_rWw|TZxao=qV zbo@y3=a+rXj9xnA^QNEpKHYV=u0i4cWFi$k$xrHBEoS@t-WuTdJqT%^2m&=k2-EI6z@u;R@)iTYBo2 z>|M&wo^pZ}Xgut{+ks=A1y?#J#f+SY&mv3pop+Xg8DCge8#}GS{jI<{Z6ns=B=+VU zhxrh~SL2*&?2_~L5fD#IkSy!ten?C`mRc#MVtUs3aO%2` zj~7mFCruC!)SPtQ^*P<^YC?Ybyzk__rp|Knnjd!3Zqh8XPb*L82K8o<-d7+HOYd0Y zJz~HC0{GdV0@{iaqG!ueA-iM8-sdSE3Ir-un}8%_5>tL^_8x0~biyAwXHA~byS}pY zql*26ZrRZmBSErGg$K@AkJ=`k3O|+ZSn4)dub+r}!p&@bgy@Aj=D^U-fofs=feXj$qz#G#>Jcn z2p`8~?o`J*AQEnLF7sRerb6T#yK66IoSwM{GMr;&d}V#K^!~Y1TdR2bC5TJho&T@L zQxcp~`rLB1VlW{kP_LcyFsrwqauos*jBndu*C@Igb*{R;bXut!^a#?IUiyG&?>rt| z9lO>pFkP%A(g(!oHfkT5q+RR-_>sql`$)?zHHSNvXL<@dL+XULxAtX66#vAe}gj0F@*-MuW zFD7QRVs@Rm?|G)Krw02iu`seSA;onF2+F|^zbsrIj4a3XQ(okHdXase4=fWqE2;E= z$Islpbsg{?iF%JQ15YPxAHSa721ISzN2h$f7Gv~apz`#M^n8g5s0U|I46*tGEZsD$ zDTCB%&o8*kyFbx%?}xVwYW$3c`hQ?$r240DB}UFZ6=vAgk=GlXj7;Y+J)_XYuLNwM z9%pUcoG&`r?%e8&5Gp1qm7e4>G(r^V1uI{CVetS4PT}$)-d9?P&&buqnM`3DqT7hzTFCU=w`?Q zy8`X{uNL^d)fShIK=FDfQ_Wln2RmvVD<&-k8S@Wzed%$F_q*o3q`MVDAjXt`T5Yj+ z_I3;AU>?hWhj(vDjyo>>&l#>82MoMS*gk`f8}^0K>p6$?hB5is< zM{_7Eggtw+$qww_E=F~ChSRpi?%Av3881Mhx1U{eV-4w*^PYLPq^Z z{pG)Vtp9J3sQ!Cct}T?WnXAWBj{0wl0N2yftm3n4dtV#_;K(vkanzSCq32C^$lRS` zJ}whZ{bF)R8#pArkKv#B8^x)RMdthi>cnvf#|wc^1U7xT`PA#Fqe@*DelRle2W;mc z(G6)>j*YqZOkoEts$P?w>DHjh{@v-yN>^Z)piP$eUL4;#Roa?7Gb+(Pe7;%ovYWQU z@1|qM`z@%ewDf%gE2xJKQhUz>=QLg0kLDy)2fmZ$ob#XQ>~qLZMi_QVkCf;|70#By;VQ#Wr^GOBdiJ6)ZI8Bc&AF(;MOPX>nVI)4w7 z6EC4@8)nV>ehdsHWvn0JY zE$2>OrkT=337=q&+QO2E=mM#5{YEXaNIviEkCq+g{CF8t^`}A>50v%y0RZTWeD*^) zxmuS{XDqD=-@wbR1JgKkCHSJmqJ*YZU{DlTQU3VO*RAa82jIk$E}mro+Su`TPXSoC zE015MHBV^Uh)Fp8@)eiX(eBuf+`sd0Z1I=F)ZU&OPAX5X5;)1`-U8aTYsR3^f3PvQ zUYYi!{>BL7dZqk-3l8yLt-PAmsiN!ryUl=Jwd1_Jd;$X5adC0oraNm)ykltiK~PZ8 z$iyT&K0dzN^yWc8niBWi0&*GqU+)}W)^>5n7#kZOzZiZ75cndX*d;R~p>_uG$KzyPTLa`@Ko^RTA6o%{L!EJ)vfnQ5FkGqkyCAdD(7?nuSgVjfa= z30qr%7~5ebF0PZ70FsRz$2|AE$)Gqj@(!5P;~`lZb$L0b4MplZD!IcvclK+K#uosF z;Qrp;-s_8<4^Rbd3*sj8nDfzWp8KiqC<9$8pBj~n@}AhaJKVl~zn65R4|gj2YmdQ( zZsu#jq^xy?)a9L_j%5HX=4(e@92UL3FE>~%Lh|0b%r*Rii+~cwo3u+;TK}$j}Q~p#J|frTbq$*AvthVaKO4g&qwG})bGyZy+QyAOV6e`RKGtLGpJuM zxLkJAwm{o3&>_k@!}0O8wAq!s0kg1lTwc8dbky;vy!9RI1qt_wvjoYVX6esQ0pz)( zPPkO#U76zS)2YXV`}OmqBtAsB|0UmmF+o@-1r!)PaB{z^)_y$7^z5FjJ*t!?aRxTT z;VZT`BUCG3K>W98xhn$Zz$+dKDbOQCf2!(^qs0$Ijaj$Z=*@4Al}oS^(tC9pA4?}H z9-5K=GjF}&rg;5*-Bekzja%`zHUnag_eReB9bpJ<`Q3Bh2?7K+>6SvK&H=4QH_$28 zs{@&;mn-k*0_1U2yMA8(tUo@;@-$FuzwVPABP#AWdpR@DAX7~n>Qm$RyY<)e4Um&4 zwVvk**YEwCAzb!5j{bC2U{~)e-h#L%^eeQS2&cGPSckrMeM=W$(i(+j z0wGPC=Ft@8Jc&%lzx#UxWwX)Oe}e>Fg#idy(_aC=P(wk|Ne1)ra&3NQ&rREUl7{ba zq6J1ZQ+(_Ml#mJdG!(hT>@mYWy`H@i{|MIBKrdAd<4-Ch#O|mW zL_y86$3bp=#La$f;WmsRK_@%U4K%x%d(K!kRn}F3Q)d(cFNpF!-1kb75T*UQ;l0!5 zYw_OHX^5!!wdg#~Q1`13HzggLZrjdO9bt9s5-u7eXlK@Y#Yez?{!D_}#v}OY}D;(yd4lVSgY0!x)|%ue9>r1SRMwYctr^Q91L*HeIj&sp|gY z>a_6Q(~qoP7>%?^!CsenAwX;AI9N9gUVW(lZ-F>j^~&e4ar^tI4UD|w&->A=y7J7P zg;MJoc){Ahlp*ez;BQtRIu5Y96rSO@jtM<@mpgI#O>TnVf^y;K!iQ~}&PRTG>_Zw` zFi2kIhkx(V)`SUXgzGNy|8^q(y(a@i>c5Hbn+U=W04IBW@wb*K9*sOT0vP(s00Ka& z&(1^T)2~{#onu^0O-;Aj&cnpRUv2g(ZH41?bq_by?3j_x<6(`a>U&=R#$p#x{s>s_ zoj6p}xnosZLeyu1kzfPJx z@aC4tzd_x){_kVq{ujB~9f;k}Gfgd8j*q?bn`u-N*qVp1#N)`H@^ixIym>;Jy|I%`9`{iq;asG~gzV6y$OL(ZEvE7?qgLGgc zl^Gn&4>eYp^ELZGTYz`hs?9;y-I6MBR@s$4e{S0E(Eam9FaY)9yz zjMW=lN-cg}l0JFJeB?gVn3QoCJLEuJjW%C3DEG#}K#bp}N*QwWjApjfe*fXMzgX0| zyR4>>Lx)>m&lo%auG5GTQ6pu**zoFP-;%o)6$6al*|*OdXSP9j{}8j37rn-z&kZxa ziOEGJ^N*%)W=|AXl3?gp&*PB2f{0ABs_bx^Ii?wwHZ zn>XGMgjK>p0@!zrHq@WNf&=}%|De8fg2Pbv$4(Uhji_rrDWEhob8^3^x2!T@KH?MO zYFM6AJajy`=4$C53yaOSa$7aLuJqc-Z#?&fu;;>f=Cn9iBVApg-yk%~m0Qpn&=8QU zlrb7b`y(85dXaO9ME*n|*oj`aC8+}3qG$>qPl(TCFaWVu0Fu4KbW09RZC8D%+^3(& z!>YbH*IL@+Ux;ds9`o*iiZhyeWwmv}dymgd_DgT(SQmR7rZwBCZx19b(W{aB)*u{{|-;zf+DJ~i#TD_u0~vgi8fG2RJ{NRJnLpa8mw|INfKSk$LF$I!N<6N_q( z+eAd>bW+S0sX8d%yGrD@X<}$qz5Dm?GX@sh5Oj#pC+XjgC(&>V#7SDg9E<&!afkOO z6h_V;P9YU2RSwKZq9H)3Ytzh+v0K6tj%%43hK6a#qh7N?{3mp~bB+~jydu2Y166_- z40Kdd?mu}_HVF271`jK9Fu7_%D$|JuV6JwIf%^g=k(jkI2R^()(>@4#)g=?Rl*wvy zA4k_VMZJT!!tzsm>hh`&583}XTHAzMFXle8Py zr?E#tZ=SOk|)iHK+PcC51bsmvoID{S3YF z3!QwauVsqTv(GJ1pF>v@C6s4ttljC(QgWs$!G^JBrQ|*syF;S@U4CILH0tfq%&_dg za)vu9KNWSF6leeWdrRG^@JEJ&?XLFTaa{=l6gxS|PxeGs^<@#RhM}mn+GNFY0ZCNS89X0!{u|u4m~L#{Nc?t`=f_Kzbqd+F5m0${L?4(=)Jw_ zHK~h(Du_Hc=x7bOo;(CYvlOVD_UftoQ;Dk7ssXwh$s#&7xCq6%t~@z?7(rYdS3&FEKAke~%c0D1yvDtAIOOGca@E;<7^oq#?t!QB_^EwUnP*)t z&O%sG;bUg@F4`156ye$!-;_uUFm}SXVSH{&;NVNCH&bpx6<7kCsfc^ zYvo7oxwO}tz~WY=%rroGMYPVam6O=bs!NAVM%73QJ@qDhqE@T@!~0ZQ9+$Ct>mJxz z`cmsP@k%EGyroU6>F(851E^XhOT;zn?#uc~spb|_n#4>Z#>O}}8Yhy!?&t9ZI!0>t zHK7oSgENsXko@;6H8rY>Q+0)WY@dT%g9m|iiV%4lbeC~y+-JeADE)C2Z4ZOBa8BR5 zF*<6lb&Lm1f4KxFpyiPzV^5oeb#32pTL zbSg1Eyz2j@jo`twMnC6zs?hqUc)4=u#sGyUd!HPIP%j29%H0s{T2w>WtS@`=aAR4m zjg7-y8h;6)OqpwbKV?rhgu#kbHrFsmcx0IG#9oRCSDuv-$14af!fV{lzD$o8If@Hx zY#b|wuJ3hZTxj!a3Biz6**4B&o?Y~oFLymkF6yPZ9>&hxeQC{DB{swen}pC^ENanz zG(7v!V4@*bAA8AS?7$i2%T_0?msu7K5nY!2F$^^CyizO#zi#p*U_B1aGYlsQb>2>a zcPRt8Os=9^AJ1g+<9q!2q-z^wwF>k%Eb#Se>NNqj7i4|-SRosGGt3H(vPwor;^ur*VpG6z-@|SYxlCEk20$l7$JT7^E`xmg<^$pSUi(x zHp&b^EZ&KUiM8zrNH0e{($G)JsVx+zPtTHG6x2vxMJ|@DR`6FBjBVaZBBj)!CusGI z17l4@5^o`?Sk#5NQN`wNgkmoZ28;v!hn>`}l)Vi|oA_5}f_Uk%p$RDSJRRj2BsI#cF4;oY=cIavNJ;B)z6&k#vQ zM`d3vanz@di0G8@w@hBBsj)GGhFKdnPYp0(C895-i4DwvxsH3-^bvcDE)3)1b+QLM z$>zhH*?gRgE*;tDGh$yKVzTPn>6>B#0WAvkg}TNoPpXtvxJEc@>qD6H0z7JNJjCo| zferIvLC(7BhbKBLx-#b2?=jyyMCis}^3oeUu;aKx>NFnCl05Yq^8Qv+NC(LlQS~G5{_-v_ zqs?80v3#J5VebR9n)dx|oRqU(WEx{-9eCH;E@`r+_vB)|lTqNG9kv1yuX*Z<2Xofr zEQb>I=PsT?Ji0yS^5&sRsvw<)Lrg9!(me}diy`igJ$WBNu?qC2`Fj z{d-aHI{S82PoY(_vvB6xoZB$mDAMOA*fPSNG(J3pI(N4~t~!aAc@A4^rWk;ppxZb@ zz7-c*+7pT`TkjRB31aaq)I2eGQXyMHvf+*Mm(7RT92Kd#_+G>8BddvOr44CB4Gr=f zOIbEqr8CU0!gJyBxR4I9k0j=3Wms7Z$#DI9T#~52Fg3iG?l=2}?qOB&T{cC~zmq5z?Ebx61g_sUhv57SMs#Qx`J_D83GhQmFZQJWTC7wP$cQVb&DK_viFmU0eLzQ0y}9$jprgbCI>J-5jl3Q@ekB4f%Dl zjpywsPixq~jIh4b(E4ZMYResX9G$1vjnjT;0;EjgnG?Tz3eIfwCx=iv*$I+Tr759E zg^gYK02c=5yJ>Try+~Iw1>_zpE%u)Hze8NUH7M zTk0SBL;C2g%HIs_&Ew|c-#3!-?S=Ts_Kw0yOxz zf=Zcs97XTJ0lLUSG84@5VJ16UsX+X|rWe-;&*2t!Qw6M zGzHrghINQIHTDGmC=EA0OltP)3?nVe1k8_m7M@~6_#Fx>pW&I0?nrbQUo5-YGQD3MuZhzeHtI5hemr5E8D`3>EYP|sZ&D9I1ayG7nJqp7O3_H65X!|i(V%*nO$?pHM`9)T1ksT{7M2n??Bpeq&cYE6 zBdyk8eO+v!t2|6De|k1~5zMc_u%`!wh+JYK=Zmjc^XaSl(Ym@9s;cRzc#8-)=R2Kd z5ntYx@Y83}R<*QqW~vh1;MH1DBq}3V3mzF^9AJ_NOg3q=di`rJWsE=~^4*<5w=d6R z2Vx4=m&l}+8L_vz0wI!YMUn+|b0r%k@HJpyVZRB-dTM!ZL5fC8(MSrqi^S_&!=? zGDw_=`wQczZt@e!ewGj>=cnV_DG4+&Zxp45B4s_TmdS708)%bw-gZXr66yQ#2(+DE zp^99gc&j?X*o4Ut0X?lc8sVbR@0jfAUf6X+(x! z+y8F^qd>*O*SbL=F&xV*01ofU)ipA5$XFt zBfPjJC7vKj?C?h&WBvGki(fA`q{5KOmKCREBvUfT2a`f>7i93%$qQBElU;!QL+l64 zZ}kW(CoY z*`0!NU4F%c6k&gFv{vuU3K@|O)gh={9K10zs>(z&rHt?w1K0qdrVA&nDr7DF$UtP(CPbf!?bf?MPDR0?ZL~1D_*5v>ZV$IrRNa{y#7KE&SdNIHVh7}iv!r$JS;AK=MdqNqL z&A$1WVVriv!cP`syy5u#d_|R((CIXwB;( zy+S+_rt?CZpZUgW)=2?F=cbmwRyr6j)ZJ#vWSbD3tPQm%n9g%5?MXK+8e~&a3A6w@ z4cS+WjhND|?~dEU?bb63;HsLOzNF2z8gSZF8*|171lID zbIWKP%?f-=&<_8+5VyQq&8IKtIyQ{zk=co!L>VxEH=#m|ym_B|co#S32CZ`gP& z1PiiSD;&Q?u49+=6sk4T`K_eX*C=wg&^{e~TKKiB^x1&;1?<~}%>Mp*tU(ROz>tg_ zwi~f=N>-Jq#&R(F{5|o52@2R zvkSEWS|(N^L!)vur@LS}#Yr0ev4V%6yEM|CZd%dOKe8~%!e8if{XjQN@Rc!A9iPEe ze&2vP4$Yi4oQkWYc?iLW?Q*B)ekosarS}C$r8jHDXLr^;98?eukza6}A{$)ynGe@! zNA_8x$^KK|Nx2(cC?QanAF0t(s7rjxSbiZOSygiyyb#WcjM}PW zuY4TJwoOctUE8#f_p58SF$`@V_q$?-U5wKm{3zVUQm%L9pxj_Gb^{+*>*AEYEyKsZ zq3n|cWY>hSwlKAtxw*AIa7?>d*Dr-E)mXyRocd5w(_C3sPjA_{tmIwVfJP-F!rpAK zP)YKeUwxeNWYR?al&(CfWun-nG6ChH%7_Rk?<6rl?D&*(Yy1bVOR6u&QPb)5t5rQF zSR}(?s$e`sks8Ew8&<8M8D_shO>}5QDvFe$#kBT3Jb9M$Wg?RQnkn_|1@{XVcxkMF zl0;?mg~xBtsEb@DXG{=|Fz5VxKv@O!&qOTXxSkgs|Dr$tv3-=T&QJ1O9vx$G#%jmn zoqdAgqZMi+KAhw=ImUW-rk2R5pv6(9>3Rr!{-BBF##LVnD^3y@m(a~SH?JAN@6&xW z*6JCgOs>l(1?tYJ+qdItVGpX#Xjm4$g4ZeLkJUQ=vHE>zC@iyPb7Q9Bf=Kh9pSz__ zd^yCgvl2C~^fI0;p?D0;dr_+OP6~Lw~zJ`%W6D7Hj5uQ#b$8x1Tz=VQbT)b z^?~TmqUzJTOvPFBu5g}MvyG6CZx;8|*v!5#dT_CgPFf2&SfGgk$a|v>I}IEenY4!G zhxQoe(aT(>+;?~4(Jv;%wkvf$Klr$FRmR@-ofyky(+k^CuBTsC-d=E;8-(xA)|lED z`zW)q?A~hzIjIO&kqD$kq9B26eGMUzIu6OwdFBXs^Y5h>5GrG-VW?hoeq_1cy`7rE z1KaqP5|U6@t2pmB-($I*)iq8zV9>yLapa&rn3cb@0%MqrIdbOb-Mhaeye}E-;+i5UCB$| z7pxxA&+~-9*{s+G0PB+EP7EIsu&wpn&Jmk}FWlbe);HPMP-@NiFgAf-muWoKA_7u$ zQCF5ZMPx1A7)x2G7aLg`=J4azLLmn$-8i*HbE!#wGa2C_E=R;%klxBnF>8TN-?7MG zF(JRZ$_{;J{bs(W*NPmVk5ZGCTFHK}^%W?ZUxc)A)q1;N0Mq#A%+sdU9y#=SOM^a+ z3Vzt`p?`pzd)X`Qk-RoEK>@D5v}&y0hfJMgbMO%_2jyQy z=X)z}D#2A$n`A-lu>{!Wq|^L3u6A+14{5V}>F*bPXxw)GQqs{X;#6E?gsP(Yc%tjf zE?wtqLRv!lLIPV~$>-#tX&Z8$9Iqp3aS_ zA)t@V+u0UO6R^@ICaREJbarYmSUFiUC1dA9-~J`U`=&qXhGb-a$7*_5dIWBdDEM>n zqn7Ra)bCX@ZMMc7kUQiZ;J)2WwAC z@or!1^1slSE7!KmI}XMC^Xfm!X1i0%_OBtNPdqfbpmH?Pe>A=6*lAG7{dbpm9!2z} z{md+U&l|2-Fi~AMj5<4E@Q`XSB*{0UYLV%AO|Ky`h%3K1|pO!30Kec~utHQ=Udqivu)7 zTLN)t7H-Z|B^Q{)3&A9GInn+EYF4|l9cI-#)mPlm@0zsq->s@WubwdDBw{Kni7(PnHJ5mh1NC^vU7x6 zhC-J!HKFxa1gGYnlh%9#ZQXik9TQ;6-0Har&!(-ZT44i2?>jSNzT;xriQ{1&P_dQ* zHa7x2>aQZvW(Yyxb(|rcvCCEXQ{$M|Vr}ipIAaQCS+tZev>~Jb^woYCU{Na|u5S90{(U!)p{5^SW&cK=6<_TA^Sii~sti!H@u%-D z+)f|dM>sdi`axh^Rh!%G@vg8`rN_UE3GhtYX9fn()+pD!38p*hvQTh{H8k|uE}-EC*7P;{nu{a>QB6HpC6s>_iSc8LTe6RDly zW!61{3td*2h4v_uLrZhV69#dez;rd-Qo6#7%yXC+orAy5oo{ zY1UM$vrNiiKmG2Dn$JlSD=Xlk6zA%|M}dgw#JEAUmGyum?2!>tBS8qn^?6*2k#D%A z+6<*y!$ggu=17cYn)<7a%f=u}!>GRdi~GnYV?!tRk!N2Za`RwH4w~EgX#vV;5#|Rp znA(a7n9^E(3)pRmO5hz> z0nElOE)k!$E;pge7x32zt6$1r`Ewq;n&qj1wpQupmZ}4q$k~m6V&61xG_UxZ0VY}w zSEHx*hI>mu6`2L;o6qpRjx@Cx{>RXN)(j8R%gM^IR=yNzJApN6=ttC zj)^e=zL9=qbOe`&&!|N9nxxk@6iD+S0TnRK^} z{^gEgRHDoP3+hpcthCBTMuXsF>qG&B(LV~kEpkto1~XM{Z)nsNp_U;)lbfpUex>n_ zpT>XPV{19peo@q*MnVRd>@2*PCO-Rh*jHWCQc4hRe`+Aqt~PnimuZ&>>^~yqsP<|{ z4o&>&=<)Y#S8h1ZSMe0>xd}uX^;t!6-6fgvI9<>y!@_&gDT6ree!zB}j2_QzhALeg z*fH>xb*yLLW@wXlz4<7t(mLYxO27W-VlN?b)mD80-n^do)6MT&EN5WLVIk_TYkRk2 z0wV+|fUC*djG~FZ>$Sa>Z=58+OEeL!ojC#ZV7cC){+6* zQp#k~^Q0~<5aF6NoyI$E%xc>$@G_+}0Y}d}p#mxev;hx%DSrVg0eE90(RiW>Emjw> z)N57OBl4;MPs>?f(dirvb!1Jgl#!o!(?HXJG!9PKT2{*R4y?c5@yMt<@yvqEPLnN@ zUo%0W0A9J+3TsRsDlpO1L~Htwz@akE6*{enSPXRIN?~Q`{;&wF#6k=phEn_{Eb1E> zQBTw(u&q(F647K_C(j#@&@H|f6YgQ{$63a8gU}~wvtpXm1`oeWVZ))Um@V5Mx{^$r z@NFK)WIpaxYPT^!`fK9A1|LB1F0sm+U2mE%WdU*QnX3JXqzxyDvfG`>Gm4T-snF+GEJm0iB z>$i7>$z?PI4xo{2Z3e_hz>zGX50#MsHcO@Iz~cIG^~l_^`=Vl5Wgu)Nz)jUf3~Fvq zIbcqH>t74AejcEtbHyo>zwblueVsrjvGe>lMD6Epj%oWd*F!_=H{X{c z(%e7_F;gp{EMqOGYRlFNpfysj28@4_b5H8JzzW|V@9=s(`<&zj7zT8aG#mt}!_DKR4$8;qLlBJktK}Z_xi!LkPLM)y!liZk;2Z z*4zAR@2~DAJtEk^keT>KTEE%T#TqYKYOk(yOjh0ZDX3Yoqh4klcagSLcJcYy=Rd`n zt)7h*mufCrdi7Ym?iZxlkuJ%$3myniVkNRRLCzUXFnj1~yqK1Hc_#+|Vp0Mj>> zWf}ACL*?Z5og*9?c#HrqN{=aw*^E)(9M)2k<#uH`GwgtY@sI!tQpYM8ND{PKHyGE5 z2h*Efq-7c!_N_jTrnNVnE-X$iD-vZ-ohO6jNjj^q&XMD|!auy210ek(=|`=AJD@vXzxwcMk^AA= zSaS`#M9QM~uNkDKa_QZQMAMg#%xX9@#|NX^@>qubu=O#~2>Z60ty9~P6Blm#1v35j z2cXVnr!%jczWNZ_BO@@=_j*ELB5)0K{Uo33AXsL~$dl%E1bTKcJUW-cW};NhsF z-xuw6-Z(36{kBlQ6UcsQB=^G;__G#&*$hudlqi4nv`U9h+~iL&$7i&5DhE&cZ^`G8 z%NK5+ssrOm>wdm`ot@k!UkomsoT~vHdN{^7$Dv+Hx*(zUAqi<5c%@Y3;Z`KXo$JcA zHut8KKC(&O0aEfRvwNDmNoTXdewCD!a&ZuOvpC<6`>EN_zotDjAzhLLWXXPzL|>~( zyF=5ULWulWJiaOZ#N6`Rt?S!=Ts=Oe(CcaS0IE)fjt!wE65WkD6-U=n$Ra3+-a?0a zpRQ7np*~n)D$Alu;U&VS0)JSr{il*l0$o&>8u9l>m#&a7rCaP=Kk`bBAE(oAHbblf zuaR8}UKXRMfMYlBW%!c2oNDtBm5liE!sf>4EOrJiJ5sw8yY>k)Tk)rdWs|HWr|q1^ z+1M>&%oJfz!%#!e*Zcb|EJV$Ys~*oPUrtW zodvh%$>=+i9wVj6$0JlJ-`&54Y6ahj^t=Au_j{HRZtht~;|uzxVb!7qJ$MnxDs-QU z#V56G@#ATE`=2vHM^wFRls9a%LwK!ywZB(w{IIO48ddWNf+J~J?yK4GL$#ohXq}z^ zfBkdjkeE6rYUzzhO7w+0_9_cSV!<%qG0ySijb8<0oXtM;X`DxwwBwUCXY>> zw(q7d;`hDXcfvl2e#28g!cD{1bA5PxasarZMt}zk!p;zfP1UarCPDX4Fi}52 zylnidKvF!8qJs4$1N8+cx2n}=wX^U@(#GdeAljEn+YTemt6jK#`iMrLp)zZrtFwBe zZhlQ5J4Ch#9*JT&550tJ{?uB1KcmM1bsgLX^0?i(y>P&w_68fGyqrzZOTmc=;-ZgQ=xZ>8Z>A|1)}RvZungj)@= zc(PsmZ0dU9cBws%?KhS?m6+)1YO>j@^~A}~dihIAYi8|XC6+gyv+Hf zY`50j0nhaVT9e!QSOkeX({V(_-&3z3`9_4QeD)Ukp0d9D>FC{^dfL;e1{*jPywn$) z1Y%RfWI9DZ{46mQ8%(lIM*I^x>lIyJsf6Fw&*O}Az`p(d!*=X$P?0xdcwwKlPbILvXcn*;&NErOBnjSiE#%03*z^HKR&uFce|$ zH(kr~Z!=!NyJ`V5X2R>0{xxITD3<)u5Hl43!%O~t3RI44QFKnJ5GZ@{!5*1AVxFSY zjGE0idD(HAr=vP^xO(o(lGqUJou^HJ$SAJ{OGZOPgh+L`w9RPa1c1>6SQgv8S4XeC zx+%$XWq3?l#`i{NG-|btqZUZ%M1QMp8eRE_4WWQo#2sm+?c>cjybpvEuUj95hzx@2 z&c;URsZ3_bpCy#N^&ZW*Z|{Rzn3M^Ek9g{IMgw0nt(qJ~i-=S&{tiga^IW*CrWe?g zJN7NbQ9qbH?+Ht2c(OSr0ExfeX98JK8nZwvkd<_|6&TraBVH9pHBqAUwYI~N-sBy@ z{??^*J6n0K4s;O0_yFN2ZP*9|b10E$@RpYO-ND~b5;@MMN}{9#x8&RzzudI+qi|oN zCf47CL7SFL*?_#H2hP5CpGaX1E%|^LmTub=nTIdGqby$fAV0d{QyIje9)=�xwS& zc{Db=FARdjwFMeHLO^QAtT}aP5gd|C8QZ6)F1fiuhMhuDMqr2OU@x@tX0W~7MU zbWG7)=f1|p%`h~~dt0FM58$q;Hgedf;fEnhy;DIc0qnUackpE99ArO)^IYkrB)sl| zrOzDoVap482)%w*cnpGEh-^TZAZ0fP)nqyqwrNt{02sk!-_7DNtJuv1cM^ttR1p;D zaLE;O;kM+KrdG{Ia>z>-i-G7WCaw0#cFAc`Oxzi(G$l4@D#Ufljhi!n%09R+nSrFf zoM}qgL^o9QS)VAZU%-c8G^jI6%k4z{!hKuXGAQy-w78&McI(0CA94RtqUHb5u5^1A q|8ctKzi08U4a)yZT3iiU;_P;qd6Wvo#NKW3=#Hk|&BE&sp8pRXT>Fmz literal 0 HcmV?d00001 diff --git a/command_line_for_the_win/2-next_9_tasks.png b/command_line_for_the_win/2-next_9_tasks.png new file mode 100644 index 0000000000000000000000000000000000000000..5c0f9339862190e893e1d3033714b19c14f97062 GIT binary patch literal 149929 zcmdSAhdZ2I*FG#k5G{HiK?G3-(c1(;5Q?{)Mt6484%2BRB& zn89!I-0yqe_wyd#KkyyLg*|h)uD$o#Yp->#bD!4-4K*d=`}Fs*u&{_KPFPp$Dd1~q=ch2_HOTjrB@)r;HB*X6B$FF!lTQa3nK3{U? zIOSsDY`kFL*kN$yxHR8V@3n7Q+F($X66S?Xg+n=)79kv9Q!|v4ek<;?{POWnoEjCm z(UTrWn`OV5)*KWVzFdm^py(lf*#BPL?r~ja&tAVKmjaN6b$x9(L*_RPL~wmB^W6aU z)bs8~^mIlu2UMYl6yrDrVGL;!WFCnXT~6%*?;WP##$o(KP+U9^(0y<_ zUDAYqkDMF6b?P4n5T!~u<#ARHR2xMh*gSaS1m2FXw24S9?Yzr5UQJs4-qAh#uCTvo z;9i)=PNl(k)l1jnx@|t`p6`|A{W;mWW3|zB&PyH#pV*N<)q{yzmnxj^7|64Lk!!KY zLDQW6@0taO@WT+&0;R<1U{xZcgPW_Fj~XKE8G&>-xrqeTO3QbV7YfT1Z61 z!7w5(#stOvZBJ_LdgoZtd{3wJ4Qc}!+SiL6jV*S#r|qn)be@cI-|)ga zDqWdgTNosP6?c?O2X6zG;R~Wn{gpSB)Vib9feF4@KHm3981HwwQId&}ZJoXwq3HH; zp<6CD`xWa5DySd4$qr{?iJL)fX-V?bsy)5>N*KKcpdgU&a> zR%17=xZ{bqEPlV94*{D10f7h>sheI3TA4r`zUFmDV;n6gQtr8y>;s(txx^C8yFB~j z=zO>Gq7g%`!4wzE0l@a_eb=6G($H-^ex8x{b(Glsae|J960hGd_2$KRtB=x{xQxnp zjSyDW9ri$u#n%LiCd0H_yv;*37X;n@g^@dHy+ew)-<>BukRe=R9 zA^{#Gj~>^OoNKeC8U=dFmUk8R5E{nowL{)%#1-j^2@|LHy+rsMm^VC9n-f|m4BfI-O} z%nqfX_Ru{NWLtXo<8xV+z87-m(!S}e--$MX^(|jUZd@Iuv|<83ES1^D@+ukWk#X#I zbF52~RiWbxzCMxIOR#FaBjbusW1JnGUMyBuzN9sAS6kH4)MAvu>&4INd^B5H#`wck z_21X?T8uA72BIorne8QG`~9ozY8Y&o&1y8N6v86qidZ5TeI6*ZV8xso_qbVNvAwGPm(YvO%iZRj(L7)sb#zAOLbV~Gg$Sum$s|^@(IaoEfm6!1B%^ND2%XJE5AX72d zgD3!N#{Iv2rrTXbOY1Xvu$t6SuLv|*-ofFCn#`qDU0vPxW(Gq;Ns?HALsfyPPSKqi z<7_frBJ1i}-zGZcVU?~d{g+Gki>ThnqBo%idyD&!vTc#y(gH7;dLaE2Ds*iC-!*-X z5=TQaB9b^ehx%=EbpeaX*+<~B5ecWI$+(|SwOY zsJByM#KiIOTlA?d2y%6{>%Lu>wp#XdWNXZwH3I+|Km`6fra;a6cor9ZVet;u2eX%S zbA)H9hAv$xx+dc5a4}~J(tscO$FK@xct4Q&dzW&h@amc?p!4&H*byvOcdfajxvniC z%zIk{1aH_&h;yP?9AatO!S+2Mjjldsu74#&Tz`Jx?_!IEnvp!31C_4wxN6>YJ*es} zbVTCcGB)U_44){j#n8--6h0`Z+=+k3-i(4nSA26tka{wBBihe$IYgM6tSV?C5jpd!Ijjnv~PrOOi;A z-YG8JF|Xfp-(cUa(zBRsD(EDX3)+p2uJ*}gPQ0G`@qCg70POA`GTDgtKetyharp*^>mNmG*bE@30uVr_Y4u~@=h)eb|~ou6=&CJz>H0&!xZ%M2pBmo&gHN$_T49PvVQ+3HrwYaCA)_Y zqE={Lm%?-Xz3=s_#k_CkA*J{KPPS_Yc?nHg99>|1$g)4KC@?L*!Go^(sGqrnix&{G_Hq%Gxx%SF{vFOaLi*d}yU*gKmbR`g z6t!{-7&fkXo&qF+^GVZ)i_ak!R!q8E58DH@UEi2*vE~2xUuYNhFi_1bG+J8C4=^!Y z1+g!~+tFa7ykGDm{ovMZ2Nz&%=}p=se{CjsIrq8#!=cuYE)yZn=l> zmnSfm2CZIjo7YInNZEA_aSLkdsE>Sg#s-puK82+giaF{}v@DCeIu3fH(-Oz1zrfoD zcg~uQ4qxikj^IeQuJ?y3ESaqiaPKk4|N8Z6(PKo~7oP3ozT~yiC9G>&{tLIjgpZPP z6%Imi@qt(Gf{*$;-1<^<*BDlik1IN$t;k;rG^H$;@x;VU(Kk8nSKH2|mnYRQNPG`0 zQ923}$6>A^0d$As!VxeAGF9BaLlM*iD^~S0hk8FO5tLAE32`uF!@$3_F(u}{+7X%9 zS#kAfay(MJ6u0IeU9|ZiPgrnEUvz)b`zi?c66g#}*m3E{x06-wdn-?xYMd5%A>(NY zD+Xi*`QP{6KY|t{T1F-NV4K$dXr{s=AGm?ojmTexsC3*OG~P!0oose7<9{t`p})MmY}zStUBhg( zt~z_I6pi`xZWMh_T=I`w)&SNh`H~ZBnt}bbj-@2W=N7S$>=8 zOuY}!C4$zIlqL~@CPb`SHC_qJzXh#5k$Ym*E>?S*`!BnTm zZWMZ8=yBB1QL0cy<-1Db=ZmQJuj*NEwk=xiIIK6DJJa6*E3KUel#t;oM$CqGTTGN* zs)Qh8$-fmU9dOW&cUj^0td#UDKV}O&6@6v>R0BTU?#U`X5w~f;9C#KiZ0f*@Umx`` zBZnYX*qbp(H_HTjnyD_o<>$NVx!^~c+gBo2q4h56&mW!DZ#@`){^qlA+lO7hgB`8$bE74{$m-Xy@PbTKob@z8Jh_pC2n7$od2;>r&w1GwM1E|$FRI=Vj zMcpgYJGuupA-zvXxRCH!Ts4uocS8Fgh?d|nOL!1+dlAx#UnEtzW_oi>gT_=eI=OyZ z{IRl1gmiRtOC+BGFG@-btFN-D_hy%-3J^n$8SZ0g;~KgvF{alI)WDAA_k_c$3bB&U za~a$gNNY9pnR>5O0qE5Q{n?O*?=XN?Ez8|1DV8SA|5jeK#1YRWl!uz!FX;y`L>e!W zZJvf^t?#5!Om$YnQ8B#3GLU(Q#kYH|*{)FN3GK3bb$&ZJN%ZJ?Nuu2+B?6b0nGmO1 z7>BEsS?=Kb2e#rl1(SE#6EZAZem)Z+$Wo%*cbe zqueX{O!B3ipLwtWkEdEM4KHWw9YGo%UvzYIR)-}II@kJQ&Fj58uylENTHemBz5Se; zNopAKjoF5yvYgQ434)cln6)p9@j_Z+U}3yRnGwqXpq zB?;rIOdXLwK5T-KY&iSxmN!~lU!6(c54oDiP1X~dt&8gBH}pj2G6P;)*zwrZlKkNE z4}_Nxflm|f)ze@5#cEY~XEW3mv72vtGA!#;kQKGRHMuY1da-s~DKY83)HQJjA@>?g z3Y->tP&J(T*;Uadl`eL8XtJT9XN@zq*jW7d`rEpmh8Qn#N_1e={QN{4NNm?(bbkJX z>wbf_;SmUE3w6!>yn0_NEP3?AfV2El_vn}|i48;0CT{MQsIFdgnv4L90XTbPpMpyr zTfXpSvmioViddH0s6xV7d1O_gU|Q4U=F-@Qg%*D`F$Bq`CgbO_AoUHKIJOMjawFPt zL>$=S_Y{DFSvq9I6?}kpkIMd^deGfw^LIKw{X#UuiByc#quXN8H5Ufyq-Y2QU3psB z*syYQ?|#p#tJBW*sX9XSRDJP8u3D1btdtTn;S_<5*q)T!ZMxds9{4G^7KiH{M`zu& zHnH!!12rEQ5gwD?b>AheO<8Vg8W ze%|0LTYAs;g$(Ho+>ff@)YDF2A~T4BnDjGnKy+<}bUNQD1jT>-3Ho?X@W+w}S^eMRdNY^tepI~V)DxF1WT#&CuFgOG33eF~4Y-;n+u z4NT~N_K?W11^_q8D*q56%|#+mG5nzi+D~J4c&2 zRz{aIPEN-eU%9d3QmgL!U!gyYyjRXq>py1FsoVK%#-E|R-Yco=v>I7~zQbJdgk-ca zr`8>&D0MtgKq~{rZ$z&{zKA%_3k*(pw=$)f_;aQ5wvwg1d860nFDwP1D+!V6lo_pg zko*rgVTAnQAW~9N+{73i`VMk$(Qr43?D@*Q58ol^%af^+tE4vr*h}|1Rw^TA(@cY# zd&KWiG;$E-0^>r;9lF4CF9&{#Slo8K%Yd9JiCUSD`*M%JZe^an?j9s|5WaB@35VP4 zKS>QbPNy-w?7uTPjW@;kqr5HiNiF0NJ3}(kXNr_C$<#{0*b9paFHo#%Cbn&1Y4*mR zP{w#ABI6b4er!3@L47{KcOPs#QDL)@RYct{+Rp5C z9bT2_WBAnk&VAurdsl>S+mlKVqVt+_U_^Jh1T6^F!%a{>Uj_)jeRP9bX@nM{D57Mt zP|fInN=ytbVOei5rD1h0wjr)!X%3X6PTCyK4mcHm)ML(`QDNMA{v}3on*>{03Exu5 zuxjl#zH@jQ_Gh`SiO7 z$zseUPXvIcSZq=O=gYuKh1~j=moJe=Z3SlaV?*Q8S74Sv9b86-yCUd)es8qsn!;k2 z{wI)QjGAYi&!;6UACKGIXgEDDA5)@LKuJTPj~D8iC(V81wYa(W2&r8a_@#s2b6NadQ)3$Pc+_gOf<(R>+t5|>gV>H1 z(nM*EckH&_AYHD?ub|CdAWmhMQLlDyro(8`)k4_u; zGrukHeMKfB#Wr%wS?H%eH9#1kXq0|E56yzJEndKCXNzQfOu?iMsd@J+_UB0nIymG- z(5CI$3H#lE66^wq>i$gC`M_c}6cCW6XkR#B7Fz9eK`kWOpf13IAO7<2ZTUZLj^F(d z>RG?G3dLGBT8cv(vE3(B@!j#$ZOmuwkw?z8dY%)!oToM$^kyEudL`bDg1utbYgvNc zp;4iu#$0l32OsHWRy3I3#fH_U-b~|;ZV~1G$fG())xkk85f%~ULSRKfnTBKIl;Tm9 zU140GIlGeWT|CW0=G1V)rA<{kp7J!EEAnr&lGeYL!a7O?TY##5^bYl>!0Tp#yELuazgro>l*G3-b&o9MAwo5!F%2FUVtwtX+%`m#XNarz&XbTDGXrBkEU&4tH)vew>_b9Xf`68ef1PWArW5)L%V2R& z=SPp9tq)Uv$Ss?fua_TNPC(g%Ieo>z>kyLeDOx!XWqg?sTGgQp<)Tr`McyI&tDqOk zBii|A&pLaMelLQ>80Gr9-cHWw98C`-hPlOkgkJvB&qGEU-=HMu?$4i0eXVBvai$=> z*xc(DdJ2d>qW38V%E*fUI!9GEE|NBK;DkJT-qcQ}7-UT4?To@18X|V680#g|fy214 z7I{@USK5fxT2e74(|8sIC;X=mx5ds_F6pbxKqD{xmImBcw9=^jpxM@uN@ucrcWe7% z;(jw)+0cyIK6T#CgmVR?zBTJgj)qA(azo21wFaB4ph7Tb=x03EpHK=nX z!;}$r4oP_zm_(fMh6=CBauD)eA`mOML!BU(j4Zitlns~qC0h>yI~0p)SIJow*W2|L zXDS6xfuAahan1h8zqxAc%CEQ3Ur7T)E~a0$Iu09G!?@22s$WJ-boE-*Je*1*32>0$ zp(Z4{$9Br-+ZQ-QAiSgb%fjA~|NXm_#8ev^dZV+`Ihwhb527Cao8Ag@TdYDPTY)d% z3IO+(`+wbvz_?e$zVec@6N!MICI55^{b?07W*4?>_SHG5Ylv*Dj;iY!R_Hr*f8EPZTurF(pm9rk+`EMO$znEK1%kiRCKn;UoNiXH{9T1Abbp zSbfr3{bHF`X>(txKM(v!`)@e+A6)ldR%e9fZ-nT09>3?ehPAvhTY9n@4}Yh6c;~?8|Mo48=^H!R zgw%=@o7(iAQJ{QpX>ud6P!9EKPfF+0i#rQ4_s}N$c>gtEu|J-K9X>{R^yK>7_}SRj zGI5(arPReX==QFZpQwh1-U8=8+X1tEl@y6+oZ&>QFY&~>)%?T3jjPd35u%uI_3nHK=pLLq`uJ8yC-hMs%gO)``x33Z**_A zU~kXO_p=a~z@b~s>5JIS=a6*RDI|Zp#p4!WAA@LQltIW6% z;Q@C7=$$Dd#H8w}pl)BnC`yCBJ2MFK^gQ8MF{B-y8mw~;|4pjf^<#}gZT38(VS;Sy z@aUg-$p3C&=TdIv=WzH93WTee?7)!lRIVH!bcEG?cpd%f4q*u-X1nPsXTkk?BbHxg z78p~%H&h2z}a>}6`5{!*J;8%m9@*J*pD_Xt_6z;(w z1B_9~AHDeaP&N#Q;ID?=Rqy(I{PxmT$86u$+U;ju z>%XkO_1^9YJ|v>F8eLr~V4^i>lnLmvhB*)92Ga9^*946eq1_5k`SUoLTJ&dD57I26 zZ3uJmUIBdRe1Mab9}TP+AS)c_wn7hYs}pRnmM%xV4O)e*AK zFp*L0Ub2+0^zhHvz;l-n@-)?sJe0Wd4Cn(Yq{9Hk8Yt65PiiV?e8TT#ewOV~y-u@4 z0JGM+&QwBtJ6HYJvqF_H&!Y9Dh92}y)Q?!}xt|E@K~;BvD_&gLe&3%m>1xUBAoeK5u63ooBj7W~?z7GJ zlRs;|{TZY;eEE=`)PPayBAX3@1zbB@Yz>fHZ$ox{cmtXw*};N$!KL+K z8q-n#oyYD)Hhs>1_3@$kJGpHN=oYy=v?i@5c5QzmT;n)9ttTL{A?%}vJQ7-%oiIf$ z_O_xOh<=-XHLLdS{C2Fw4PO64is6tj?a_`eFOT7pU!|CDLsafo;4Nb?ZCn2|!UJRg zsMrz#NI{87lRc$PB0aiED|fr3i8|#p_D2o~Dx0})WRys%31ydPf-O8Q=t5~?b{H>` z9(*QEe0BlxA%U2&d>`NK0Uk=cWkE3N0Zer0;j>$Ero(TbD8S+<`$&TpnaRzN7(|OR z4{Sm<>Mi-?=y*&Vidrro4L*$WwbuK4^Zchlr1-v76Vt+`vUsil&zym*!0pU26EAl* zNa8T6cJV_(4f%*o{Vxll3jia)@`F;=>9YI4SZR?b)PAfeu^Ac0_M05xdFeM1+{sZe zqDnu+6{2Ui?nJ1ZU?uxItp00+eBx8E&r%6uFmZ{gJ?9|%@b)Sohp>_>w)xh0#EU9* z;rWEO6cs}^aK%G98`glJIMk`Dd|_HG73c+rX_B`GIR6&TGVB>-2CEw9Vz`v;SuvG5 zI|K4ymo)DkzS6Y|phXcPd;rnug2W+aH-_m_z95ED1)TYxjoE9mPaJH0{pY zp7m{3&?#uN?xFN6KrWV(=H}PdsXlesGz?~LE6&H68j|@1|#jo)JaqwQ>>V7h6$qz-t z@ubls+f}4}n%Y&whr}I$ihHh<76}(l0r?Zv26n9%&tr=O-20Abd~ypS6OM)e%_GL+ zV+9TC%f!z43(GW?;~l&zr0ThIeue>@&5o)IM|;lnuDJ<$jrq3l(N>t{VI^;e7k+iO zuY&L8Ms{%G5X7@6W=0}l@-;x}>oud&De!}Ma8I~9I6bXhMI0DryT7D#Ep4JN2JhPf zc*f(k-0=MqxBs}_J-&ggqA)kGra!}QdJ%7H$M#DjWSj5P{EALu8tD)5T?37u^mQTG znQviFXI5{92{nW(`##fLIHgYAFq$?5v$f>@^uPt^(_9NPv%AB?;vN{kD1}iCx=n0u z9c{a*jLSGI1|1oF_u36-I9eYM{>>#xiEt@E=DZs;*`m#~7In3YT{$iDeH!4>+kZ9> z5ldcbrf0}x%VoNRu`x#xvFkN>s#&q{{&F3G47pl2U5`zD*UmlR58h@y;{sGPxCXQ`AjN%@Wd6yU;b9n6gd5nsFGA#w=Rym^S`2T@(uJjA^SL-TDUBWTf?IjN zhkGwzrX}r2dH;lL`|wD~+^bd><@v}+??lg4VPsdJSeqhyu+fVuDDkP0V{Wf-rK2f% z34CbgSMgsoy5L2w}>ALOa|hnZ?6R1Efw)GmNt!aC7EPOdno(Utb%KWNp%L48k*VHBI$0FPo1K5bcDW$avtSfsxwv%Jyw$b1M_`kthRXiWE19uLG$3+FW^tX??9L!z>{LIWr_=|D;s_nQCNk z!OZT_zH10WqSP^dFe03J^$5ZYnQ1>4rX{-POq$2mXn9%m-Qsnahl~ESr0aywU|pZ{ zyQ5mb!OiT`gMLO~qc5B*?@{%M@}bs*5JxQ{?X?u{$E!7_ZDCX4B8_%&W+}R1*7Fb& zo}jyfKzcFe)v3fvXNvK%+RA7V{Y=B>orB#o6*ZpLsNf~PO z#M~(C-$A-OF+7hOuB~~}Mel4k(1uRf$X_8R+=k?r`nFGI^(w68euXEQU;hmcyEQO6 zt~}FOClU59%YN|e7s|?7azA>Yovy(r3`W718?0I0J;2g9N0ZkOHQ_U?3D z%Q+v5)OUWH;$c;Z zAdT7}nZ&7u{E8wEcc^i8?^xl5`H+?-@b?{yjeTGCCs_>2Zrc+K2n74mhdOq>(}G?1 z`g2|uo?-cxb23?1UG;%+W%rexOn%V}75RiIU#oKOnFNKVpfgPqspQntgT7wPX21kt zePYo1ITb^F83>Tpc7u~L%k~k0`ls4Sh{9A-x#px3z@Tkq7Q;&4FpuMoh|DF8qIw zd8^`+IzLYr0WV3Q{GE)C_+1LX9^1U6TI~g5v*(PdyuT;Fp)jo)#NCvYd3hP9c~|}- zAM}2{g7Nc?8$id^u+n@HsT&WN)R4QuVk&mt!|kiBpG#lH3pxW74&VE|jE5GRg-kxe zB2Fe1g>xRhavK{1(neJX{MT^cK|gnfPkqX8^DN(Ic>0{w4CN zxG^gG4sUnDJ4`Lc2gyB|oUT$rwMj~4<`SA3%pZx3y5EPFAZi-+2fItN<~L^@6)uQf zi9ut2hNg*d4Syfs_=b=`DQH{fg~JG(sPfAEcQs>hQ%r;RiJ?%PvE+@+ppLd(hfiPa zr!eV!V(}G7KaSVCMyfU;<}03ls%Ub!``GA88C=s|17j7E zm2u%Ux$Lw4!hb0!1+w#qJP%uHv^<~_UA-K>IPl7Qd(Dm9D5T&&{!!!0c0tj94gcL| zecMQHEg-sDzNB~*guSWOeviA(8T;3+D75YqLDL>hrI~YcX;8%*;>uF;h2;Wd(~h7~ zfwMBDx`{u1#Z3p*tPX>R<}b-Hu`fw7cO0YksY6BBK~w@O9t3;TjqDt!ro~S?M^6ca1pn z4_Z9=Q<8TdQKUxdPT5gq**YSdm0z_SXti(#o`sioQ)#LncSa$CvM-YU8wksbAf8Br zFi9|om6pf?)*p}XZ^ImP(eHT&EG!mjA_FkeX^h10`Q*%u<;mudyR;TYQIbFi@Wlxc z=QR!D2{?1qLrjR3uFs^I!x+@rZo#=`E}>+jtyTN*#8u&a+rQZ?b2~OzVPr4`J`Q4l zEpc_G<3_low6wmQ$s8&K0-5rXcwuC8-F89_9T+^uXe(xsI&kbziiB)9!~rMIoxSa2 z6aOKHAlMih_)&xgX9O{W$RCyK`e*g1sd=v@XKJ-MinB>A^}d^HRJGTx&XE`u4iw3D z#u$h~k5x@TPODA(^x4V~U+FS^9BQ_Hd$?T_-^PMuP(i;(V!;nf&=(`s>ycuBAOB>R zj}Z{fSO@k;MAXWa&71V-(_)Z+feRj;LLlr?gD?Cf`tV`jepeeO_)%ZxqLokF5z=vL`#&_CqbSK^Bn*7 z(igSgsQKni;WaCMn48pU_dLx3B&bJt$;r2FA)1tuRTEX&N6z5%qe~k`s{7Sxx#5@06ra8Mxd_e zr}5F*x<5NGo5N~(EEthu*a-b>%sbzxM(Jo_zkf4e`k&Q_z&W08J<~haNIx&9*fY;C ze(pVR$N4XMx*JaT2e4{tX@wsK9R~Ow_0gng{PKve`SMHt*tL0sx~|TX4M|{3n>X00 zZ5(<|>^t$6$wf4~FetW%0FH%{!8Tx>03fPKW+yRmsQty_`^hQUxcO0m_1kmB{fiO8 zF?gB64!QG$S&fs&BNtO&l?6Acr@rp?L3z^Z4Uug9P#Sj71yPTyW55I350>r0+L^rW zIp*XtRmD+HzS+;%= zObM7aH8H7pu5+`P*4fQtIUy^>C?bI;V&i6L zAPDtv4kQlOD4(gHBj2&E z2&Q%6Fnm;F{8G%`hphBPYFEmL?WOraPjz0 zpFbB+C(#Q#Bx8=htL$0=FW;6KHNOtJk?I66Ez0_FA``BLS$AgQYu##ZnSJfPJQWPV z92Xwv6TbYBl<@1Km`h#j{9sjWc(-c^`6y72Dc6^}=Qz!l->F9a4WqGp-ev-i5Z_Gu zefm9NFJKK5IjDQJGsnK~gvqVLlz#W_7Rd>XIN^e%k++e*iInw+ZH!)Jnbdj+ExE+{+duOJ z}2#`%lZhXjtjyG6)$)6cfD$6iUro&pma> z%oxcAPX_YZf^$-qwOc^xj|#3xJ3_XT?@sKg(8*i>OtbDygvmeu1cwc|-{g27B&SV%?m z{+|6jK){Z$+-lkAE>B=lk9(i%q1;YNY(0}?(pv(aj^#M;MHnqzn_BUxIT_i$gaZRJ zYQdNj`LJeXz^i`XYQN3B=pkq50T}Y}YOkvyNSv}mH}<#b3Sm%8L*|-*l|x73e5bsb zUncfkhaHHIyhT5P{X$|Eurvkri&>Guhm0KTcxKD4(DFa4xape2@imw3!0Y_eXHkuMXtSxpbHd*#ZzF!=CI?mGdeOR`CB-k6& zy?wf;Yn;D7nv?^#=tdQB3aphxx>*@4&@(b^gszYGaR#0m&yK`;w9Cr* zYy=G4!paA7rv+4p(qTyfJ>^vnD{Q9%AO@R<*VBD3-uz;;ZvG6Eov%EUyP16vxTV$4 z27mlyBAZ{`@8iL~q7{v#*)(4fT+pot_TpBDbuDguGx9$pMNG_l~vH!)kEnd6cN)vPm4RHeu~st5{m!}p?D?I)UpcUoo_9`-#QYeh5m z-5X@O?Rp>kA3usv)tE^L}MOenKO8SJ%lT2n)BAD-!@!mTqkJ=G!J;kzEFI%N%X zq8gB6en4r5aF>70k!b>A0Dhp*5zCf=d2KR1`MkN1M9)8i4&zX34`kLNT0g)R#r@_v zI+wr1psTRGiXMM6sLzDcH1Ooq@aFR>UK+y!oobhgoD#n?b&C*;L_aCr{*PS7P3q4( z2}ER@>gw|T2J0RzqI6Fk6}v4FY+_^K6CBh^I^`SY?mSrzOev)0q89CWl$Cg(p8EEV zHJ-zQCul*$;~Zz>;`43Lg!!aYLYP+@La=R%Zk^|M!K?n*ejk9soCVwY@2`lZ0FC;E zSbi_)1n^41XhcC-7I3{2c2byG?Q@68qf7ex511+ABv*&>{zQLcaA;PwPN(UIj1^Oc z=Ki>JPSmxb-RTJlpZ1b@T(b_#lp|0aAe(eWl?ry*|> z=##IquRNpgcJEin?VZKbOus$c7cy)$%x=6plR<7xbi#bg{e%_I8x`bdaP>S_K+Nec zpRIP5&fcD-&j&xPzJOeOwJ0Ubv#dFo)3Wm`R#DygF+QxTVnf%^ufeHNNA3{DBWZN`!c9-S*>A_S~<*(GVmrqmj4bqY5t7 z!GqxY^>`A*;`@%leA!V%PCa?tO0cS!OmeHC1RjT4xKHM40dG3o>;{s4lLOIwwo%km>mk#M!WGLD1DWDNeDd$kV%r&glLki0OR^gJ zv3%cZu-j_l*Cya0U5VUN>1;iVJV%%PQvDYAc&LNyd_ZoAp3uDQOyWtJ_Oj7}8}guV zzL{&q=!|oxsp>2Z#nHHQm?OFTdV>c1K-<$$$g`F|IeuJdim@a3t!GKDKh4PX*T&1{ zcquCt?}wd`z_f|zo#C{G&{DONh{)5jq_%m4_!xNm4I|QB$e1(mT1`9IW7+fJ?wTPh zidf{tRB6~6WmJP ze==(0@hhMMtu|vRGT%{SP70}37*p%U1TUENZv$Gd&T3}4%D&9gMBU4(1_?S?%P-3W zI-lcMt#96isp~9EYFuYrzv6G3L9+`*N&AW+)H46y3iAe10Inod0GGf0A$N`cO(V0;LV;U!gd_(I>NdjGVCDzZgYkd_ z%}`n2K$^MB3^RM3P{fDhFCa1c_P}W;;qJl3;qxKV_UH$(RzyLr?MSuBnvb*Da8|-N zP-f(nsq{NHiXh$&ig@n9Nnq-vH;`7L1o!b3Yze_hzW`Gtcl61q76L`=3npD?rwLQ{&RykCFk7dAf+ z^nBScfR{^Cj#uYrx!vB)eHek-)pxs5TM!zEFulTxKh@QhYW@7N=0U?8`)F5eR7kM; zLcdYix6gi(g`1{8S9RrN7W90*ThIkplb-cJHU&h|bydKqP45FU6uWY5wb{1wV%ji? zxlY`lq22Sow5H_s&k^EVFx~QyHG)}Zr*&eD3#z z?)ib3o@A_k+nUa|tSr3j0E!a64}RXmwv`$N(&wS%9$Gdb95v0AoTOGU!ZENO(++Tt z)IhnmjN|Rk4NlUZwh$uCoFKMwUt~uJ!;^|^q7iP_=M5h1bJ__H;OUkmQ|cWOZFpxB ze?svBnlUy6LMYaIfqCDHbSk^!ih^ESQ8`*OGlu2WZlY4bPD$*lDV-{f#jdm)s9A>~ zzGd-K#d3Q1yKP58^J0!N)V0(U$@3lhu!EtKv-h(u^pZ5x&K^8Go&d45<9SC$+vJg( zS7)F7yUZi2wLA*6T*tw7Xl0>x{3n_1%o-^9nMv!-ALrlW+mk~r2e>9;`5jBhbd+hI zmcE)dS#D43V50s^R;aspfAPq`3O6X;$G`_>a|?3&ba4mGiAWT|U;y$41*7-BKm0{Q zxJj}83Eg-0=q9QvHt+w=vgozms1+z<$BzD-r6&#!S|0afzPY0%6TrUa?hhU6+`sLV z2kA%oxCA{5>fh+VQ4>>IkWA8MrFCx&t%k@A#aB@tt-KPFnVIVOEInf&qKNazW9)Lr z70(+S);}X;F8C|;`2B^tEq&0hr;`#eiEqK&61kf~TOIY}33NOjcUW{#YntcOi>_WR zYME(U>lLg$b0ZJ;Qz|^>6yUy-^^#ks>7#_)$zSZAwBhuXIwoB%*qWI%X`s$%Yfx%J zKlb#W@Bvj&F>wmT6pI#K=sQBjZ<$3 zxU9Qo?v;_Cb;4n8Qk7evRl7#a=Pje8YV&nmvd}p}rSfx>4Hn!P zb)bT&on3Ef?mh0Dfb3jL_dMv_AX!XITnyf7VmswloQSCH!OppO%$xVa!~r~%TK>T& zZWX)b1L&KI1oyJ;@`1I?r|>Q@L#ENtsF3W?XVLIPzpk+lRpk5SFWTO+^KdwNG;NyT z4!ZuhhSr^F>4e?7Ae^EBRvJ%bJ2P-O&p8}Um}&>SW_pN=g6X#ic*lTb6O5sA5q zEt!G?=*l~{C;T$a`xltnXz50`nVpQhrGvx4@s`zywiTk+^U_zo`SMxYK^2LUEvSd!!?$JQSwd}?9 z5GNQ;Zbfxr!PnYeb!jjev^zYY5g3l0aGCaX>n6oP_HzZH8u4Rm#Pta_`y&o@@s9GN zQDAz4)zw1HL1cp5>ZeZwr}tbqE-qo@8VBi+ut3`6Pf&#>rN+@*w93rZ!vQRF^+{M& zqg0Gp`FS;{_cu`TtDVVeka-n#8=b~qD~9?NU)4dIo;h(qTV}gUFa~G#4ZLW3cdumY zH!h(ja`fs&z)8O)XI8G#SvE~Y+JVM$kMn5(QC)TG+tEPbUAM<3b8iJ~vJMq5tHOP& zPqCeTN`1S2l{jHU5N;BkntOwXJZI~?TSH*6|1n+p9rwY9Sr*KK2vg5z$^S+FLAWrK zWcPzrL*=`6N5!k##JYKiGJi4GfYzbfa6kArSJ+hF#hS*A_BWw7UB}(oNhzltAf_gv zr^lD+3#{C8HPLuJHst--2&VUeHR|B6gMq0>a|!Quz{NceAhpo~lJB@1t!QFxc_h7-@2_Ax5aJNQ-y99R{4K9r} zZjI~o{oh$LYi6G3r5|cl_3Cp@SJl~jf8TFw&M#|5wk@3Y_b65?e^13U+&;b-Wf?bq zLBf=R*3C+|#SVqm-c#`6b!S04+g}mqj{m;XG;(5|++q!paT5ovhRL=5;9o^~WTog{ z_I|@Ck-3c}f3QFKW+Ayad6=S*5~a3H7E0Ft1OY=G#nCR`~-Tz`D9D0KD z@-k`s#?xF%EnAGIg#5p%{yxipON4CY*qa48+d9(+^gcfBl?e_^rcowjXy>@#il#e> zj=vCOy`1{r4Q^EbL3C%KL6ew2{_+R{J3hT>`T8bIgC-F7$61K7Eeh}_foJ=czbqd$ zsN?7|-X&mM?Ua#;pW53;iUa0wU@SXzl|3N0O;yrO8B;Fpk!+Jab%_|}^n9H24&z%E zMie~(&yzRP({$@GUR3^BS*nI3B1X>bY3taumovfWD^!cO6y)8T)dIW3z???RudD%d z;J56*EmGt1F#1PfT9Y9CZx0Yd{(_(_{RusB-VH0|yz6(9TmRHS8cdt|XlFgLat+rX zXY=MLXW~8Ai_1F@>OS`vfA3guoH@|$S@(O1D~bEwvkMPwBazsd z&@U>AZ!Mgu6c&H|A?>sk$0l<0t+QNKJqn3l|^pd#uc1$1lIIAFDVYcoP=;FP3^fV>Y~6C zUQ{P3hMZ^*9f)AzmE^kwzrm29%`tdhE^ zN)T}Be)Suo`qR00>r|0)2aEST6EE@?+w=DM#1liNXcThNK{MX`*i&J>=hFwo=zD1; zmQR(2{lU3ABH?k?9W#txjcBOT_M@=_S4&PW0pAJr96L!Hp$HOCZ|5WDpGgDBvR?*V z9rq0bPDxEYY1cUYNbIJ4?0TzeMBC89HgY}CjrXQt-OcjeO|JLj0au)9NJZp~;R&!p zbD_j8ck-*bbuwNNc%&?3dUq|3r;%-Rcl;-oD~-z(DD(AnaG~@y(k_0wCC)A(+D*ja z=@%m9&D_Pk@g1qBzU}q*F0~^MP*?)riUT5?b;}G8Nj*lqLX@P%# zJIzW{W%2G|(EVC(*rH-iGiA+uWyu0=83MZuw{?F=xgD2OJPuYJ z<1?T8x=kZV41i~WLA4fim)^ArD&1wRGQY_-s?xS9R>IpJ0TEDR&h>oRHWdQ}lb3Bv zyosN$tfKrT@&!a*lX43)e1lWZA|A2aYFUi{R{XeMDg1?(Ll>RI?#;&%Bhm@@M@u2~ zmu)XtvM~_{)0XJDRRhxVq>TEj6X#pWqzMnBox_uJU7pmd4euiy(%u_C`dFPDRQlTw zAwn?$Gedjsq~OlNcO@I})%26)m+0psJFFqnafHFlhgY5O$vB~$PfY{^Zk&HlNbGd-uuC#T`_2m)Yq}h*7q}iiOvOb*Z1v>jlU-G49c5N8iP^l|W z1Gr`!g@e{!67_mcYV8D&@i@Raty*9Wy#q5{WyZ^3KjUqf-GAw+j&hVrg7i!v`dVhxw-~JIQ4Wm z<>(jDTNtcRZA;b~z_~=lak%d7+}4_7Z6~X$MYFliM{mGYW_a-{dVTqUY(AQSv?$^zB0e~arY3E%YNj11{ zhbT%g`dWCNYx$?uI;eLoP^HGx#)>ZxYtj`k6tuus)+)IoR57Q1MYbMZzOk`dw*8FM zk(w2JnM(aAE8Q5s5w@oc$a_)@BS)MS{b2Nrl+iGts#mssT8PcEsmnD~xS0dbO?4Ea z(}_}lJ>R%uBl9aoU*8X@fUbx3HBU-~?Wr%3LpHJ_B;k*sFNR7T?jg6oGM)Fc?X4sI zF;DdHZ;k%NWrb39;o{r(?Z8Y#bRW}9-Uj-ku`NUQV!)nal;*Pt)*YKJWCkN($=gzU z2lw_(z59Pg!6&q7Tw~x*yJzbXk{XXMK;un_zN+lAPiYe!PBPVbh%RIIt=1g5M-OEZ zhiyQw@7V#Z3c56ZsSeMDGqRGs|w&2+1%36gvZ-a zvs4o6`iUa)@7GfE4aJqszmwz+F*~V}sjOiD2+LLn;+ZGN&U3WzeWBRJDvM8M?&F`m zC^f|cBh_mip4aA--2pJ=wxIIH_p?#m#oIZ3k#eiYLH+Zp_4Ou3+-BacG+-6CP680} zA==A>PN|mKn{xD%Fjn4I!(tzbjlYf0R~%-93611^}fO$9WOs z?lx%wvWJglrn$$y%5z3Rm&NyZe76)B5T?pf+T-BROI*0|=N{L%cTz<7e7W7->$y`X z`3t({?SYpWXW|PEF~!DGl$`Trh||-SkcE)f`UG-p$KoI~EYs6;Zb9dxN)f*i!(Ml6 z#|FC$*QnFo*0dp%8~;J&cV`}=I1%15(7w#!d5M+B!%LnE{X_Jk|{epQTbZVPrQ?%){$v@maAvZe!O~&$g zkel@P=ceJ3p9i+fd9uH<;+#hUdtQAH#0{>V894T~u3PqU45`!pcWa-A{m+*X?pIeK z?H%JXv~z3xLeDiWe165uGTAMR&_(BglkT-S9bCt-fAAgAhQz_JnZW3{}%Ex2P& z3v41@S_T#=Q$86zKO6L}M>_tNy6_|@_lEVJ+6(w8^24HUBDP2quC^41&GVPLG2FXb zx$EGiC`gpVw1hxcAj_3)zEH`#wlH|TW$7q>#G&Lx+3A({a_r)5ceFi5%XtK>I})Jk z^?v2n`@FCe)oG^DSN(GLbu%t5071+51>MoL)g$zOd9q$Y1mYY3JeWkBo!zv>WX93j z$4CehM5WhhH+%}Yu=hue=n6Q2HrLIDyTLkA*^Y7|j!rXi6#6?-Nv5UMmm~RsT5>2{ zKx6E1`rbZ^A@SEqme1VN%9B=J9$&3*S;xt{;|FiDF53hT? zg9uoWpl`flkU=NK6Z=r>sp?X`aNTIzM;t9ZLSBy05@IBBt#OsT#hHI-`zk&W=pPc{7 z%>Q49{*9;qAIGpm{=e7#|9VoagaDid7aPn*T(kI35+Vl?)2-9Z|1Fn=2mV6XmIMCh$!ir~`H1cgpXjzB z3#1t?nw;YQMk$GLv-u;V&i38-KXJk83p5rDG5?zp|1c3%(!>4V#_-Fu;FoRn^_|bU z7HRzVSD7km#6NEhGWp&W-`NZB^=8fw`abZPLVJP4l`Wu*)g$r0?+CI-vvTk6!VYJJ zLkOnuPf>oD{BL%9)#%9H0w*|THhN9_)Z%l|4F4c!Z&aMbn}8$>VZQOdvZC=adAS(U zH%g!XGZIcI>NuLNgO)d1auIkBr87ss6WA=+aL{M2v8VoLa6VT-x{@j&GS0 zK6;bcSwY^nP6mwAVZ^&%wR}lr8qX%^6#d}l{Pf;yKdTv$IF_fVq+}Xm%EQk;+n9yI zP%K3-ga@BEIDGOi(jlW0X~||&+zRkz?8IEZe%QVsXqitJY%#T&|ImoPOlS%cr-Ms; zsgR7WnCJ{2;j$?Bs5#!*IDDrWh|S6(gOj5wM2##h37A<}rnfw3#`~^fEbCk(zk|`< zJ>&EwM|uzy*6^;<=X_?EwzI!|*xX*7kW-ddUw|vnBsqwrJUj?6$pn7ihI^Ol#xN{CCi&Txn5MW3NS)kcbBV1htq*VXmuKmh#i^Jx;3SR49iz7=JyE z#fl(a=hKM_&#wQXV%Wxc?TSd?mlQ8b3}FZ?Dne-8u7yQC;79NMU&Y<9m{Jg&?vycx zGi$hn1K0J19ML$m3;CuwkvkPNxp18On$8?;Itg%Cj_b_Vnqz64Vw1$k9O5m5+GcuI zX5NWBPmGOeJnFF$T(=v!7r5C{zKpNjHSbuo3n6>5iyT*xpi^hZj!jN#KZZ(B&CSo7 zJzO1>ha7nL&L#iD94j?@8#}+>4Q2idEc zZDZeZvi&EwRV2D8ay3?FS&}8YgqW%cxxj3vHu#YY=qR{CDTitMPr^)#M@6E~PSu3dnm_(X!n)-sk~9+zS7U~i zW@zRmZV0r>#p94o`LbHX^DuRhX>yvK=>~&hxCtchxv})&R*7@$Pvvv&b2@Yf!E*I) z%e2Y0HUr*;TxEKdpk|xWe219kOCs{A+;19Vwd$*n1g{#x%nO$YWgg3~!@>B~umTpyi>vHsK zb`(PDdrVe0X~dt4bv?U3$1qcAD3FG;NvZ)l#|m!51+dJr>XETAX?1lR_q)o)PT%Ik zD>}L*%~AjplYC_EvGnZX;y?9EN)T&6aqqdhp|+u+WE_cvwl+N%7uVeV9X~~eW8R&~ zbaG)qZ7t5^gHLGddXl%YFP0VBJWgrLc1PbeCzLqWV3Ip4_0F>?T`1}{_>cFX;x!H$ zhMn+rV-DnLuT72KIyhUR{jZ>QKqYmu}+v<(;%E(sP(5%F> zPTl*0Ny!kzRKg~}+c^ra3={r_0)e66dMk^~Z?H?J!7HV4ip+4`LJemL8|J-O&&_BX zVj_)rDZ_h?RR=LYhrN)yu-5>DSO%g}ZW){3YjU5E#B1bnjmHUMM!M*Kr zHu`RThI%|VEp}wU10CF?j?D5;X_SZ($YocCs>yV-S<7xt7Exm`an9(Txi5+Yul#sM ziHbGr_>Zn;dafvMQZ?lJyxpHkgqXRWg4j$VfCTF*r$zWr>(N2PC>quPsW53izJfm2 zxihx8^x_V(?6V)Y>PC`lD7b#2?3C(##jvQzpy09ML%-SjnjTqjQR(C_UP1huD>7QE zoj*D0aYb|JK0x6sO|ekD3~b9Ye9>6p3%^X`v{JFGZ4BynC>b&FLCsR7tpMa-*lDx1 z+mHMuJBiPq>ke66c>m;Z%LYdr!OneeDn}-YeR^^VV!!I?t%9nm2JSAlQx-6z%CE1l z6$CIYN2KA80fSN(qrwhz-hH*S)Trn=ym#=}UPCS0f}p5s#Ect*#{k(W{Y+kTj|+U@ zQ3>nNRxKvFK7YJle>@Kkzs$)wWOKOfGswlbvZkc_5r5LZu+_2lUig|@Z!LzgF~iw5 zgPcwqZM5SmD_PXkrz<*-FvbW#Fy+X7!nczVy|}g|-XCX>v=&*P^M>9<^`W!3j z>6G(x;@05TnzCH&ik3dUJ=P;aZeLE85`6>K8{Wgj%b8DTrB4P1gG&UZd}8vH{j1J4 z0%!fKtQm>o{vIsjC3m-QCAG}Y_ervgoQ8 z0libfuJ3o{#6MojxK+A|ft{q4WJaE9J^Xfe4D8L{ty5tAN%JUwdy zCRJ%(?CcrJE*<>oGIzT8eOV;)Am@2bXNJ3M;44z?F)EG#z$qdJ_OXoY+oWtVK17(3xpdUL&JXz*#=St^Xo(*)fOeAs@oQX6g@TVsWQhJ*(;;Igx%;X2l~ zC|-=WgHW9az0>bIe;4f3c&E0uA3j7V^&@9iu6wtLj!H~~*yHdRhI>-&2FZ(>9C7c* z8P)p@@hX0xVWUIjwwja@7w=jgcdf57xTh4zR>316VD91JbSBky&4O!U3yuV#tlF@i zi>505X0x;PPV4t-KCWvYuTW{+!&|e{d2BvZw``&Al8-mcGPvA6T_BWOQV1&MYa*!Fs04YY>G9In*z zvFw%7)5I(%z4GyF_Yv^xX>fhwRhMmX?A0)ETAKt=e)t|VY8LRB>(F1cMG!NrCt{4b zc_jegb|pB@$JH!ur>ODzS8ARPd{L!(J{FMk+TP(uDd8v5G$EPrIMs+m&BrCIO>4$O zCq|iqi;&$+yYLgHGA`qMnqcfhf$>``^wsZkoc}xpS#@d05n6tVG0(Xxx?B1g#?x`i zV*{X9El4pDzU9T~vaZ;B^k*EYHStrIr3v0p*|pN)_~w>TH;o0C)AlIg;$MHGiaIic2y;%|>t2~6 z2rpA@K{sPRY>+ydJ0}~{_j{xXY`6%uJOA%mJIO@jYJ)%v}dnWTz{+Ib7C1TSRBQQ~Vj?a53yW-mR}O zo1o71#yd$x!o{+S%fjzk3kB9$8^o*jRc9Y%fM3;pYj|8nyT{352frsF8<~{2t!mC0 zt1b^LLk~?T{FVLg&u$9rOC~b?u0|EC_a4saSG=cF^#+vg5cK9~{lo2U*^%rSUL0Y{ zkBH;sJAGJe-fI8;+nRyaFJ#Eec7Ax*eOV#COb`t*4UCL&QboFC4YeW?Dmc3*R@nWt zmSBP`3@%_ahlmIQ zFE6j{x_Yc40Y8o8(Ie9D#Eq#b&}4c_O4vON%JN$~Jh!%~35h)w_eFa&kn2R{H^)0r zz3TNdf7b;Dt6`fa#+#U48*KxF=)}YiewQQk*9C0j0Fuz4pd+5@KAo&n`S!uDKRds- zuB+X@5Y6iw@lUc2_YNo1YWhA4Oi6&JNWmU;^2eG`L+%ok5qg@x^DTLWLNq*6_QFGy z&E!wbA^T+7Fd0iyx3mm94YPxzNf}L;VmgryX*K%03+E`(iK;n%PLi6H?T~3($#2kx z%_AqVPn}--zJ^3$;2fFPit4gYB=bF7KkkSi_ToROet6@OrD@tl1YN3h)=MjMS`~qx zwx$IB0r2RA!p&!FF)^d9-%qYgZG4niRAjV&1}(1>G}Of}=YDg29a#%CXvZWRAL*IF zt&dNbdA*sJ+qE69q0JJY$8a4gr2?!4htpG%-0iZb-ml+qBcWDzXBhq)oc(E)ga>C5 zKP4Z}5rc#}Z1~76qkq0?FWde#XVt2nl`Szj>XPAQ_$fy8S;D4qEQ;-sMD2jqJXE-2 zu2#s?vZQ>~b!NQWl{n5emGbD8Cx2cpyE?#aCl&<_`DYg1+NkJA?JWRy)HPYEu*xH-h4PwleiIYTmkxf*m@Zx+4ikI6<@z~9^KA}KfN5h<*~stJPnbZd z(X7{r<{Co+RDMlWNx+)-=e{iUzJ9~n9pCqt3UN-Dfo$CenYb6TH#JiM2Ocb38g?LS zYjHYv(PM3+6hZ+_)oca=jt_=1cTJ!d&P*jZ;!v*Y2W1$PdpG6e_LNNnjpw3QSzWym za86c2=9LiL>I$W1t6DSKgxuo*yX7YWf^ONj-kyn+#;S!f^n%PF;fHa`I+^ZlHv+%!X|x8+o6u zFKiH(PK2PI1X-=8Cm$~l z1hA!O8fh$JA)ifV=pJj;-)}K%5Z6EYZ zO9WsZ{B)oA7bh%f>q|w+RXrK55bK1M0{FZ9J*ZSjGQ-uq`FP)D4~%w3WX=OuJ%pR1 zPOj;E&tSok9n_*=*o3{g8>BQgv`qMeu6k~12jna};x<$1$*dt|Jlt}eEG5`6$LKrL zfCnnmup<9<(i(fHmf*3Z|HN*u@=ZHu^cgFAf12rtTb#cDSe=9TigCCG_sJR;~z#)}ey+a8u3=WFjJT&I-^}d(Y4E%K>zI(DKT>F9NsdXwvjsK zVRAcZR)+>{90-V?^o1vm@9R63Gsv4!*^AA)-KPO??=6_ZLWGy&PIsT!f0B8B_@8}y(N#&ud9}rHSefMKW?yc_q48w&?qMWQ(QjoxkR=_9(mOav zKb8?0Pd+yA)J=vKt9YLeh8deU>;JhRwRaSFb!ua-6?$>4-#0bQjJQ!QInv#~7XTj~ zP_%Vw2Sf4;JMQ+}7Yt=5B0bKWr>Xe)u_yzdYTNk57PKU`AcW!u5!dust}k1Hz4vss zVxv0Uc~4?=H2CQR+|MeFtXcgLTP6c2yDkXCt~JQ+D%J@Vh1!F`kw7_(eYa_qX+R<)YLO0kF*0GtlP)I zm4|xOrSC;!$8cU_N*Gp*C=M&6!kn8Zz4QZ(qd&K@xDnMjDF`)^Cp~etz?XkZJ&6CM*YjB1K=}DF5*f30+i((F2Ai#)k>P|;RpFk-^c9_#k zrAu^(Gh*F?wM9b(Jlzt=up~oOg#W9&L1BbR!skNZ(6=!)O1o|HbRLipw1(}yZq#!j zAtN%dAzyE4cCj^(#^;V&qLdS@-Ho*(>O(3j1n_OE`@W*DGwzNT6F%|_9lFle5QZ+o z*AR<;e6sB@eHlS%b7Qe%`Sl|U4MHrQaLdl4UItEyl_U34YxH@I%cS|V-$2l9qz^7u zii;FDH8Cd=CrM?B&uu`ZTR$<;*?NT`q0J#rsMGHh)bdB%kcIx7Z*r&s3w$>3=G6S5 za0XSuq(r5v-j2mxA%pWwO4;y-9o+B$U{ zcuS!a%ZeMZe@;xATHTcRF4P{brpC4h*$rb7?z^X1K9xSAqzL=tv^vDpjafll#m1`F zzzC`P2*8rpMk6`0)$*%52S5J}?S<}k4BF(cX?SF0AC};;>ePJl7b9u+JPRK>k#Vj3 z(SO363t%=w@ei?2vTk3`1dcm{`7l-(IPGuqB{4wn*>Y3aQ98p3G+y5^?S%*;;C z{&<xw3`T1u$Em6twYmdCE7~lt(RlZ~N}#4SV(* zjBph`l+q}dj67&0s_%Ph{v{QyI4s>89s$y9IaL)nQ&1-)w_p4s?JL*kEB=rB_CeW~ z!%G@gkdAZ)^Pamh#_{3aYRN}NT|E;zeOoz{QZlR4LAkZjAn1wK4f(v`Xl&_RO_YUd26x^3~u=RCHxl z6C##(f`miv<*Zwan>Yo5viy*|Id#Q24EtJedxoQ$<2{|AcJz3y$uS4ZUbM27|FQ;s z(X16RTxjZ1{@xdpzhHg7s6-uNl2_N)G@5^i)EJ9=n?&p&wkQs2irgw~zJ5E9O1CpK zP`YF0CO%XKL;B#6#XMeT=BkV9_f+>KB{iT(l^T26ZMa9!0KT#Az4(|>cQJvXLMhBZ z{t-bGE{FJgDPy-d`@=9|ZPYh;BXOx=RE$8j?){MmFNi7vf6@|_&DMIH373pW97DzG zZBM+dfY;0cJob$U^wWuwsZ*SnTI)Rdc!L*9+KoIiGUr_^GvlzJzFi_)0Y=X3QH`sV z{Fat`Ld1_G8#0?dz;(0wlkkgOo>N4ozSVlftrb5@-LQ!rUKX^hG(V z?VmH@!o}$a2g73%1EKG6Illd6-BD*~EhzYm!EpUKB6VZu66gT$1`;-*aL>GoiXg)9 zTf3|S-hshxNRDIoTOH2u?GyuNa4ghCHr(pF(5axg>c{puIr;JRkYv?^)tm?Bxm5ds zoaUGCz2&}y%ih6nju7*GzrLuS905-PUw1BkF4EBraHx}=JzSaJF@cK+@Mf=l0|P|E zMNlT>%dCMdQ8|$_0y20+cr8id**G)9ext9euiGrC8wE_+X|mrVVxe7RHLj>#d~)YXWr7#&3>XqZ$B=xJmV3qT zKp14&YI*$%MpL$j$xLZL?+=NINj09g4n+HcdV(<@@I!EZjQ5j zYm&VO-kSk?%_;L0uYVrM>`IYV+0xX3dfrb90^i~lt~HRBwwdreeVTTM!>z__r7Zb= zDdmRzp49!3Ac!bO_c*WOUB$tTOyi1nzTTudAGQCf_wdN5_daA>en4amVWIFzgd{gh z)WGv1zyPy=nyEDXq5Aq&VDesPJ#{RuypT~$=4978!|7$~YHPz=pYmAM{7)eeSV~X| zddSwT?ZS*OpxXU9dOp_Kmcg7QAjIV-I$-%JsU2ULqRo-I&q2aAQC*qoOY&E(DAt(a zTB-$8b=SZ){|3tJEWZf2&IUF;wv!#{|A`2!x{(%8OtNe^?9cY?8rg0N7OG z1!dBNGR(YzBc@`BQ>Yc9q1b5Dk=EGWavn+bo)zX4?+I2xE_PHaMdh47sva|(L4OMg zBI?wvxTZ*KeWQk42P&7=zbDh;hC^v-(wP^-3B(jY3B)OsHmt!7Vk_~h&VHUzXn?LS zG5&KuTKyh|pV(IyG1a8U`|x#>8Of~%g6p|Cye&}&l^YA){62)o)s;P#3oBvp5l83e z??@A1b@AT>Z+A~mdRQ$kZvH`Xn%m#;Z^x}(l-qmuwhiqGkEZcwl)LZ!ZVG2M_v2bo z@$yPzoa{h~gguVG=bpxe^*ucJkO?^b1IJo;EAB!GK@i@UIZm~j_<6%DbRM$bWZi26 z&Z?U{c~=UQqDZ>M8q1U03<$mpfiIMpj(()>zI-&p@b|iEV`1K8g`~ebZ;5JdHG0Re zB{?b+#-gj;Slcbc#*M1V2@ij4_)PsSpdk1(VG}WMF=bc# zZfc$;v_Y3-WjYf)Fgy$hZqBDL`eL{vs2Lz60YnZNCAD77l3otKb6U2vQJbNT7)+Qw>f5@s`#3>>Po?uMH&J*}n z#u!&5UI4>S5jUTT;6x;rYocuug~Ue8TSys(=ue!LpJtD7F3is{aZNS7mHi;IdubLW z#N%U~yN-IL`S)thboXiU?H-)>AD@_5fHAN7Ddz-Pq8taAPN_QrEUo;rZ;F^o2t$bTz! z3kmd58FWn4cjE}zEvO`LU0X3JbTxl;zg#1ByiN*pXlj|brIos&e3Aw8^?^d_>rl_^ zSHCM~iWLe~{6p`HdXxN(1+_kY2>kn9evslB7@zgr$@_S4!Wn zgPEHRQ{~)bjn{AV5h8ITe<Ec1v~R+b5x zcqeSQe&8Xgddp2UQho@r9E~VUWM$lox08-s3y0u&y(yEVpzM`rLZK|4P-Rrl4BCz_ z{kGLoc(!V!?@pz_zPyfb7p9VS*vqkiX27SDwe8Z=cZs{^fo)U{n<+ac2bKM~uit|d z!P`1<&Y6ij*b0@PQ$~j2mYPFC57NXOn16D)CbujT%hr*fo!y}aj0X0Y&&#;Jig$j` zKXNs=*sxCD6bc_hSh%q0tGI&L+clpbvAm2sWx+V36%>USkl`DQU6-L1Vinx=$!Fbl zife-tMBvYI+J$g=8fuvP0zV?CTUYwpE8GQhGym$z#nDXt1A9(t#oyVxz&T38Yx&N@ zp@7eSqmew-Vv>)6RR-QEve`%7nb~()9!WsH zxPv*8?C|PpNqF1Q{zj~%0~x6JZhvA7?`L0@MfL|Twi0pH5Y8Ge1EUjhdxT>0mF}Sr zILZ-Z29lBRux&rWdNjPFaXt<&4wucH7o|;qu7D*VjzTn z1fadr79u^Lyb3x0EV5fIs1#1H=Bc_>*sTVnS1-M3m{rkO*Q8PIy)= z_x=TlTPeJyy$iJwKP8R3%Up1eFZAAPTYN`VkT{)&A>Z1fq;ht(X1TC; z*poGd9Bs!ZxSJ*C<2?Q<(r3NHeL*`J@TmrWN82%d%J~-u zH)Bb`RvGCdvpeW^R#DqO!}Pi+HW0c^)Bse1{tu|0qh$`eZDJY71x~Fho&s~j?<(el zLmqF$Rj(P*N{{o$G#sAp9(9RCW`ZGoN@)V?!CJ5O+TJl^&C^irUFe(!;lHgfB`jrR zR@;K1zXER8Zn3qm9l(c)Ig;Rh@Ib*^-!JMdXpaa$57>P=5B+Z3+yuQ2#_gsk5_*Lzs>DDc^SymS{{-QCG6dU5(aa z2z9~5cLa4p%R(jvw$U4>NWf_0EY78+r4>(vTUR>|8IWz=JIEP47a;MW6l;aa`BF~; z0?j+}>JUA)v(`5KVvctB49{GC()joTvCJduK(2?8Sxnfb8}&x#=FX{RpknXSnkw94 zh%LcacTfoCO>^?zeh67%R6$cHb@Sx{Dl2OmfI6=JAy08`;uNtEF84?R582=SGZ+|u z`KHz1rdWsA^) zWnJ==`h`oo6FaAF-$2R0iI09#j5JBrP{L!cbL8FM6Y6A}19Zq{IG;XwW@I#|52^m*HU3+O6t{rbaKll$K@O$1rH0 zgIhDREF<^QM?ds9*4@^fLf2j{GAv-Z+pNPEi=0dI6b9mdAGKMeaCs#4l{!yj*b@h@ zFpiz=CzYT08Zs89Go-5)&{BC(6VP^fuI z#c&8%NzD*-!YAfGbvq5=bx2;g<8*b)@X;8;*sl0ik?_lIaNqQ#kLq)h(w#+|VwE1; zfl16n-*Hb&>@as8x@3J2cPkI5AqnQ_iF0KiEs^PZY>`*wPxLPv>dKy&sudUhLq7f@ zeldtdOX^>HaN-cWR@Ao`?8Y@d6AzV>aL`NC3#H{9QNk#Tdq8};;VZ!%%Vx!7MZ)l) z8TL*^C!>J3WGgjfXK-&Yv>kv7y6%}QH{txH1HC7lQ>FCbnDSajy{zV9bNJ6AR3QAvR zW!eFgw@=y4_3VD+KGu6#;n z>WYWu%NR8u7WZ-&1cB$T=0`!AFUmnR+Y?YzStkWwONJ! zoz9@|ms|^Zu)XYp4oTdgxEYgw`GV)Gk(@S3*oz-aIyk%`AM6oi(_@9G!x)J~5`-dR ztSc8O%K}>w3P+>K*`d#X-{JZKrKrkXVh>ijd}0n=S(Y> zYN=-OwcS15jv}Rgu~i+~6HYF@{PYJrY!s^nl>InQ=u^0(s8JnoWbySAyc!?)CUF0;cu^9OfO)Sz@Wln}=q<&u* zCmI}U_bb#lgKPEF<$jMZZ_U#^|wuOW|6xlaq=Zu={forsRjN|uRCNCZA_GrE?^&+2T zPi)%H72F%^W_5Vx-^r>_HlekU6GvY`zSS&(n~<72ugFCAQ%pvwpApk-IA%o&d|sFX zv9(qQFBk~|kk)gz!&bs{GM#H6R(X$q)yXauaVS%Uyi2o!{U3S3hcth#*E=-!OrfzS zSByUUI#0WooPV6b0RAgCFyE+Z=9s6c)xewbu`*Fw)`l2k1=kypgBxUxJa=o}{j8u@ zxAgQPG?BAB*7maP0vxvhvid?jZ_?|XtWT{HIN6>YxAX>Ny{cKqKiMCuF& z5@lncRGyE36t)R+B`SE;pC3SNa1274SZ{PhmCsXBq3;S4fPcm#cZ_Wx#|&)Q07tOWt4EA+r9#PGz_f zFq$@s;&*^rjAv7u)7E}0AT|jU*HJnX;*+BqcNFo4U3QJS;2=Ik5d;SUhKl|uNf#2+ zvt=G8dNV0vN?Q^;tc^xnOs6{+-)(V7c40-(pd+>0+CIu+n}By&IG^a|21zF63YZ=3 zWg@k-o1-npw4)ouAS5Njvy4%YaSm7KRakAYD9PXiHXEwtl~ee#WT+?0gXJ)=!8ou% z6|UhsF9&qwvbx3s#QVN+BC!<0iYY!1Nrxa}VbNkF_D{kxF{}9~o~w&@u_V3dP((+x zaI0eGe4f875n?Oj9S;Cdt*h+J#|L56$;rt1i7g@o)F^U`&GU{7;DVa6G8-HgnJhOT zdF9n#h1dsEt&{6EA5uA9swegKz8|fK4AZP%3LQl~tfB2igUP9Rk7aY(tfv^?}HBhonvZsHkn zO=&h{eF-Pgw7W+svpDxIfPJJ#9o@FQGx8=Lj3Y(7R{&u{S+GD0#*pLS-?KfT)bBPyf;vW6>>&7+3vG@w2a_~8kC)?B}v`AReT<$lga1)}10jsSLmC2V0%Ch-mt+gp*0mll6`|3r(c+bJqeSkox zb@y>Cck(|ZiWAkUkQ&5`t4xOuSQ*wt4#yw{ePYY?rc4{&o6-;^5p*fiTRfCIALGl>4k;yEYBi5oZu;6z=-4%1+54AV zREwd;>UwLysv->WKCQ547Ts>G4a4Vfr!K;%7t*lXp&00%Y{^i%?5v=`)wr^JMv^T( z%P2@sBcsQ*IMojj1;xslVO1IJr2>S=j1R-!H_qC-Vz>|&Tn+`}N0nHxeAN&JI&aZ( zg$XyY8EjmRE`9YKV`Q@lR8iGJI`Dd#Jm`gPw9L zE#1i7@2t)!@$Ik!)*Ll!wjM3prDN0z%#pUj!~r#zB2)EBSpwqT52q{5#!FGMW;??l zSOq;Jmwz{vAko`ugk-UYeEPnX#0o4@6CTjmuiU67|K{n?(=BEgk&?NvZJg^D`fB$= zB+QKYG3Dk$LxdklgUk>^@%wUi@7cH3X2YSVDDh;dX~Luz&>{$S8q9m#@;D52?JDn( zo~?tW*ne>Jp>7gB<|4a@dOcE`@mRIOCN zn!!wcu(VisHy2Yk;}}9fhep_1gb3q!-DY$daheFb@=2e6)k(yvbslKjjag|tk~Kx@|E&BTdbGPTBC`zQ8Zr8u1_d{-(}&s zB<16H8Y>3nvSwl;VA*z(ImVd-8jW}re|IB+Z_lSPO2i4lcx;$Nxbwu~wjoW&g>LFi zz0z_FtatdBCrhMCC$dnMhG8B_HWA;K#gHRh^8WzEKsvt& zn2+)niamp5qg-<%Z(v-tl1#omMTso z+%GsD8(T1LN;2|`de(7ls1Ks9(iicD9jb6#v0%jpIg6#yxbyp!XHL4^+NA@|LoW{1 zH^Z&+2sN z3ozoOGhs>1)Gp8wZ`EE@@7fGYN*cV}c}XC%5DLTD%z2 z;xLNmo`bYuBhgZG2pgZfPd$I#u20Z#c&}RVzkOPPj_~T})!Wu1#Q82!d5!Zf*Mr^` zn5jG@nG9;t9?lm$WReY5Jsa#?T>8;bYG`OgSy>sv?CG2EI*RU#%5mnfVx(r}Y8yL} zSuh-R2g~8EtyJ?mp0M~UD4jX4OQ(fB>$be}1~&ZbW#s|V6XBHM;r$r}#i-b|g`$+| zc%Yl^%3o^vvA38Gh0kFxz9qFiOYz@~zmh*M;P~ zQjDFw5Su^Q1G6E7QTayd1cgvm6;dxMj8u=g4(^5_;H1-0z1COH2Y&I$FOL|y_iVcb zSt$u@N4tTC(Q!RJA}jtpCi|W<{x$?oGo-`+lkxi=uXw+i8{8DX@*sZT2zDQ+BHvdb)3}1D2k9E=8XX zB_m6)Zr!?W+jgF6S^>8MiF)YPD{zD|jHe)gyxBs>(CO>~c`JS0EKuJT8a z@(=$_CcDU*s!-*&1oMMZ+R4i zNgq@z-$&u;%vdN)wivKzN`_kCsWVAdL!{hOl=4u07C=uK?@%Hm3#L)lY;#dR%b-M4 z-k%*hYHI71fSF`AVC5(E@am}#){}k;#kbuUQmgy3U>OTff460S3oe|K)3!h}@52J> z7`oP+v1wh7i3dL`d)AH}mW(llNs+!IJ>v&E8r41LrMK4+OjfE%dDaHPbngDzihV^y z(;)}vKoL!a2)z(Zx$3ld8erCiuw=$awdg}n;L4T7u1pHs_g6t@OO6;{@nECIRfCf! zWZ;G`jmE68nX2O6xUCA|L>Oc&#JQ;>NfmYyJ;(H16Xq0JF_*&ZVOE?n+=kionOB|V zw&MK*9%>kjD9&s5=H!K+w(M)b>;fws7Bc9m@}5PXXVURgbIq8NZNczVJK)^#E?cucUn1M{z3_&Oh#E6z1pQ%U}MI zTJd@&rN_*fCr}4z6jD=CkwQkRJtakb<{`s8T#BDXiAWTcJ9q9>d8fN!zfnw7uBxl6 z(9)<)FVNq6kA+Va^s9NUhfkc*7U!|>kT#RWf`i*W!NhrIWAsT2;^vv%>)ydv9ye$CHnRf5CpvxW|T!&H{RFKY7$|SHI>IQzXSlj49VP=Z9r5!Hm6|NR| z0`y#cX^XggP@Bp_5?Ra{Y&gwY)O0C*5PW0cIxpE`M%Cd%NOz=DTam5(a%3v2s#M!B zZg?st6+4u88f*>YaGe)p$Bb3ekMsogFkQ2D4J^racm~AHRKw#&hAxb=9I3E%(;gg2 zG-Wa=oq68VCN5`*uBW~Tu&~H=fO@f~#h?04Wr<%b^C*VA+-~y@i*#(WL_|}nKe!CC zoyGP5*Kur9^KXM`TkWK%unoL+S=Tp+Vk_4E``k&vG2Iu-hbeLn%6!a>}5J*#&o)Eof27xX)oj5O-(S_ zl2jjMF!517@=*H{Z1 zq~1>V77N?#J3e>|AO7Q6luSK|n&XI|<|jMqBp5~6t7`0tmodG&G> zPd!nc*I988jZU)V*=xR=`mkH59Qr9ASG#;@@di=n=7l~ZeR#e!_mNzUZk#c#-BE!> z&nd+zIH5EZnW;w>0+X!<%%uJ1j&~p{mFK?Ke$aURqZ*1jn_3K!uBe3K=9U&D(P?*8 zc(ALI$`$w1djiGXX;U1SP}FsQUa+d7-iM_pQkxia4>^v=ivK+kOc{Rm{0xf{Tcgf4 zyp2bYj>;n&tWYW$SJ3agGGxHq^-UfdaXM!eP8j9Dx0jZx z1tYlOjXO|}7l1V9;kZndmiV+z$15zz|B%AcGXm8f| z|66MP@KMWLlGi@O(BlhXOIZWX8kGz)?aQ03Mx8p=L5)skk^x23I8Dj5;N+sn1lg4h zUh2D&k*3~qM$XeebT9FfB znWBbrvc~|gU>+IzW>6lcJgjBcuH9&9ajV6k*f{1D%_mQutPBwrzv}90)v$i{PR*tc z^?`l+sBb`~C_mQ#JO_Kn*(?^Ex?q74BiL{sRa&Y%GAj?1;HH`qL1Lp@b z1diQ+% zZshs;^Nf693boZ85K)D|6 z+)0fRq%`1p7dEHj7HUT+9=Uz$ z2fU~X*QDFFZNWz$t;6>1J5XI+4Xe$n=8}we57jj_*t=&h4%W0_bD4`m0}j`DC|es* zTvDurug=GDr~lC5!&tla1HAL@yIB3!TiCjNI}FrTdi5st`+&gW8r7#$ldNhb^Y@!t zu*2)a2#ZXa?JBM#sJyV}c68dH&aihikAw;H%bVzV7#1m6fMmPGnmqV% z$JgWfoNd173thUO!+{{)Z*0Mb&2GFyd1#M65U~^a-dU{TdWYk>pD#Z8i#Z&Gf$HWj zed)Z8FHPv4>S}9o=+Hs6FcGH-*IhhfCPZb5U#|1Z^eDVoTy}Ogwr|^}>f}K9*gaDe zE8TN0-3HHT`p))G@z&N&c=OYBShr^z{8WcK)xh}p80pwlvSXYLb(lM55-ypu2wypA z0p^dJqE_qQd1$}#K<7oIdgUR{<&66YESOWCy($NEyfd<+swU(T__`)C{hRXz`mk9Yzg^r@hQ1< z&5m^jw?%w^EMD@I0f~kmYvsmzloljmWL`(nl(CuhSi7Ctg28+N6pM(aLk`ZNBAN;j zdLf!-^1DN7Xy%SBXcG{(9jwQHw;iMkHAt185e*(Pt`62=Z*^ooo}9F#wg!j~scH03 zW#5EQa;G`GSk!8)M~X3w8@@b7O-dc5#n*~8TWir0rfq%cI7aa_Bi$6j)zi~3Cex(u z=V&-RAslRKRibJ1?G|@XYU|xtP|Wjds!iQuq#a5eCKRNYu&II?NREr%G?3jv=P~NT zXmR;4W^yukA(5le(iFm;Z7pauP#g|Kr=vfxw*U{VQXW;>y>VP|1I$J}2kwB8k;3!m zj>t|$HvQ!;dkc$hY{c-w9MO5LVq1I`p?DZq^n8he&&w-ZM>`GCK=;Xl)uBU&uzU9& zH90#QSG;OI&tb}5LfnyO!IZbNk-&jF<9qk+Rr_#gY~+47B-*<1h!bcZj4&+WuzC6Lq^F&*wV96z56pV#v3TQ^va0cx^p*1%vnrXFH*O( z)Eq?BmJcy(`T`u@^bQWLe+w3>C;3=o1SkIyA>Kg3de?ZOU8rvygai+SeTJxUkNBtTP%9lJZXS1_Ld1!R) zjBvKqE78=@O}*I6`EKoMj9T~=*c}=uCl?cerIu%hmc0&yqTVT`=NRqcF{A_F+7iXY;y4G`TJ^{ z)C&2$N`Ghk!4N83%?KE%PVY-vQ2l47b~U>AMJ)UhhVPSyuXDZ2<(0j#xgO=Y|F}%V z4(aDP;3_Mt)V^H5a=py^`u%~ndD}V*iXn;*9w87?0$cyu6Fze*)j>L{dw3;jj_bOb zYUL?Ddi3a+4sisY&gG3a{)Mc}5KcWg87G~PglUtkC@M5jhdG4Lw(O%O!QVkpVVo`( zUV7;z)YR4?06o}wncK=B<*5Pj@{hv#j@ou!_{l^G^L(un2Ptl+BwN*x`zYOsrZ3dG zP)_apSer!&ryn*^n;8|#5(T&6d`*rAwnGNn!-%KP;JJ&r6eX(th=)2aU4w-hbuB7? zY`buD({H@8HqW8XdA>9C_4Sddg!ukAp7@@lA|=~xY@e}ksZKV?aGl8a%=e`&Ap4Ec zMVOwIhOy}>I5FFS+1cs%pvI|eGu4Ms$Mm5tO(0p6*S(DmIQ#6gm3EqLCPzosT{B)oSJW<|E{le2azb<3@aI(YcsEekwBTsnpgOsO_?#B&UGdu?)Ps z?Gsq(J5O-ZV>sU`;gsqn$|t#Frz3k*{@Cy#e@SO6-@*8MGTwgfS6 zV&X+petEKTQ$5BNCdU;`Sv-E{GpZ|MM%4`}BAO04xTO%$REW?E(KN;1gcRy#&t{?-Yc@DVTUhFvRq{hw)2N}o=Hy}JLkLRE4a$PdK zEWT!Z@BA?sRnXC0ztZW&e>YVlV5LgAuf}pP0HfcHrDNL_7k%iMfB16(yl<2z1D&g?vJw*}PUvvIY$S~xH%`4Q+4Jdo)a>1Y zl-#1oYWT7D(gTuoK~%o~3Ow}uZc3g=3=9C&L1N>b1yL5T^c0u1yEm&jN<&F0sBUP& z)-79*Qv{+>2#uwI<)MOTw7bGf|IuMR0N!d zxWmQyhKFta```akL%GI{8%uqLR)jR~YyLeoH4S_B>_%95!uRw3W8u6(@yc_Sx*O_M z=Yg-+8{Caf?Ed(DjF^2ktX8uU{d#kX{nSZW`|_Wus8U(w^yzPBnJ-Rdqou*C>h_6a zEl5t%G{L4W$k;&P6=Uubr6=U5~SuA z!(CSi7wy0F>=abd_WD{DIJC6kwChQE=a(uhByc@QWTr&&@79C$X!Q7CPolK(2T|AL zMJCmyT)w$H?yqf9i#b`SP2nj}xUOZfngzBk2kVs9nVMw6!MYYYr>#wJb&*ZL=WeC@ z<4eYy)6^3Ps?jN-zNQ6r#FK3n*zGCW2C7q%Y$z=qjiRC=C6e+>tCLQet%k6U8Z}BS zp2jZ?TrQ^)9~j<;=K@SgvE!_>&cq2PoIuA9SM?x!s!p3WO$~$Pmkb6#RUteex90!(ygkpLQTK%uYbRZ9XofZmGGZ^?pcf(*@_#!m5Fhs z78DILsW4`g1#@QFsC@|Ht#|gQ)${-T=9}u}2@5W(-&ze9-E)iH3}0(Vt(4E#OnBYP z`I2Aiak_Fu(dU$KD^5>KQKG4x;x>=UFV8s{OLw9vi{k}m6DCvoa$U}XYdsG==6Gk} zgGI3ZmglI)7ndzQC!epI@|#e&fKa=^b0eEAdIVeP`Yg7@Jb%Jr!G+U^pPB2A=v<&w zpnWYZs{C{o>e)uwxpSBDa8~iIUT#zT@UiS2%jab8%^q9T14Q%%GBKR`966N7QcXsf z=s6Ele`Je`r$Qn)&nThk*xfJBci&u7r94LG%$co5=5>Z&;_y7OnVFf&7K?hxH#Rn4 z#tAc!?&#WgCL7aSBD$s${`uC5ASo_PvRDkVF#lRd(5keilHZB`>(%?mD$v+0mXUB$o0d!fMFqQ`DuvkLFN_yk7HJXr~_OyoCq?g*l$ zz7c!g{ySQ^=H>Q}%TaIcKMIv$Lu)|UbFov@v{FBaUjUBCv7#uuy^iJSTb8e@RbnB} z33|hlBJdFW@kPmM6@3;j#|%rt?g|gy{>%xx&8QYSj*XKY2i@4buSMm%*bzbO`P|gh zjIe6Yd-yDL|He=NbH_Q<{HYz$Vdr7D@_ywxSi6H4!n*gBa=f~>25)>^*B01=Hb32h z>~2=qXW{y-%}%vYR_EdQ3@@1V(Jrbh#M4yJU<*S;Qz1exL{pou87Wp1M&_oe%5=@n z3N`8Yyz#?eF}547JlAP)cAD}y;SSVU&D6#en~oyOEn=gTroCo*?gUsl}vh zbFai#CWQ>+tu;RQLUdFjjB<_(GCrE?-Kad|LsqUC$@cbi=uD%l6}z{vr)e)5x50w% zhZ|xxdfA9)aWLvhsf=L?)Ht&d$lj$a+H>BkYH*{b(M>;*A*_y#IVO4>8zsqP)F-+l z#P`gd95xoBLF>$Aq&w8296YBfdx{np7h~SMQ`9Q?yyz3pVah}DxkJKbiM^kO4Q4 z+oFa}MguP<#sUw+3wyA5&vUx+ioEmZ&BJi&7+WZvS%7EZh~eRVhYwf4O&y)c%ZCKQ zaTp9BYgjP~#!OWCy*K#WE!ekt9UMhtk(!8`W`PR8nUm=%%#gmo+^x>bXv2kw86nnA$!)4%AVZwd%28 zN)D!ubWrCi89NR%D&dpoJLQ+5yQ^H7R+^5JCuO6>6U6SyCiQ}YRl77)6^Wk z411TdU~0EVyyJO0Piewlqg?m0CpC+nRaI4Lp$z^Wg}q8gj*Kj>7X8lk+o(~c>LnJ# zbu-U{%;KZd8L6}RJONGvE~AMk@14+5N7&uifQ=hB!sGKJBPS1z)D(R5(T6yFfgQy~ zUGp*LrPLHX-uu9ftgLMHB9Xn-KmPb*_;`4-d4N{PkA?GE3)yNs1eW57+rk3MSJRRs zc{Sf`La~Ksd#6q>-|wR~oyASI6IcN3VcXL! zT*s<8)akqoPi4X7WdPE(4X$@tFg3Me;gU=oEccN;quCR^s@-}CKNG+4V3fxxr3AM% z^z8gXAUYjTtoIt1n@>LZL^iHd# z>Dg&{sU=dBXhc5dlOd5PGs?B2CoeLfQgnNM}~b)pA!D?>je66J2dA@VVoisSjU+tu@y zFck9P!@i5iS*$8G$xLw0XJcWsiB3tUsag2oc*w7+@}C*(MWeS$MVk_gKHY!zIBa$& zQpH8VIe~OQ+7(((h5c~0tw+vaQSz^pZiX`1RaJxP<`p99r`uHO=b4<^aY6N!Mfgh3 z$S71#t>}}Y>u}6CXJV-=0_c_y2N}TzcmP*Q!Y`qmB4#O zM3*p0n>Ms^r$nJ$M=ys|k){{!tHCqdtFHwBm4lI~n^(wh=jF(X@j25~EMs9?CsP~xh^{znN0m~ zw0B$`e9zC6lWVr$l&-fB#bhC%62vIRi3to1(fL@TggUq6Gjf0icfq-JP8EgndOhk` zwW>=wySls2s&lSf=~WRQ8#b(0icn#DTn|*m=91B~#Nd5HGCv(IH$MFELlp@+6I7_$ z+uHEk-~Ki>uj#_nxq~?IPk(~m_kW^tS1QPLax}s+DU}~IA&TNO z8aa>bP5FCX$So&F7H8jm1^d7Ie_=q3zIY^rwhh~0^VA`cBKZ|*Pw0xEed6^PRK)3j z{KFcU8JRIx$2RH4U8#5y>6)@wug~Mb4K=FjI*lri7)zZ^PV|n4RHW!td1X{-SCdQS zL0i{Wp?-6DG=M?*eNBZG^%c9C!Qt*aKJC8e%08yMBfLLm#9 zD>8mmVCm#1NbhUbti9&oEP+w_2M&CMLx&EjR443vMwPPqdFf4nR3u7y<&D*yI3&dG;XvaC-XdJFr)j*RlNGnyXw0cHvBYL zEQLP(;P6qLymSR&W}=sCL=6_CmUDrs1dglXNzx8F<%*GiGx2UHg1;D>!UtiQlQVER zk;GrhcihT96B+U*_BrP!mF>os&o|U9PhldA8)?- zmfESH9O8WT(r?&jO1CQf_Kt&2QjQVZ!UCYA?_v>}Z`M}g_v)(gC2s}3QSHUQt1sr$ zCU4~gVop{*N9h`O5S84P9}VMIzW7D8rT%7MUSsNhsWN%O#ZZ1Wli!ttk$}8*EF4nz zx*IS{8%?59P+u&^sLU&ad|vM8D}fQ_UOAl+<^N{iGjIrf4f!YWC$IhpZ=E@Yx4Vzy zuih5kOdcR`+Z`&uX>~CYbWR}s(kVsWB<)DX!s!0#-ykToJ{pK)JeWW@o`zXu=8A0( zD1N{|86L_3%4pFL3(_V;_NP?<(2y^V5q|=cp(OIII(S#_gfEs=pAY-v@P(6zh9kK0 z!OseMA{PreZ%T7%ArM|v(50sLFKMH~Qz`N|s&gd}N`VpA-H6=;dPc_Y73n zjnX}N_#!g5XMwV#2BNS#oT3ZZ)J{0ca>{hCw^Fq=5S_hmeG$<~rMYgo$4t-}{_(|- zjQjG~SQODN%HU_()TXVB*2|iXgdiOr?J2?|3a<^G<^OYqFrb zyIcL)-rlAvF4G8M1zK*o+OS~*HgDc6P2<)cy(${Ts`(c#oLA8WqoX6mD*8I5ARIk< ztgte_%v(md{Wfi~svJc>`N>ZZEjrs~g38(BPdtua{ncN^o}JqfxO5zs-}*jGG8^J! zS8?u@f53&;zKb(2{v}TQ^M66Q?-be$A)GmNLOCfM)wM`)yYzBGo`nvo;7|`Pz4?8m zAj2v~6^-N)sJEsQn7D8ZJ@5Pr(u|NQOLAXACX-Uzs%JyYKZfAorMp9GqzM@d=4E7L zGIKF1=c>?O&S+NKbGcp5c-smJDSlzpM%_ilLjEwdcKb)81psm%Watw@Lgje>{N{J!*6m%ooBB`SiQiRKY8<_FR8R zEdmm2THL6sw5qN524fx%tiK+OLb<%Ht5Ox+vsv`my{52pgs88y$=^aZhCEtp?RaQo zjf!$%-tP+gjZqvlKAA&x+QP+rkW8q^Pv(as-L|&2%KPa?9KnbyZd)uAf1&{fwMfv` z)>=G+PE(WG0l?@jMqQT{7Pu%{DhM?b%;)BEG3wM+P^1@X^v)9;x6vuTdX6dI&FAOD zWPxU)iIkknU)=?e50(}yi!?VAEb7FATlQyypIC&x%5$EUpg!aExoEW1vXIUIwpnP? zEP7IHhZPmoA~H+~=;OhHBQ+|olq1Z8%KV6QXmKvi)nPzAMSjn8O3!||7On~-d=r_% z&zZCMPJ$7-PLDjG$h$IHVbL_|8?U_bs>-E)1K97ZNx%i%y9q8Fksdf6+|9t}AU(-J z$2$uI)tQX&2!EK!6z2@Tw-p`jC5P)mdC>ykuvifHPbvMcq2cDX6JeEe>2y>M>ms=D zPQJ&TBDVr_nRCIN_i}I{^$sH@Iz(FJ*XWF>xp1j~*bLZ(S9|hVB$9D_>)~hM5gq2z z=pg=&SAV4RUPomu>@w&3CdUw=gIr*gez1wGoI^Q>=_oC>aFImDKJK5u`PaUKsmrHC z2E^fyrZE~wV8kECC=YqhSN=U2PKiz|uRW)6^}s6_>;72%o_XXMQ5s2PR1J=JN@R+( zGdyw?gU8-cj@hwuhYRzJa-F<}_g^p%yZJ+V)b@EB{_))r^*6Vxv#)k`xs^=l8&9ab zrrd^3eV+&4^D}hapelu~ZH-I0%KZuM~1RPhz7YYigbP`Xjw5tmDbHO`TV|e*O6eB4ku0&b* zBPoWa34LQxgi~S^W~}I&is8&y0ak)l8jU5O&kyr!QNaN8UeW08V<%q{J;s-Ow;<$4`fRi(LbUNNfW9uatn zNEpq{P0G+dbEaDf_JM(ZtXsEUIYg=a7NVe_B28)3(_lY+`ji+^Ic(duO|6{LA$I!A znSxPpt1zP_0#hK^9S)3%0>a3X&aN)G?Tz=PLznph>3A3(9!4M>Mdhk(D&S-I_`9n5 zcXNF;e(kGYRe8IHM@I1S%Rhs~<(4^g2b>MkzEofWQ5>M^4U|W|F4{tKzq4jyx z<}PAlA}j_@4z+7`z~-qzWV8=~{tIf#zqy}s$BaB_jC^1|(KY3eab~WsIoViiJLpTSl!}Q zTk`2>J=s&J=Fa@7ZrgM@!<^<5VKJOJ4(z-6Li*4oGK_qO3jy3#ucBOLfP9lhZRjNB zIW)ldN@wWQluw;w5~GdzeVGo04%WK5IxsED#*G_QRO!vYJjcu%rwaVh7Q0hU7e1$q zA2;f3*=U_r2mAO~92YLrfh79UQquWC!0{CxV3T9JbGn1A*jAA`{?5GTr9$B4X*2RnE0=L!Ih>ZHhr87umQWyyb zaB$!<4i8>Y?a)d8r;A>#dWZCb==XtW2*3OI=dq@-6%m;y-+BKHgcEUOMJJ1<(<8f)7>32z)s_MlXf^)N&CE(%uPB?SpYN<_A9=l7rNq( zD3$+N+8Ui4R^Ru$^JC=z4U2sC_npJ&>4O*&eRu5aA^5JGmG3^r(2;l0f9MU2%Xv)Q z#GLnPfr4|4_aqiUcRHD;I%z-URC!KQf@AM?JF&aVje0Qy-#9*{0=ya)KPAo>b zrLzicH5Qn~zW>ZRC%$-Jttx0munPZw{?|SgJ{N&b{iX@OsXVK^>2z=&@VPt9y!sIEi{Nq^L z>cZZQwd(tFj0Y0R?HI{ek*C!v zg7b850D-V5$wh-TX?3Xzz~4C)!bgJ%5#qO3OB|&(6cvU$0UCA@(JA_b7mr2q$cv!T zOx8prt(AuWv-DQ%LPRs2(ZD4xl%4^~e#wtwUQffWyZ4#T74n4FrF>7K!nBS%GV^dNPoB5G(v z+1p(vvAnSe%|I%laOO@+tXT^_Wo z-BSGEMg+%4&~xlVMcX4i=kVS?|0SYuCx{i;Jt9heasPlTE zu-b6tY6^b;jdL`S%%S^&@GCln?glTK4KmJ*@{7p4APt;|#c?pg-8w>wa@=h6O5dG` z#&Jl_r-OwO{Yp}J@j_{5t`J^tb&Kp^1LWY8)5{!nRGCq~)``xCs<7pYjo9(kCTw`F z9$gPtqjkFnb*mikHX7k{Wnt09ppOOMa%JGEl=&?>i4iI6+2_H1k9ZWVl@JZ9qyx+U zTr)u(ytFl)GLVgsqpq%A<@Dut*Bv{G{Fbtm=hM+hJ`xk2K)HA?pq$oa?1+^v2cB!K z$HVp2>ey9VtioNs!|M+BH>;Gh;`u`l?JcCjxgCnSVL6X0<&vB&eaK935$J&j9#r>K zJF@N|Sb5;SHJh=%r5*iYKTeGeA|mv&qhmE%tLvaoL{Y2Pp<0*6hm6=8 zW9N?G+-u*#k-z_6@zG!WKXKr{{YM=5v;R9z{_y|Az_E8k{)k+rF2QlJI*}I{z!oq) zRcL%bRmM+%I7w9@I60U*CK5bP|kNYSTP#R;Kk!voS(FbOrKqEXB$*o<~yIr zQ-q(elK;@u^ax}|np#bI<;bOsW<~piD6+n=@Sr02JneNheDS_&=rR%X50B$(4_08$ z>WXW63K5EBRf>XirjTMGp316pfHQHlCyWt)3Tg9QbeL+mCvlHxQyM;L$O)6ui_kiH zWemOJx6T8^t@y`!$Iw#cgvVJhEa)^{-%>3Mj1JQYcr1E+`yY-3#U<#BmRl#^&4-gY}IPJ^^#x{$gj!4+8^ zN>Mk8vSdWHs~AOB27YEY(a4d$r9whwo(d5iM0X2Hxz(vE=iF{j8e|01Jz`cRyJ?p#bJUz5I(Gs!HKXiN0Il{1CcNF<~*^mxGF| z@a(Mcsc2f}16R;VN2Dj=aYG}+IKwDrp;bDARB?$p7-VyT7&Y}BYorOYE7PfX42OR5 zU4+FrqH~+=8NPT1AO6dKNAxCJ_2-Krx!$3ld=E*cf+!kWOAeteMoW~$)cE-$s=&m| zqG754L^_7`Z8sVpG!)PFrD2ruvAV02e4x{m{(wYU{wb%=1*0Iln2W7vSm?S8@0=LN z2WKX5?DF(}-?yb!MWD{aO8JaYrR{Z&YsMJCofy7QQq6~~^fxQ;pX{5!;mf0Hv6b5v z7ZvR*^EofSpYr+CLcx4dDv(Cd(7V|-{9A#Mcg&f}cFfyQTr6b#A_+ZSe`osm5sWas zIv{jTL;YTX%za8>ZkMKW;}w4hZw11boTCi*xt#lk9HVmnNGgp0c^rAyazf^wQFPPW z!C=vC{7Fs0=B zD1$2I3(`I1P>ENPZb<+9n@-eHq#+kDxf_#?Pxd|M3LUH^9>lTXbxQgl7ty!?!Sf0J zhTl<6Z~>m+-#lkApwm>^o8%(WEf7uS)i(PY_w@0v^_cO{dM}!)tm@!tTalGCybWV5}2G=9(> z#y}*899IwNXekGUAEOv4@Tf4Bz~`1Wa%HvOpTKZ9gL+}~H;ZZ=lJCzZ5b%lEhY!IWY7-hCYRFvk@u@KdR|(}pdok~DW;>dEIUICrtnl#HQc+x@6)yq-srptE%N@>v}C(cdBHn<(@j+gEI3 zT#TXqQy;_PaKYiJlqS!Q?m3^BANBH)_i_B^KUTTbmUX+b$b}lO4lCO%ICM0oik~s% zLDSaHz{Euy0i6(iAHIUlstC4s-6+#0LOJX|k%X&rr>efs^OzL$&8Mgt$MA~X2ix792 zD;lB7D77oun3n#K%NNFBv3!hlBD%%o_^7J%T`CH7JCH601_o6$e+lHrEFv*iFsI;0 zAAN)*4Y!hEe5WDLG1MQ!ru7z7xTP-yp-2{g^$&i;GSas*7f$XbNE|{7aiP794x6fA z?ll^))oCxSF({O8&u2lH65=usD&+jlb}QZuMKMl+M7mn8xlD-O;jA{pT|d1aFYTYg z#HA=)wU*hPs?sFtSBy$E$h?X9Qn-514~JEcea}^)N%#ZL;krRwNKmE=h66cVI2uOv zN;{g?S`qiBkYbKM()ea5?(lhyQD5#1LF}LZ-lcx~lLIb~Jd+7M# z@A)_R3IA5IV(E3+IfLz|j?djwd=8-vE+8Hh8)g6K6y6z`#JNDYpaZk*B^jw4J*1;$ zq@^O9AZEh|OV6rvrub-%f)23y)Yv8An3bb622k_A3?s=o*Sa`0W4tX3pM zS7Bb-5)AS-91ftVvPR}m8bAE#9g!tQ#IBz*caUBwhe~{edMV$NuK7wjqOPQPjhw3- zp7J?$EcF|?De106`}~OZ3a`l`LOh2ukmqpTNITVMCH+fXW0BwjfXqRrs<|1s^M!i( zx)!_I);=E$P9<@1I3Y6T#^O)q;Nm5BGpXQ&`GWl*^KpDKs;1?NIve!TneTS{RWT

whSg!QZ_(3?F^(rSZR;(6;B_b0GC=PE!p9%+qO_6^5o0#=_K~y~C5L;x3~} zm{+oQB8b!dlQ<&>+0OI3+Oek1g*Q(Q;OLbJbPuvZVFXX@Xuz*M(x!~IaxlX5|9t79 z{62!br?w!VmI73$GAV4V5k+{0vYQY_%&qv05}jg1kKLsz(%%4bbPD#HMXf1eS;+Nv zVKSkLVKln9N>=>7h;vhE^e}>!E0W8gXzD~rXJQFyM-GOn*@c+dVHCw*#J%-f99z&X zx`VsB2Y1&A5^QjHcXt?^KyVw}-Q9x+g1c)VxVyXO&fe!c=iKMHf582%pPueswQ5aQ z*Q$E!EtCUUD%VjQtYo}1D#ir$ud=fH>)%z62J6cb#XbQ`LNRE<(9{mta}XI#L78yc z#vzAp+5BYcC&x#nJ#35?o;ZaP`;rX>4T{hqt7Y);@Cy&B2W%EJRz%m_FOTQG1iV=W zlI~<8{v>Iv23W8hg(!X{e2MYNNjGT7pbae|W1JPo&35#U22m0bABh!D%w4nHF~qS0 zjyhEf4cw`0enxTJ(6SP__tXS8&<7X{rf@?ZJk9-7^t$Iw%qJ2t_HfUx>%fkvG&Ajd zS3H10ApAk*s-7tqbw!8CNh?q=Y0Y1)%8Y`FO4Y-S)fzpOgKR$av+^`~hwNI(#B~d) zmgFzOp|F>lAv#4bJt6>i{57s~*c#6xXW(dXp5XEq_2f)HO<1Bo+B?a0WZ>Jj9)IIs zT$F5)NRr_gKl64kB04M1K-@`M4#PWsZvZQKLfnDIKzUWI#=V*I78X#cGnmdpdq&xN zSCD@;X(*CO03>{4k-^0~$Olv;{Tj7u^+!r>)<2dm#))I+hp8ZXEI#A*{HGOl2XWtD z;-roHW5r4LGtUehfV;{SVV5iW&sv$|j(s71f2T%W25f{lqJWdg-il-Vv7e43hjvx3 zOoYR)h!0w$fzqw#gKUndtZ$GqHzqnL(XNTka>k!NXcTPzm%kp_aktXf21Btj8lOQ( zv(|XTOS0_WP3m0N>#a%~y&pwN*a9@mey znN#=z`nd%}8NG4Dg1G7`tAz@C&_G;Ex( z5o*VIIu-{vLglQ9A(jYS0hto?iqI43MJsOjoK%RmS`$ZjDW}G{Ap~kBm)-ofG zc}n~+_C@a?MeuH600!>m71PY5*Og4cU+NI!o|$#;M#w#p@a8%;@Vo#zJ^BosO4E&* zp|I{$Hy-F9reqfyrdn7c&mo)9)PE$IJ1)G%wHEkniuKx0dDnfp9WJ?EE zQ&L(TQ#xco{^H^8!Dw}&|MkP;VoireP4$^G$k4Jlq*VKlAi)ijRr%637HKXlgOfe9 zT280?0llH%Ti1vP(~fCyNtEAD7{G<#&AL<}KFRs7i1Mqyog)t!hb#!$@ME8J?TKxI zxee!ZWY|jF5av*9y6%LIVl>|sjTs`7I(RK27?Rbifr@!T%^q*2_-8plR`n&?6T1lVh{ z%Z=9c%3QN=JnKkuVfYL%|UuGeZymWvct5&h<7 zj8d>c8>gtB>gf1bWwn%`odH!nYI@bFJ7%Lw3o~*sVd6Nx;MVXyP*9{!63|6F6gl&a z6)*5t3oaA+b5s*eXn~v+hp<3oG(PLja>Fh^q)Bg!<7#R0W;7jol^E~CnC{UaJtFD@ z1z9>X_}F!BO7*)+P~R|Aa2kjAbz2lG&zJQx@07Zfb1gLWg3+&ky^GsY63yOZV28!Q zS=#&&wY97%jHdc12SJ})kPZ3q5pv{F?+TT`1zqz}?4WHFKdSeLagvdS=@DqF4)|5- zM=QgL^Z+dJL#0Yn6*E)%7z2U0%ofEAxcTRQa(-O?-KulhiNWU(0BNwu)BD%vni1N> z!etR?>+xzkUvr{Hpnw(2#;9@>hLqRab!KI!Kk&DC;I0=Gs}d9Tw^Dxu_=kmhd;jyN*{wQ;R~>um;~|PetsXd3uLskF4es*mp6IpPZhSN}5f=Il5WE z1c-|lRq9WMG96s!Oh)7(0_5A%7dJ(|ZZk}`-oagEtB^=-N{}$EPDTK4pGNIWib0gG z7m|k5=aW$%?hLs-wBe{NI-tZX0fpz-yuah>|M*YwOdanRGl?BhlY)^iWqNhY5-KR0 zXdMVd$P+4Rlc?enlgbx-Jbg$l@vvPv>5Ppq1XBfpf*}jp#HwB$}{L#37yU@lG7Ov{o;Ln>LHX|g_ z;WFXLicb+Xn%#)4(UTyXz&vErSN1-ys*VC#}<)4J*t-=i!@4x9l zOqa-;U=B@kiOm;J>iwtJ86n(vYTMi>Zp|okqnzcfI%Jyh`R^U%tH}Igo%uZaF<^am1Ny?q%RD{-iEY>9J6wbU9?yH+GI*UNe?h0w325?t#Bz_WZ7}#yjLKQg z?;pUlx7<0ar<5eG9(2h4{q2#~p*asv9G-rg#f-U(`IU-%;f!<>cPVyoZ1*7P=0EOV zyf!bm_~f4I`zdq&E*DxL@PKh#ji22~{z~D3T#@8I({? ze!h&pz+RY*(`c&nq=y*^ij=LyRKb?@ChFO@G{g1T|5d{i1 z8taKj&T$0Q@FkS2L*RavlFsQu!DN-VStG0+-QkS^CNvTsnDemc5r=k?^ZSE z_`a*OVq~ELY$#HTs|0fzCq<3gY=P^yjqvo&8k-((NitA*LQb7(Ck=HQ5+9>K5T(4jStYo$tNo%Q=_)(PDz+|=BC{;c=Vd7khdo&7iLya|e40_==waZNyrP!#0LEzW%kz$NQPn zh#0YwX}~!mrhFiW{U9J3rLgm$n1wVQ3Vz%7 zLYoq|@ny^aURtX=OxA&Pl1;>xC*U+R@)oTl)oIH-RGh!~+tu7PK4_90W+*aymZdvA2TK!$6%`fn zyY3;t!G$A*3dz1bIR@ROjP0B(!b};+BVDF+QJinuy`^*rrQ_>*p&HP<7p8F|*6^dw z+q_sR&VQc>&3g$ZFdm>1IoSE!ZKUWu^-K#&xr+4X#}TK@)=-?;a)$E0VH0q5@u&Oo zB|UJFrfEQS(!yZ+{2h0axA}?T?6{QR3%;ntor;kY%4mqbu>ff)OpeMz-AJ(9mr4T3 zGOu%zBLG|X;qzF~|7^YxVKi=}6)KQ|*I|u*GEeW7h11Zg zqhpaP&B?nPTY7}#AeJhBT zwbh`Bc`JlcWU;9K_~J1dE)wv}IV8aWTcyT^e~U$%fgLDFs9?gJDamie7_ysWqH3Zq zTaSI@j3G(GBrlLYV#=KusFdF6n$B9Ls;{npi^yTP-?d0OnC&Kc<7murtJ5UqD_c_Q&+t z*KivO+Mr~#;W=ov=fa`{vx)0A?0iwNGMn~(5G_AYa-W9|4xyFpklB@WTC0hF+)0`% zThNazw=o;IYah>hxVNE}rbKx_EE)^!nBh%%O=f)}rHqA#0~lO?vdeYbMTNqDRgx90!w;fOGGAtE z+d3N#P|YCb5V;bzfyw5~A>^67j~!1%6kG$bDn1yCn^9M}1~F zHrQxHx+;|tW@-u2m+NVF+aHiR^1nO`g@wNX?>lpDpm49v*$gE5nAcD$;gI6wao|d= zzX-M69X!rzrVOQ#Vdb(zAHHxs{pp3VUD}Mx)X>}Wz99fyvxX^k8aW5CSlx-cn1sWf zKB?mzz90>fu6uBGDsnN?TH-SaBC8$S>mQ4{H5&+MPosxiJv4BD;S3ZrSb7}GAIO1SuTK|A~x@122z2|U`i=nKl=~eNRx;5yi39*2u)MG@J zN+fn5p|nW*j;l^ti#91yD%E52Q;r1NP3q5iw`n1*{Fv46o#BIo8PiRbmAdZ-FPBK6 z1ta~Hj8)2NYEK^?Tbdt_8v*2iZKE{?ud?1FO+cNQ>pdkn`IgK#J9X5x`LwFX14k%gmxU5rQ zg@o0%KdN%Fe)T2IV{RR%>bAATG$S;M#>qw#T0vuSFKXAfEEd?~0CT&(%>{f5$5z?V zdCXi}$S!>(;V#edhF`hyuwRI}j$fe~9o99lHxn*~WC= zZ6RT2A7l381^&ejP&xK$?kabu5efrM zx`Rb~{YV1@$xLjsp}cb7;hE+8VSfMCBPIljWh*QCNwQWn_BzG$m);F8k@U+zdG@tF zpV*YzU`_Gg%OQOR!fKGL%5|HD?{T`^fJrAf@AP4BVN$bxu$@8yFq(prL2J5IA)}T%gF+R{`skRYLtu2Y-g7A zfU=H8uvFJ`xGiHy=@9$OHk4 zQZD;#$D?EGUbC{$9mXw-lN6R|+l@@{?aHdS1NmKn?(~)1FJgAILM+ye$n_D)Ate}% zX~)p@Aoc6dh$ufQC+1_6WN1o!5T}UdALgTaU1d7p<%cnh31OU-5G$^M4^2W}yB8MW zN9^s-JKwRC@*{ZA)$BiA*jqv}M%=Z}V z-c1Mqk2KNKw!pkL0;XQi+P<+r?62^Jc;+t6bo->~03ZvO?IkGU2YPuLGgUTtLuu$* zv#jxpazwyZS0`1Y-qXn2zLDkamxUba-{w zcY%ei$@izBVjVGUGGb#?(C`%RCv&b;I79T3qJjcm6iphQQYvApACmX%UlL1F;qEd` z0q^PTI0zJ|wU^UuNsKeA-zfXCKeZXHX+b-M%8NQZO!3Kn$Sdx;{13Zp^AoWD7nEw- z5DyQIGjbV2n^3%LYW_gTbDt;IU)EusokTu?=WuYwgeHeIV=nhhMRvmRlzUZanD=*5 zR<=Tv(?pJHzkH-cQV(veBW1a6jqT#BLMz5P#*S1B^kSEbdzWGz`l_{rc75Yw+8EJ| zDje_6NP*%ohp7*`%@#!@`Z9w4?j#&J5XwQfa7^4W0(!2M3m*EiitkA8WtgC$8QVQS zBgdaQ9wWt3lIji353i7JD+j-hMDF0=;<}l3rHT%)ul%yLuGw>aZe&vC8(?k@k?~mz zD=IKq(+H-ah@6Mx@_PQb9Y(DJFMpT;!EO)V81igbvr?#vTJG1~;Cz?Sa}vG1JFnuQ z(H*#ziei~muRt)w_L&JHXJ7k`3xJn7i za!Yf~)RTM`_^XKwD|tn7qqjXjmLOI(Vc@#Q;R+v*KIc}-2# zyqC3NKwfaUHiocJIrEc9)2cB>F|j#__&-3Y%B65!rePKbhm36g!5gQ?m*71;I!e7f zN-i5y^_f1hk_>O0RgNUPgySbaqNeU)VLDv{n6 z$i+e`a6>i(|8Rfg7XVAX@h4ya^euCKr{gn8zr1aJY+M!;7J{v&zB1-$Mt`AG%*MdW z3RQghL;aqGPh4Hmu9L&X&0YQ?%ygHS#6eZJ`qP4m%=->A-HO>SwVxbeYx?gSTYi$& z2urG+T02>eU>oq*S#0qBrn-A&_=Xa!K3$$b^TDL=` zDgEBG$HhvU_k&}M7fRX`vIFc-|2efdr4G|e$~`qLhiV!5T;Gu}acQc=B||yGWv1-Y zg6lNR_nY6gGymf%;`#eu+^nX(Zcff$5} z6nLYb@g_f~U=_%`3+LeHh}4}K7pa7s6A_^9VaDOyc*Pij^Z!aK|A8F~^oDQYsyLlz zSG`l|OzZs)68u!9BEnL~0Q=XPBC4UD;I;7pl;x7+iweG=yx=LDRxN0PJup1~>n)la z7%R>ZK~=b%9$JS=`YvhGv1&i`{tJQQC`Mg)5Wy_jfSX8CkZkzsianO}OKFRKb4v>n z8~a%Nv9gv{_@{#ni;~xlcQDu%$Gae#5n_)1F(<3*IG@Nt1SpsrCfzMHXSw|KL5Avc zqYL&1KeaD1hvtz)m`$XKOS;jiHn7*8{ner_>J{^^|6&i;hb9#|Qv;|km+i^Wz~k$poxFopM4OA60jT}ji=GNlRx0ddC!S3{;Of{rEGNnII6o*J6)E4 zOx`%Ty`GKXCX!&CzLk~HmCwSj1l4LJZw@<1>hR=u>yrQ07B6Yj0A{9zG^ z>*H1PnR^?c?73|nJw4=(tIwrrCN2WqA{0077~ydwLy!`)sK`-<^w1X7>Z@t*Uf3pk zBFs`@q;ScLQ7*)s{q!GVFYAmCf1Z{JVn;56KW*#utv*o$lVnQcKIwRS9QgX*H|Iq= z8b!413J?j0Vr0sW%*-`ZM4@xd8GIlQXlHDMgThjdkYS6C2y)Kp&v(9f2}e)~eJ;R1 zaACSK8JldIF^EvP^&E6u8vS+8&z0HhMIGl7KyWIg=rv*C6Ok{H*wY*N4;JkgH2q0q zYFanoWRwy@)A{owiL_8AZ+XFYJ;_YlC-b7VnhD!!DgnYo5sQ;?D`1i$j=(P;mg6YD z^?T=%?5g1}b*}?xBa}%KpNB(I)N3oAlI+$d;&oiFEV*C|DB;8bfz1jj<*tzhpVLtW zUHq5BncadKV)%?xPuJw0nxr!QiA1fU=y~BdzBhtvcME4ov+$!~iaLrXK~buRrBIXl z+91kVZ_%>v!)gWDCFkeoj70Y{1>$X>=I$+=8E0Si6;&@>@5+8%c0*~-iR~O*vTVFu z+5WH@xjZ+LqxfP`y{9`esMVnsf7PQ7m=*!DKyj2xDKc+~S#DAUtLa=xPfxx%(>Dz* zt?jN?Nb4~q7N@dc@tL^JNgjr*v@gZD2IfTB@$tvQa)CK={}=ohi@U zoXEo(*gO%OxV z8{{U>*F1swgG4uNGRVFy|Mbtf2aTs&dv%okVPQ%Cameh&SNdErO>4^G9UDnHK?C7Z zdy`?Km7Wz8SILL=qgcSKH!ANJ#=VyeYYCPhSCWSbn-T?)SdmWLrp~-S%Sy5h%*WZ9#vKh;XeLdbgmnVMVIS$|>8dFBXVT{7IDCaS zgPy)+VtCN{lViX60(23KY#j)|ITtZVO#h8QL3AJ7hM#N-2$am=X7~B6!){wfiD;fu z&^Hp-(eTnP?Oa8o(zU43{|h~qxD}9ik^1LIS2g(-3Lq1W%w&5p!vUm959{=ss_bUc ztX9UXNcy~uIG+7_t_J(SR8*fFTv+Zn8!c-%7~KA;A}YayA5U((XNH}04ItlN*@Xr% zAc6Bb&Y=4{eHG+S-7k=`k11pT9xWYRL%`n->4?Cm$mw6zCdZ<`BHc1Ty+_?Qk}!Za z{!PTG-S!)qo1HmD>>xBXppdP$?m*FuoRO#QBssA)yLSciIot!cdqjKMDXerLusmwGx}ha&?9Vl_ z0f{`NVx(9t)NVgz8zt>GwX-g^4WsZHrX1%VeX4|Q;{T@e1D*yEpbDXM89Sv%tsd>o zIo&n9X@|!7zEsx}-K9$xv-h4S%CfOZ&IR=43n*L)#JAf1n*p;{oL3TA7|SQ|Q&Cjq zSUA2b_#rtMt%9xI^(24}2-a4(H&owxX10yaCV_#aqB0Sw0J6SjJ{3#4zW)eDBEFV! zO;63wE^f_WQ%@#b?~9NT_?tUH{2~K)T!xcTYVzD8DZ)|Bn5~G* z?kb=G!i$z1Ob-egO68>`;`a0T>Mi9jmy-ZszvWbO+#K}wSEJI$6~)bQt_>B{fNAQS zN=&;ieVn-(N1T&kL{p=UgsUUWLFG-^O@_^Zo<*5Lm6+usl8QLx*MEAZUZ&1wO1^F? zdh%PS;BO_wxRMDy;Qn=(f31qTR3M6}E&`%O< z*$5jcp>JQ4y{zM74uYd@9~TRTLnXR^BXFOHuw-4E;4u!IG6v|j>unn@qn2)Oz~_J$ zPLG_6iyB}6>+S5dv$N~}YcR+-`r(kUSH39Z0gZvOJSk^NrV=%9sFL>ji-8(7)x~+i zgQl=mid=Ozi4}|zG{UYAP;kIuBs#l)#mfOw>c+ROJ@e${sDZw72o3lJlx?RGuPI0j zGl>2)*=q)hc#{7c&JTu+;Y^x2ul}!`+}1N!4572e-Y_xR{e(4GMDXIE z71?%VF60*elLvBP8}iJ*yK3&Tim+42(Z9DsehO3KK=}i%l&_&IBb*&9Ckn;{R-qF9 zO7;0q4UlV`@gW+#6!&QIBaC98D6D5%Za3DfrExTCJYMB%N_cTAhs@%m1<_r?_@_|<3{)tS zfNc!nrs`<%|5?xf5n($wL=kP$w-6FOdDzLy630h2vk>R$Y6r$ibBA5#pqa2U8Z8@q z_mA|u0_l%@%Ovet;{CY|0$kgbc@O5{GyvWx89&Kz=%l&H>F%#T<#&WulJ`Ku8& zcFw}&j8fJCpT9G2vj&+NxyBL~3;m>VL?;JiF?22wr^Z_HtaVT*B*Z#O$`wbNLqQ?| zF{r4J`o+L?M=4EVbeJFl5)ui1M(~t9to#Ag`5H=bL+9G9=HY*@scN9$A>0S>Q$X5& z`@fTU`$3V!dX%_;ownjJdo>=OP&LR$bb;%vsn$4`zx|*%Z;w}Mj#2zLKAVxx zq%jmJV?8E3#tzZQs2U#HlRkT{5LXuK=mPmOhJv_L1Ep01et-aSIZ84~EXevsn-hUp zmKI4Wl4e%G!ksziMzo(3lO>uc`E-n{N}P*TBqtwQm?)Kx^8u)~%|4=X!Hh4dMF-k$ zTD>~${vbX&I{H3nipgt+kvK|~qew**vjg#5p8iZ5rZOEDU}uh=>=6liIRGpz90_g& zyfFteC`1-W%9cbodfSJ)%2Zs+dR-2d5jMw?TCJZzCYrq%J}*&hI}Ss zVQ5gMDm+?nJ>q=Y0np94wqNEUeoh`Ud%O_hhxDyaB*c`D*6^_ApD)kfQ4ezUXU2Zg z2W^<|cQF9q_BR;EToTZ54by@EG(hZ}n2A?iKiZ<%?>x;w>VA{uNx+%*{@?~`Go;|U z*Mz6fl(WZ{H~(i}(BdR30V?3>jl;$g&Kr;-Yc}Fr-@SvG-iYW`JGsK$dC;`>YHu+tCp|O z$he^VI056XH)f|C+itFv5rUKY-9Wqen&Za=?it?=3hUiKk(iUrJ-zG)%iui&lWX?v z&DhA%7ml>(Xyj1eoA_xwacEF|#YY0imUex&7rLQayLI$!;*I8zL|UTv*rOlq!}_{5 z_4YE&e!ETitsWKi*GMwiCc51+C7Es{BS=Kt>B663l-R#}?XJRvsGKT; z6O+J|Veh`UM9KOu^6mn1+(h7f|hfwKM_fpEgGT{rO}RlVf+*I1g=f1;X#X{ zS86)>NZN{C=A|qxqA;Rc?l;yONYEjCdd*2nNl8CfYA@~}eW{*60_s025l^h*u$aHy zl2GcS!p)e&`}P{}H$Y7>^wR&aqs?a%yj_$3wR)m-*<)_mLC5b2JtNBV%E(h3>#D7e3?IeGrd1R0H)L1kh1OHpS+*;#=Js)t0Aa6{mO%ZlUR`NY3UYE{nVm9xN@*fy*i1&PTv;SjnO@2# zp%fgleKbY7oY8jaV-Fi9xZn5>*#&Lx0TqU^mCtH!9<*KQ=UusZy)3V`1Ruobq`ZKd1!H464 z(b&5!v2sBGL@&qAExtw@D07%2}qWNksph1OfMfnTMlj(yun#7Mg5 zItzo1ChM59@t8cS^<&%>9FDR`hM9&%7zH=a!BB>B;6>YT?6`AZ7D60|Y(=ocFG>l642WTJqrSah3!ej<1jJRvxxun@BSM#@S0j1enc z+m+5$V-bwUEw_yLue_8X7Iyw~>0PqYGCk3wG3GZ%2Q#KAlm}BeJ-XNj1J;rH!J}GF z;%wqQnZ988!d65n$*?FE3#8{>eSF?a?qy4x4n^xcbtTd$2i}O-q#eqIW`TlmLvz*G z&TT^ix*Nt7GMX<%+*bQs-vq&buU<8*ZMnBQHqp0s)i`<4=CrO!_SaZX)E5L&<-+H$ zjsx-j%^t7(#Iva^_`WKU$tgBs(Q1-M(2d5S4ghHG%p~j*AWB@1AbnXYJTlAxGg&2b zULBh8N2r>~(_Pt@krJOWKaGact6K8;zpieE4WDX=-S-5dW6Du$piRMwhorKm^weEe z4R^()EH_p{c|np}uUHEsla&p~>HN>Z98a!wbap^ zs6mG2R-i)#85r68U3kILR%TlCh zFop^qwQav253;W3)y;LUwmA0Yu6Lva5nsQ?W9!bUx$M2|To(Ton4ai^f5I+-s*=O0 za~r03OyV{8H5Y8q;ZdPql9G}#CbP1zP;4kf78gaE!*rBwvd54^`^JKvHeNzfpCFAB z@SGM9>8wBG#9MZIu6*_y@Hl{9Uu1?#rrSZtlCmfrU&_U>IQ%T3Z>?XeM3(QBvS!xx zn1RT6m#x>=SS=Qe#?d3F$pol8y+JhG9K2eL_3J7Qn& z^yZ?(7FHj0UGA`@+PUe}3VV%)n-P50qJ{p(7#r{?kKE$XrcBl8><|sDr}dMAolKIS z+N?P3w9;QeOo=LCwxut8LI6l#X1wJkOU$2ZTYIbTO$Mw!Nm8k{`LW%aXRqq_OS887 z#|B*5Vuaf_(LFq(l5yVwu|6iZWoEylgc|qdS&hgPRK@)_WT~Bzx$O~-_LPLNE*ka6 z&9DdQvb{ee`9-~f;e1P`(<_YCc6HxnyyU*V$e!y`{LNt^P0}nes;a77$hHKaCXIY% z)t?EhoUbT%}N$`(9)POH?c;=GuA6ua3xng?^j6x) zy3Mnqqr`m9xm!KQ!%oGrFS~*T^ei^k)A-dL98&JxxPAw*-WWC~kkY!EuB-8kl)6dF z4;s4=&2+6ILvSAjn6tw>3=5#;na)AfP26L>SeoO=x42zU86KVtS24}l{*J!oDsH!? zpY)JlZPU1219^z>@zYX?q~?uowkHYS;5eKQX6qK0-A&| zds1z*nbyipN4V|u^lQImeY4&Cd) z7J%Sy?HJZp=>A!PK8}KlLVKQ3FTAxRPr|*1Sqc=+w39V5dz*9R=my0q)GlWXnG7Q( z`?XlM%Rk}goIs$BF9pum*js~xk7nzI4p_JcbL{#f)scabU~|@_Vc8D8YR;|eaD%yZ zK=s8BULJ zCHA{=83{a-X6=9;If+>F(V^Z6i>&Zn)J+u=A4xK&(r!q2=b;RazvL(BLnPdpZ|A&g zo3{P!qd2j#hu0n5k5048%jHuh=BI(s@E8bTNV6o!k^s~?o^Tc>{iiIxa15};RgW(E zgTqbXuc^`%K4C)4RdF112xf#6u-9Jx6lLsw#N}n313!IHJ+!M=6)(Mibu*0Zwflr~ zp|{)X!tu`!@R?5e7EVbp@R5()A!L#hLP&3j{JRyf9bN2l=Zc`1h1lOk5NmL=tL}tx z_#!@5FS0~Fw7<;`EZvDH`%!+Yt#a9HvOq4y&ur$fv`ZYvU2Zp7>ePNdbefc-k{7q+XT$HHT1GBG zO`)J!>YZz9=4bBQv-+xAOJN|SBsgIkW+(nZtyiD+Xs`SEqulh0}YL*lj$bX3X`lv{tdIsH|rx>dnjd(2qDUpkf`9J>N zthgouc^^rWw#nPFW6drBYPov6L_OOU#JV~iCw+S zX zm}g}9)mbQWI`cnhZkl^~s$@*izpn5W^=;^u+L;v-DxWR3nvr3LwX6dxv>G`IicG0r z$6lFKKL5y4`#oIDMIyJ zH9`Ch5L;?V_4D_i+2-G|zf&~%&j1qN5Y4e}1W7Jek3~B*1yLGVLwShpwYwJ?mR$2| z#=|O!iu_U}D5<#tX?83aV6sV-&5TbuvC%CzB%FLlBa@?C8ZFDSoqtfnkJKZT;Tj?% zW-`EmSMp_bsjRZh4!%g>xi4( zq^xVlvkX|u8x7N74QE$>`((G_L{Vmr<;#T8%PWCCpraRDbZr0j(P2IE;p`+)uzC%E||}4-~EAs@@I{uZKxfOup)Ca zSp^cu<|a3o<&SbsI-%xK{ud!h_JRZ_#Xq&WW~vh72UpaTNJ`qLY~A~C@a*@`y8UYF z9t=aPL%ar&1$U*teh` z3=JoH0sn*(E!w*~o+lvA!w94bvMGR*0R+|pkjd8dE5I#}KcSzVRFxg-irt*62!7aQ zkscAoM)|RtWoU5@8IDb9J=Qae3LbahA?K$;aw;`M zuN>$v5%RanfAA?kSTX4|> zim_96TS`}|t&_s`9iDlBNS3&7WVp?!R||YaKP_N0m+ZyL z2$*i?0(e*3`)2T0Igf_J&)dS>Ul^4?18+WZ-4GHk6BHd`2~Q_$m^94e z43AR7W=d1h{G4C-V-ahVW9>J)P>ZOjuHxcE>2`}->>301TH!cq)5BY;%wQkRHbP$? z&W4~L*TW~Xc#Ep4upP^wucfsQfYlf^GX4_{cpk;k;U<^>-)&^0uU1m(H95ME#S zixjUB^K&=3PC->R$r^Bl@+W$oC)d><0(T;`(1H3iD{WwrHrw>(UMv+mnW%7*XtP#$ zEUx7U72~h4FVg&YDTdHH6&A^MZcvD#FTrTyHuEP^RVMg4p*19>K`WScx6|0I8bIcg2{G##GW_u32G@CaDLlMrwz8j&^-5j z$hM*Q3mLNumV+w_iZJhlPu?tsRu%488Pfs^I zb;5KU`1LBkKd5QsS(@?NHSHr}ITzMiP@Y3`5_r+d9?FpB9Hq}pAl+Q>{&>h->bRG2J$ zI<0p;4sd1Hy(21@q|@;IQ8=+(!N7rVACgZ){Fmt)URL2hKVA=*8FfRC#OBuLl4T}9 zVBoSf;!=G>wCHi@p%M{Jr6V6EAzI6Al1AVEMRIg~*1G?|he=Z_W0oFB)tdC&CsSR+ zvFlcqGj_~FFt*jBOr#`qpB!~UKOBmTKQm3w$`OXge78>su$^S=D^mcg0Y99xUYMjx z)oW)xo~x(qhFVfsOOnCz5(#o8$wf^ov|&ktX3qcdqMVe#6oOe+Gqk*Q zotWv%3YEcB;Jb{U(_aEbgP5&r7LBL-@Y7jk9p`id0WS0xx``&`E0!LG=)eq2 z!0i97QalR6%Q``R29Eb0v}mNyFnm)a%3$(xv?|eg_uzHKe21;m2b&5q7*z^_#u12& zI4wapwdHJkRNRE9&VRs+Cnl;W@gJk?rlVlSxxwIk=*81|N)mjk&{^iQ!#`w}GM|^y zUa1ph?!u^^#C)N7y$o&;IE|<<&F2d{kwuKT@uR7(->R>^=Z>d2pZr?l@VHN8Og49G zH);7ZNHJgZqXIRiif>FGk&2&FnVU6jjADYRY-$5_5kkHuW>-U+A}{k9$%C3iV<=4Y zg+pn$jX(-aVCQ7l|8jpC-EBm|I__rFxu#a0YTF>1Hy%-dm&7|bbHrih-bj3^%T)h! zFb2*iTRB(|z24_Juiao8N^%}CXi7j#q^@WI z{BT(RDJihuUXv@?NspY47O3cxHXd17$ylx5js@wnJW#1or7`fC%BjDLVJ~!eNkeNl zl+BOK!J&qLl(gTj?pGKc-&s%N>H|HzBO+`2hOa4qne^?gi*m&Es9&k?l5aG*JbddB zkCvWOmYff5+p^>^V}J;8X`c;ACx(Qql~^n?)NLSGDrNmU3n|&QK&UWbO0ok<_KAi%e9zr~B4-01H6_N^}FUBwh~Zn)-3B z!;*l+Yko#j%LJB1FR0}ukku_N+xN78e6~Lazv0U@JFZF5l zO3X2@%#0@?g6Z&Rsr$n{CABEN`)O$N#_huK&ku`e*Zf#8xZK)$j@-tHHDY{CiR;B9 zqvbvGPC%OzQ^jJ=G`{01Wm;?N51syU!(eRqh1*ubFEj`lrN-I)+cP~$D#_f~q~B?m zu4_Czb;#e+5Vp}yO-1s8=oJk`^_G<_j6d1q2aCRdeFV7AMrS%P8?(0B*=nI{n?d%p zap@v8+1`sx=U3>|7^cGRSoIU0?&yH?cIzL>H!26<{>)x3qe{tfq`8S0_Nb|a6&rDR z&_+cvI0r~Q3-dAB5KFd)!YxQ`HxQmCjLJiOvay)rES%1RM z52$xAVqoTy{yzXQLC(GuUdrfT>Lxae1s8^{BEL+0bxsf-mW-wF;2t|HV(VJWdaPSx z!O1fT#qPFmDJ-fnJ)Z&1rhifwNX~nrbLu z4w0s;GQDQan&O8A&}n+~=uvo#8MIau99#8HBMuEEu%pq6&$QW4=P;@WKpy;#j@5t| zNLNG={@O;j+D=WJ5=D44Z53nrF*uzr^;rp5u3W+89&V>ugd&+vp{>ev%^_$LWsgxl zT@7};aomTKSHo)CB%N8zKU(h*#ZsQ{s}I$yt(e?axvAZ$B8hn3o}$CiEQ<3pJF2m< z-35a@|Ikzd|JN&n$ciHKN6)v){T#}PS;EQQFh&;TG-a9ropN~I3fwNrwl-GYTG3#e z=`?l8I8@m6@H*$V^8V`4Da3Pf?mTir&IX;q2p{tR3YjrV^iJTdD={1$O(Jg-I=htv zXwi^|ibr6~XR&#uSLKc+NWxWai*oXHHM>;A)s@i*hW$|$73C~$xiTA>L)MB>f4G=0 z_zv_B8z=XPiqbljNaB&kYHaYjv9-#L$#@czi4?3>i*i~KHPuyk;DHCRW%FiC3=iVO zf&I98@?%(K4twgF)#WU92bxxILNqXi@aRCHfYd_g@idS(C6qI$uF|HW*6O`htZa0m zwZ@J~UrY?zm`XR1HCT`nRWMNTPJKXPd>bI4)2^h zfzJ9SR5{(Ka=8%`L-jT);(t%Yq4XCs^l|goPdBgoU~dn+hoRrvpkRcNc3zWBxV z(qP?x;xM*u-3o`@j?S)5F{F&BudBruUw8qlR&^;y=*^6)a?p9-+}xy`;5F4uTadzM zpL#)Jhd=ruD$RC$Y0twlmuAkLJU+Z|22nB8<`wxNeGv`Ev7^JKcW62>Jo65i!$RZZcD~Bc>s64V6kp(t0e368b4W0EK#fQp` z@^bKVe$NPbkHd=bkQnEJHBFUZw&v1xd5?G^k4QA9oTm;OcWIF1br|s_5Qs2hdUoej z3Hme(G0A)q-f}yqDZ%JZ8nL7k(%W3YJjaI*A4Xbq2DiInPWK``MWa!fYMEs*?hTCc z&4ppN=J6l@um)>aTV(!_{;s!;?Q}T}DzDz^P74kk45M1qgh=|%$kl5oMwZoe*CSxO$|B(?fQG4ml!K2?N@bd+;#Ok*J!JsUA5(&g?D63NT)iH31-Sfkym!F5$m3)RSwa)g5y`U!hz^y z5($y99OI14d!|=lpn zc8~7<2tGI$EI5D`yJ}k8V%O)3qt0nWjTjAcX?2FSNG31FmKXu@0~U_D9Y}j;CsKI% zQlt=lxU4JJa<_O4rhFPZS6894(RssosCJ7{SXE&`SCdOcn_eCXiBfEU(1ZK5%OJE>TU(a%jNJO-m% z61?Ahco@&mq%j^4nYhxa`)HVk&$5p0s-~=Tcre`b2c0ftL?B$EmuflPJK*m$N!cX z<22mM=jKeXt(6`F91cB>9E&RFYN~8Y_Oc_J5xp^kjt8nxC%mz4wF@56^;~t#Crw!m zw75m?2`S4oD*Pms6E!odrlQ)GFW|o`Du4=$4v}<$wb(1o%8AOY`iwj!d{>K6bc@wR zN)S4;TXWdCw?a8F2@dO#_k%dNKY)pm6sqgZa?64&CJ%^3a~SC>ZmnnNS?LhH(<|!r zLr*dXuR0ykNEQd*3E=PtL4*PsG&En2FgJ;8y4W2>GAU2H#11_=P1ikHi?q!Bgy>sV z(a*acs)9-6=X}92a@AN69!rWmPoZv&6Yaaan7Ax5LT9`qPSZl+$%IM+rWajf32D)H?s(KW zZzp}qt@fMSI+ZRv8`d?qv+Qw;^&!f8rE(TU>6Jao;?(~ZwyFo=&nI)JVkJ6aqRECm_K zf;`RcLIw1h;3thPBi2@%r){|&OOI;?7%+jhK}`02+J@P*U(-KU#T<(^&Pedm-P!IV710v$H&!E`dI z#$~p44o)WU)=8hrowv|PsNT^y{_d?|~~&h>@{dDkVk?4W}-H zL^_KNwH8c>0nKP-MkSYDJ}V@4Vl;`j#Yp;v93RU$hewh)Je&~P$tZea&eQT1kt*Nq zi^IlTd~&>bMU9LydBX-p;wgXk-?NO3OpiaavblzqXZ@j-|;E z3u1{fPlamMuH*qhU55Hl=P~WHhk+_-%J7S(RT`g@m}TdA(5?Xt5EmhJ!gVC_XlSt zkYMx>Q;bZb&@%7=#7Js(dC^=^S^V%iSjcEyT@#KC_M*=>uC~B)``VVa4(wgK8J}6R z84s-9fcsai$DYo0Dwo@?j^ZKj8M$%)stwAC$n$8({Os6AIC=FFzO->SIx24-f&2QU zQ;70GZpXLy45@_h3@s^=nhm*vP_YFxN*5tlDt#@8Nr?3(da zj;OSe&z@(xftiGJD-_T52V$skv#{H(9eqoIw}qb{yc9;x>Rg!o%cRsIWqZ97fly9u z#h(rSXc8BOeXyI2DmBP_9Hu4kH~f7fok91&q}Ygh6@@wz8Re7E!D`W|JmNt*ac3E) zX~<=v7b}(e!Oe_sMtgE=eJB*hBab|Sy?Y;&bLY=zNVm+{Y!F`i!3Xan9F8cberd62 zCb;W{&ee>{rMyttK0Aye8#B=uo`1@XtsCcF$gZ)@gv-52_i@)7`m=EMJSnP>~w;I;FRMao?ma;E<-uEFgAPXyK9 z&08x_)9HY>)vn~+(8(Zj1}k#QU5Jb~i-yo%S&h$by${c9*^Pbcx2dY^%xOJ3IgYIG z3yaBwt?iv6m#_1Hi=%_e3CC0-9;+2kZQ6m)ZGQldY}lrXF4nuf7@HD#&Ejyk+gY*P z;7$=~=Yw?xeITFBA?^?3dqd;cR8@grS<#4YUkF`h6Gl^VuJGM87BjXr*1#${<$Lm7 zL|ALYYA>WCxYLkf;tqj{Pyi3D-6Z32-IlmC(Tks+d|PCw7d4J*k#Xl#`k{`x#%VJ9 zdmoCvCBLVZmJ=SVi1|){G$wiiBgMJ!$f)s9IEPbbS&&X_jVdGl?w|Y!i%flBodp|O zP0H7Pc_6L$Lydg@qo0KE=DQKK(?We&;tfUpT7!mJp*c$+>iGeme87&qRp>mNIr6R4a{o=t1B-1&SdVo=~3qgg$q#UIz6vcvBbd*-PP0Ats z{rAT(;0e!W5iVBRU(oAd^+mqM^xtgynF0n}oI8dZ8o{o+#bI4&= zIlyRa&@kb4bhGqr;V`KJPj>mvCB_q@OzALXj?|wV`2d}jb=cd!TKZ}B2gr%B@U!zL zk)LbjSK+f3;ZxjdS6=jiV4sZz{WyN*0(S1)1rsaSEHOAg&YnGsus?w3#TcFqADlmp zGeiA_F_|y@$ulv3ZU1--Eav34GctD(G<*{<#mmvlVa3z4M&a|fiNw4q$S=hBZmV;^ zAGj{3OJFg&fvGSqj|CO4VWcRx+%E=2ekvoMqt7X*$((@?5>=CUNy(0C___ z^o~}0Q;5KXktXjSWVTGg*9mJdTf##Ssi-@taRMuxpJ4P1Qzh=`bs~{qqlE_~1|s;c!lV zZ^o04IC0+&8|tbJqCaL43nhevvxPBP2Hio!Cmfp7^qvE?3e9P%p@3UCO}RZkmBhAf z+iq~0a{F7GF@%Q9n5yc!7&weMbZ*#+w)Hzy5r=Ycd;X%GrlKq*;|b*uWtG|4K-==b zg&^)*T`})M9^=6j4qpt(^($}ctPDgmc;m#BD3zihFGjH!r6DZ>_u@bplc5y)CX)E+ zp$YgR8GLSc4W8Uug*rxuE>IRzhBH!iTZda!dH&#B07ou|aPVRf6JmeCCJN{hD`4C< zG~kQlN{Y($=2sY#D@zX{YVtuiQ*>(&`}nMrZF%PLuZp~)~e^} zOb&-H_z;YXg3NhyyXVZNVV7sx+Sp$F;6^aw^wj8p&_oJb+B%D$&L5XXhlJmq!PmCl z5Bn_)^iVR6cYDu4$LNo_%zJ5nRFuA*E7zzL0y8lh^x<^>6>QnE`Ic457Yg!mI!#S7 z=N}Ndn+aCp{oDPoB2EjeETUyTV5*FGJcTp8OsAno`z;pA7K&GoOyc!pQ%FMQ$6_Ms zL}sRAaoEMEHqD5tW*7912Qe@iMq7;wUG*N3eT(PqOe<3Dw!mSLh2|Np&Z1!D6FDZ&$3@(I`yN&m@>yYjsX!;~#*G`5qxSUa)2cc@ zj}qvlXVIt>J9CL6(<*FPlHk;vb8!$MW5#v53bhLOU+$|w`qR}9HczXpZnrte6sas?-^(~K8^smfy z{+KhyG1})t|KT7^)f?ex+6l9}1qMq6!h=1i=@4FS)*~hV<&D=Jrp$!2u_lLD26DZE z5D}>Rpf3$XDutOa20c@x<$9Ray}*>=he3S?GIMKQ#t)UCX-H` zUw+V;I+LuKr?u~LTx4HfM1mfldAbTVd!cVafh^7)j|eTvwU@v-WXgn*OC*#NC?|3- z8BWW%m|$oA_+q=f%{F-CFiYo-o{Jzb7>BdQa&6mwXgGnM4}3z085vs-nl_1ExW*;t zT%QAJk#CpYn^MoD6B(9EBxRoFWIRpC=@$PS(?A9v4Wh z;l!bFKMn^Yc*^Zk4pP=#_;4}^uRPO6yA`Km3A`VPVN0dhFv5H5Y!+M!M-hdGvzVc{x12WjC&jkKpYy z$FO7NYIQF2n{&LzLVgTQi4I0xWjUXN^d)+s$C1a^zv97DkGim;)r`6tBRW@DuyvD7 z@z&GbNiqW{mjL}kk6tiasftv zA2s3Pr*a>;XQ=m7;g7}0Nin#X2eW_T`ZLT#B*6;idQ}W+zNlp(ED?mUq}q2lE3S-E z`Io7;Sb@*qi;)@2n{nWLP;K9A5heG3e7*%cJKgX_(uj$Iyii;mj^Tg#VXs=1-!9kt zpT5+t`XtGSj=4Hc<_l2_xy|~q6%IVv=@5gY8qWKF4em#N8@Bb2!qu@A_kHf0Sg~oB zGRPT;Iv&lcgYQk!_gyV@_~sw{N3417x8U0MZB#t>A7I=3G%6}Q>Y9(Pup96o zoS>nVOyK_e?^oOHr>3Uh^ZDcpa)jH14zXvSeHK$~T{5rZICC|qB6VhhEC0+t%)(5ZZkY!>gHJ5l^#I+TGS2l>nLAg``nifWmOb3%_(;SjwX z#ZTr3gDww`F%7FetI}$CUCY1^1r1(C4eOy}jy}b+7T8}hZaISqXZrjqskw^rAK=9g} zV-8a;ta6vi3om@}hV(v50Tz=YFJt;3Mx7>;1sTFN`2Bv7UCgVwz)0YmKxT>J@!SU5 zxw7E6@drfajc1U_8%Kl&n~0eTb#2~*_u@Ty?dCvMwc z{YbUSdD`>-l!`8m2hzB5(681e*F09Ew&L^LnUSdD7b41WYPRW7zuJzb&Be;$OY|Jm zK>1;{BPw&_W;~v#ae46d2Oq}|KKcdrUpRz|Q|EDJ{5T$3vq^YeJ^nv0eg|g<#om|& z;drdTtCqU`iKtvWpeo|4E#KU-UB(k{06Sjf^SNLce{#A9?H(ukl4(pNQ%FS&s@OYQ+`lao6EK2JhP0?XVz^N5}Qsh z8L=PDW*sa-lf?1vAXux<**J(TE86ipk3FwGFM;Fy;OdRn@4uWNeTi-r4CisGJ5k6l zTm}|=>Jolzw-<`&&P=^!F%@cFFt2o74bz2P|2`+WXgHF?(GziG^D?&F>7qe{hI<}d z^3ftqH572mNK-k|DKx^5mh32UF+Z}CeMt5kLh`}^QOIUjZWja*r0J21$cDy|3r`_E z-h;%s_i*OyIa~>dl1HP20&Ss?=kVI~Sk+Y6sxuQdQ=zca&GM1n3KX1O4K_4XT9hF@ z8<=Z!Sd`EOZ3&$Tj*A%6Mlm~{-BFD%?5TytY`~?F82;wXVRXrJu*lUyzf!_7K@=Hk50BakM&yh{M&(%4&CxQRh4{`61(6bB9*z=jPQ=IofLuCBprulx+{n|8tK zDEuZ74WsYOF+AH+ix!6sXMDv1DqL}2$h@H8B)=OS4I4k#3TXyGa%!^Twl)138xdYZ)L?Col)nVhxRbsp@++oM9jB9EdkSRKVZiZt+ zz3B0c7ozCq>f92eYG`51|kTv%9_F`gu0{hlY zubQ5cIr_@6k1!ncFDQDG4pT>#m9i6fd`lI+x>snpX6d6$iAIqn8-?$Z{|=2s#O@Vi zk@J0lb0nP*12CNx{!vJK;*TV7e#DRFN~atwu2ejCiD5An(iikihScJZ!)iiSp5@YL z0D*X_5P^LQ=f^aV*9mRKBViT!$%xO%$w~G8H-GatRYAJt0=N1zuREjX>A0mMH53ZL z=bI{2%wMd2G6PnV@Pcp*+c#UWZBv29SllTist}#E58da$#&y@DcPlCknDS*&Q*Ffa zPr0rYE3t@Sf96~QiMU*EId@qU$1pY?Q(L@w5Xpoc=dZTGWS>HuG%U!b^D0WzXv`uN z9FX5!64qjZ(dtDi&SSI70y>=Qo5aSJ6-diO+Ssyk+HMF&m@*3T%`-=kQFD5U+aHgizR`%< zIwP_ocax#G(i@f3B5#|Ge=to_Duu08ZfvirKu;)&bI}AktwKLSr%l3B8|C2ZR;LZS zoOYorj&FgsGQukkO#}+hGFSOM8<^XZPG2tIafeVTxJAwTS=ue%JEiSUY}{G=;5wML z=be+6&_A4zN6X{0Pr0#Xl^Nr)L7Y4vLZiD;WbO2M7MJ_JC*xV*vx|6+xj@+mdi3|j zap`h`nIME$QOC^S^tmKHJQTy#fix1*_KhpdqW@ig{tNOsBTb_T<`2&+|1x>@$XFWh z9f;wFF9k6blJ?t|FvXdMPZzXE(|Zof%yBe)YCs__$6zpp44s%~-bVcNn@A6wSz3o_ z5sWNN^`DY^yn#gbFOZq&#b{Uzt71DA3<`ER&JIMC!7&@$4(2?(o~LTQXsxxWh_>0l zZMp-Da-|}$6at^C?3on4{X`QU+fpfyrc=WC_2W~jQZfy0KIf(3m^yBUQGZfZ#b;C= z^O?4Z0(_<~qMSd3%WlNi9&W(qRy%ZDC10x5UN%~u#qDz9sa@;P>r0_~ic0y7TfzA} z2M!;{SjL9u?_ZDq`Qd8(zxP$+i#uA;8`j~w|N1IekYgrn-a5Hv4!!;~p4#38mqW&w zQJOcQg9Ssb$(8-}ZH4@n)ozQ*Ia^a3U7BSk*NHAKl2)h_K zG0`IVcx|HOf4;4*5IM_eh=oEFX>ReoFciU$-ygum!LW+-R9z?s9jB_l3jeFTv1$N{ zVE)3wH#eg2-E|C3#MSt6&heURkwmV=dvTth>kk#$AZ^JrigP{@XkuiLf=`bQ6#l*i znC@V)xZO39VjNwZ8Wol$=gmjK7lSh;$1E3tm^+oJWqPCyV?mjN90#^-u3$rDo*Qg-l}D6OrgUI(VP|Ig zpyfbKO%1;Bjc=&x{ERl`q2r>+QWhdAfzA{e>m6IJJ9Su*`Gx1)_z%Bdqw?ep45wA) z=8Kn;sIN8R_rG1Gj;4m|3ob6F0qrejL?am)?*-7#TtOZ#@+gzaq3`4CMqgYPg{|Qf zrc&4G+vYN&pN4S!Yyj=m^{A_; z#INst0`;C^fhD22XflDn`Nb>v*N@*rf_nNAr`jkWkM>S0p88@nzW%$7_|iA)(9~p5 zK?5ou@GSbPniC>R=`eMejCiK07Q?ADUi5{KkanA7vaAw4i_X$6iy4Qx9lva@jdNj2 zO{hikr(6d0O=dj$tQVbKCYX^b*a8u@dlubI^d|P{Oc_k9ZfuqQe-f83>9GI980-wjA(;Hs!#g&ha`>PcOOj)?IgJPJ z+k?)XpFwp^q2N$C7*KKXTsH>B1K8D8f#%&$8O~jK~boT{O?XtmbE6{vAomEZ-R@Jwe3z1uV z&Ok(zOGc$Eb{xvVdBVuw2lryvu3hRr_4V~Cr|FIzJ5+wZnYeW668`v)|5%+rGf(Af zuf2wr4Ljf{8Yl@-vU`plz!Ob1>hA`-6<5MB_?V7hF%dR0uXOTzZh;yYi{SE52;;$| z$~zhnBaepBnwAPwxh<%0m{DC(Dm11;P1{Ck-|W@n(}~En?fbkob@nwfrkgvw%HcgY z8B;}p=qx>Q(T6KzapYLIhYq3n=Bwg3X4A;Xv9YcN##<=X)(Sei7CG+HC#hMS;3bTP z1Nh+TMWpEXosW~2?UL~b1gDhKlok7#n~Yl?5BHphLB@RZmd(YJmmZN&2p2A1#C=`s zVYgV7;dZq50>1mf8%T3Z=Hti~u$YQH8%I`*)o(o7fUd?HcPo&-{`KGlK0Fr`BPxp% zyOq zCUfC&YySF{YQ;~M8>CaO!-7FyRHXngNIN1rnXB`iA4TN!Mi^wSM*=={tn9!GFTAk$ zxiCkN4-O6vqOY${Es7+UD+WPiiq(+8mp*snJWr?d_=~^y;k7p+7#>LD(6K_~Q@Mk+ z9IKwwaO6E<<~{Qy?CJtHy+u%_3vBRjBC0*}yfX4wo5CP8}u_bacsl9ZMoI zrH9440x5qFJk16b4cRHGX`|=?kxT~Z+5Aa@%67Z(ZWA&hH&ekxK`&XXTxWli)yo*P zc35x7U%J#7A4%cjnHcgW^4X=oS0-;#qG(cdJVuJT>MYl`*mM0mI3zMFlSfUL12*YP z7K&nu1dGFn`t>d_Dm9(R%6SR3J)Z@>SPZHJZsliH{efda=*XL7UgUC1NM{kbZYo|# zRg%fdz4K}zkNrj7-rau%M?|iS_@`8%!K)J^!ry$V2;#BJSFv%O1zwL4J-umF2ys7oa@1BtMpHHFEYryY*s}lPjbfBZ% zg1GRw$*C;zypGMaI2~8RF9)LH3pOqBEqF$C{4Cgq+{=BiqtaWxGh zteA6jLX6cr4I0Mrq-dv$eGabLCgW(Xw&8(w)3+kB5L7&s!|JAjvyo9LCETp|6~TO< zbOzCQVLl$BrP`{h9&?L+IU2nt>{(NZJeAk%5=3Cgb?RzruyMmiL_$II2Q#QO#-Z;& zRy<)kY*s6h$6rQXl*nty=V2H=fp$k`nxa*LC7(o{UX;mT8qr7un>KDht=w}-+Ft}C z1zKxt=xB5nKe;{pk(3&vnF|rzI!=^3GdMncw({qz_c-LyWqjoMmlC>ULfU1-Bab{H zx_d!Xuxd1On=+^0Y+%GyB9TyzqjE4RHJM6@4RzhQpAkjcIHNlE=1R91M9D=zOP)?f zG1&6X3Pf}^^iHJ2XbRwiGZT3I$fzpX#4*~|r3Uu;}6}2nW``O^GZ7)Px3K(6w zrNfIA4Nm1K^TqA9 z_n#dfLX>;U7NY12ughBOYD?Xpz3~$K(TH;PKec5yUU>d<#gmo?tJki)op=@Whr%nV*c3p8dSrfw@gb(|TMS38=zMtZIL!U^N-h;IZQh3r{g9a7Iz8 z`63#Nf)$8a{OMM6fzhaE&YZ^n{qLZ^pT%8nt5+NeV+nt`># z1hf6-yiYIxUB0>!J-uDZfl8Q;Fb2cP8P!xIYF_y<-p(hoYTZGA?$J!@r zvH1&)@U|3qBa3jY+EV*7`=kQ$qri5f9i}P zO%CA);TZn@(t!L<<^^TmqUQy7vlVym2&^*BtJd4`^sm%l&u66HD3=)RT|{2)mlqxA z#l!Ezr}DJlh_>oFeC>h9ap}Anhd<8a=}iydxo!80o^YMMh*SMNs^Y$3DN>s)1oF^2 z;Y*Kx#))U2aKS5lfnW-hv~=&czUIXr{B9MVecYuMsHoG^=32Mff^U4)i>?llvy8;Q z8*SI1LBpcK8Lvf}YAE1Vk*0(&dKPkNavRaKOhqqlh6__EoMKS`wf$|nAe}d|X;_iP zeQPSSl*>Y~+k?ymNe1MXlC*3(<}Q4LG~igx=8@ z!rY?8)$7GTl&p>G)?v%$O&B=&0Y2{aV@HDpwW$#ptJ|P=c$J|$G&H0fcjm|#5|=&_ z>wks=UzE&TGyuzrtr#00S5ZKjOd1Y{6RArdVzU1t&QGSXzRrr;O%LH}f4^LFc=7Eg zL|L>TgFS1jRT_i2fQ2g#ou5+56(dov6<`sCv~MgbV;M(#O@+#5NYGiwEwzk3EuG8X z4*4R5XsugBB+d(BoG@bci!Zz|YeebIKu5#C-~gU~{&__sCD2)M_EHZzckGp}E*PJ& zpdXVx=kQQf!J$ROGdY~`hmlp!vdDQ(unmlQU{r#|R)|Ouqr)nSY+K#+xnMAwv104f za8)%IKe-V+$L_91aI9Cz>^j|D9tvY5D29wf_@~NSD)%ajv{*3Y8X4iYHj@cmRX0Xx z5N4YddaDHkQ{xy5_~EwMg&yWc1B}|ZGCqu;7-toBhsv$S$itb42p# zBXc${<2e=beYGJ0WYbA1?`8zJ>1M&(-l?M~UWBBiHzk>HJoI-}rpbB!$e|+eu zY^yZlt9$FF(RVpGN7;?NV{uhneoC?yNjF$+%2}VnTyL2@9pE5)v`g*Vf?KXP=u^ z&AtRWL0^6KRs7xG{T&V+`WWZWpT~zEexNGdcXoEdVkz)`F8I9k(u?@s_x=%Q&z{B6 zqet<^8*gA@VgeqIM;$Zaa=FpneFg!)zc3Dqo%6GxrXq{=T_&vRxKT!NyKyv@!^yKr zkvV$2c_e}DTWnarW_AZ3*Qk1~rjf{*kxVZEf1L?FztM>9M>2tQTy&vI6RO(n zXxrtzmTy);ZpZs8=ct^X3TM=|{Lp9;aeqejF+ZoHl+IL@3swFvAun^81*7QbW^}P$ zmq#)rf6M!Y8jo+>sT`@~vD;UyhE4Q?u*lk|@BlTBmx6X~1(CfbV-Bk~ z-l&f=zim~W8JEvRMUF@Zm-EML7J)ucAzu-?IenjA&@FD7qN!jflJ#+AZlKa{r99d(=Or zQXx1*2TY_>st6^)ap33s)^EiVGG?rj&s0?85fkBn$cZd24EN(-4!wtXE{_}?+DpxA z#ZKV36uiN5?b)s`bI2id_8VXE2)z|}S|XXlk6#X{oUFh0#R_;UjA*Pk;q_lcRFSI^ z-zKkS!7CPjQuBJbX-vZ>A6lg8JqONO&1tHkfZI7uQ%Ts6!R}@oDs6X`;U_YAoSjI? z-9=C>*2v;k5py07Z}h@yp8Yu((f9t@09Y;Fc9Z<1Gr?_^C$5CiTy0TGz--9Nb&vLh zk>J+2#XLtmf;G)fF|ggRm*u4*hI}cU6s6^bw=FM2OsuTUE4&r#f54)OdsIrOT z6rF;paW($afBqAE^wCE+efl)EHOT!YXRmmgPex#@Y{dWX@BRt<_wN_ucnlj?cOZ4_ zB~gsiI5n2UhI%_1w>*S_!C_pwe5n{!un5rT6XU(B(TO!JET%Gtz7XB){6JV$VBfUD zgZfI_wJu~{q_cfNRg9~-%6-i?F^VEtS>`Y;VZaw&Ql}}m<*!}63Sautmqp*5ey^K> zIR*dmAHS<2QP-@wUWkkM;SYZ(imqK1f-)2pWs4XxYb%^+2#%`1iAW}k6TT4ARJfNz zsU%&e5^7s@DZebMn$~yjLVd>$_4ln{b5$vaX=G|p{-SbS;1yR!A_a%(QbPuQ)Hi{3 zbxm;2LZeo91;!&mmCx;?i)U1hHf}qd3(gK*#oxa33Xb+(#G1x7cx=uaia{|y+)HPV zqA%zxJl|p#tY|10&4|l9;kLBipm-dpls&Sjpo(Zc-kFj71edA()Erj>7!-VI$M7Fh7yA{8`8MsJuaWnvbGy$)}D*da6+hKr1 zc(d88SCH1;2kqqf$FFMqy5 z+B$nXICd-BEjW2eC-zuE>2!*Zab7QU3~qp2Pjsxj&`lzoK}CZVR+kZ6GiY|_5fPn% za*fF8(xTH99HzwRS>dC`CK#+0NKRcs{TjQfBl`u+UUAoW85Cb2_Uw8|^@t8BF)8%`oV9#f9Duip0vx*A$ku_3}L zd}c~y<>4zAu)cYP=*<*y+ksJ$s|n#x>7|(C zB4Z7?3|6kTt0>c%sIE0*=xPEH?zSk&CeBIGPbWl|IoWqvrO5g4!Wp$#TkokV{_;k! zfY(2M_$CfrK8FLM--LyyFlYVJ@v0&y#6-5!DXQ`zr-d(4woq3s-HYd>;@G{_f*o55 zx*nrRncMW(slsB_rgeq1D0GmXI+IXU_g8mW;H@aoQkB<$x8IE-w-k1)hEG2@sh z+N*I>J@nqL;-~Wii{9vKwqPQhFZ9(cj$;}w9+w#oen&-PF_0lGLya=v+n{$|*TBx6kX; zJyjIOVj;?wON^48s|&@rZUvGrqjNvLFomNRedug*s>%acj|0+hg6%RgG*s@vzD@$LvZ~>JKtuU5F zg3;m7k}XTGAV|x+;PWge7)|N6U*};as{_@obC0I2Ze1_Gxt@N(CD&3zz8viqLx)8k zzJKx~jEMr372d_lzKs41i{YX(8C8F!GHF#2J~Iy*U=BF`CY8yk_gRwxgJD0WVqt{E zI1Pvq@tznrEJkIZ!*nT(NJZp%tnBE3ZboW`pwP*8zWW{g!#{infBiRq10SRJ=72;p ziGTk7KjUxy_HXgu{_M|jnhvZP@KjdH+%M7I%o#LCNFOt5pOK@t19<=!ncC}YsBjdF z_FIAcwXN2M=4$J;bP=}#oqQ@i0BMfK-F(5{$idvmrHG}QVJebPc~6IZVpJM4Xs$P@ zd~F^v1gqt>r9otKy%C9QN}a=V`I}pTw`}lA`zZ$((*6?U_w21bd-fFmF2le;ztGY@ zs4e!ac26g0VOwb)E|*gkwqp)vrVc4=-9MvvQsF#q56{EtbfT%LS-pSp#g}mI+_~b_ zuVd%VU1~9F!Oy`t%YL{CMkjN4^{p`eU;k+gM^40%D%(;`&_Msn=PR)9AqRGBwc)@1 zkzJ=pf; zCR8*QoIW)&|1$m+==97^Z(LB01=29s3puY9ZbF*82Cv0y61)fR)w;tY^eoTK3g3%` z%y*M9uOdJ1G+I_zMgNg8SR$EDq;qCis@(7oByjpCqZmCGLClv%CYi&P4}3WGgCU%e z&-oe{h-2+~JHGmF8t{$ZZ^CcNp>a;7_}+phsSx_qy;{g-aEMY7iYEA^gRgzBNytGejqe2yY2YU0=i~ zhuNaT*8ALrc9+vH9nlUqLM%QQ@M9=2g-c^Yinq=N>NUguDUl^%jKziTu^<;K&EG~| zEgT{j>TN0=1s(8a0Kz~$zmv2*5-hWAC~Nar(Q1Z2n8n4OB>wX6eK>SHA>ZgwT{&IO zGpbaE1%L71eR%(16yuYkYe|t~NTqf_{!^Fc%@ zhxr@}0G(QHs~F8~Ze_%~XRP+JfY6EF2wIyP(X#F{a#Jya;uG@C+>}6_!2(0$eK6MT z#Cz}U$N1O?9^O!SgX1(Q;}(kN(LWJGLhh-eO&1DL=vJ<1R}qTA$uS)6zKpf4HK;L* z;v&jZHZY3STlb)?eFe7EnNgpcg0U<@C?Q z@#2dwD)RdEU;lMgy}Eo}u~^E10|(Ht{Xux@u2;4;ig8}ocN%7{@E6e^NvKFum06dO zTT8AWi+Y=kV`F>8wW3=Uwe6@~u|?j^?OsNc6;Ywbc!+aKNH>#1&u|zSz3{E2jx;Nd zXCxNJ#qnYE_{MQ^v>%5CdT`M zsBKVH=Kqhke~L4s12{7_h$BP2I4!R^F+OvPj3mDX8c4#w9=LB0YHMqY9~RKl(}N>N zWS$C=$rKWaxQYV29s2tFaq!?FA^)t9Zw@}6ADcF9nnt^fm^~|VJ(-a?vcL!r79Xj! z=5ha;ikt3GxRW5Mz1!_qMbGB#&=zA>C-ZMjW2H*(aZAY8~@E8kTN=c`}XZZmN}Kjlu`9uFyw+;C=`U%YE#jsENaJdr>3TE zaL{t$jSg3TFf@PKqF%*3e`+yUcrVAXe4fcT`9~ud90FFXT#xrY7{M~*YR1o`~sY2I!yV`cWX@?uDHac+n zNLUrW;@0EtV-f6pumUYBY-pB)`8O+T%(!$ctRhcYO@HEYRQf-IoKD(op~G}xI_}M& z&u4_M=T*_Kndmu*l!BSkbAgmyqCg z?IrB{Y2X0J9Gemwqq*Ix3PH_={vM&{=#06@_tNf(cmhWz{5U20($T2^4o?P9BcDI% zaiPO%xy}vcURM(-MCE=F7N%S*r@)FK5 zri$C?>75sz;PYp2@QB#DAH>AolQuDBob+vlG;zzu>kBL||2&NN|DU~g0gS3V^Z&oO zPOg(11Og=75^e?&!5guNP>W!z(kd=%?XtEk?UtpkOQpLie|}hY7o}EN`l}S%AC+}e z!ELNnELsrJfENNHfdGLJ5<*pZ;P6+iIC88NHFZwdc%@-)=1ao$fmoUjIQm%<5UyHSF+`GSW;fA8 zt1M1@P|}PuB(N4#(qMkx_qUpSF8>YxEnkDL)fHJO5h@LR@s^H7_RGCU=H-=a>6qG$ zRc%)cCgGm{#(NpNC(6==ce)TXd?kzoN4AoUqDiO4+ToDh%^;&@{dwfr37R|@5SBg% zdn-raxi?B^Y`@GyQ_9x;Zz*=28-dW&>1b+h#qrbUR3!bbB0t+5E@c(PlW100^a`3d zU%W^I1PMsV<8D^bo$FjA80*4sTT?BdKEPmrYrf1$m#GL+*!X@!?n1ICY^J z&8|q?cSkx#dHB`zgiDE+yY{5e;PWc$Er^SXL_!QrP^={2^~O4dC-GF49EG~8<eZ&R4zreRXAR2 z!Z|ZropSvMRTIDQY3aCWRF?A1<|_tj2RDu!i%BC!smUTQUyP27L>=9y!rBTGTcF0q z_p$#lDgder!$(}|J2uJ?)n0e_BR<}@msPB^@>G!WcaG5SNnC6!BG}5g7yT3~*0_J~ zZkcp{qgG0Ac3!qm?*{54;tUZ~?mdfueBO-lL-Fl9)0O*{?l8uNQ>wd^La>ecIqu(D*n-JsQ%ZVPs`4@I zciyyf8LnTvY@aPnS$XP>N<%OD-Q>gs#L`$A!jmNK!+GG~rSlduh7KN#pZ@eI{P2fA z#G~I`jN&t4_~ozbP)HMS9)lfD7k2J$#QPt%;MUu|h9Cd<$M`@0XAKgQCt%y3nz3W z8*%upN>m=zg1^{8S`n6fO1WV1rp@j``N4XG#|%PfWE>62GzLV(C?%X4sUh3{6Wt@?B`+QMm^=?hmWR9~Xm4MjH!tzZ%p7e@UR)oC7&`xxrQDBoh>FeISa z7KKxvTvUC?u0Pk}FMq62ic$_n#VxAVWP_c`#z7nJGs%M^aO4X!-hZnGpMON-ki8AZ zKde{Ra>lSyJOTEQ7^(x^_Z5M{R;%VJ_Pwni(BY{4taP6<`DPU<-y2?`!GVa_djnf) za%BB4OHXM(dXbixqQ=wqb{H(8qG4@yVc)KcXl=Q4P7@vxqSd{w`W2RoV`yxSON2Qh z8VywEd4FPjoC*eIadupftxS0=57lMqK7nL{iZUy{{LI{C7V!%`_HTOGJ~1j54b;bN zd_NDb{Pk^R{aadd0f$P9v1!-a_^+LRRKF{wWUyg@gEqI{UM8C6e&g>Rgjkw)D$8R& zhh(I4CX%@uBH@VUK%a41S&-cI<&jo2Hfink&{r*}YoIb<#VGehaY?vnkH(n`VQ8{a znRZb}1wk12h|*N>4H6(zqQel`jS?q{Elt>gJi&wLmlu3jn)12sftRo0zK%D1Z{kFJwi72D_?vNovkit>(iSlx~XK#f`k`P%KujDt<9&kAyEUv@u!_}y>az;_T zU}yX!+&UwpvFk)L-amK&9~V}`=2aJ2dBh6oR(2eF8Cq=))HSiMK?5cZPev@41^Z6{K9I?iVOrKiI02m+cQ7I#iv@`) zWy_W!D=SOok2emx9d_<_z1ojoI2;IZ+LhnQv`O)ZAKFm{o^ZC0N^oIpq6;-=nw9_4 zsFVpL8bwf=4Twm{fVr|2ja60*qOK@=u#03s{f~9H+pQ_FsHNHN=xzZTjeFKIB|s1WAEr^9V8r_D6}Z6L0^e5glO%kx6jcX{Cw=fpt%u|;cb|FOFVME zo`jq^Nw{GujR86w5j`wr2MQr+WBQG z`-PeY8CS}Zaj6&*%V1+`mVvQL|X#VL@Y;Ma~w=aC!BKd?G8OxsTz#FUANL$r^{w zmEzTp-ov`LbFpdnJ2+Tgs*bw?4A>YD)NeYiPUVZY9lCY;R3k$9Ik<3GhG)O%EF1B& zSoG!l;StKBbW3hM&YZPj+n;#V0hNn;zRb_S3RL&s_hx0AAP83so)O9Nd_m)K%kv#} z3^KIg7TrIUH>@;GH%8!MYa1qzuslC24zb=6Za0icid5rI1YP67@o`9t>t0a(k_6}m zj*i-!H+3Y4M$m-hrqOZTTF&r9DlOUI*D_3Ap2$|FmkX*<-C)OOCmLYmujy+ zKIwxs-=930O7L2uKPojEfBE7(qGMul;J^XYU#!KCAIZT72TjniIM<0KJ+rIfIVw{a=Ypm7J3=k41o5s$;yC3eucfRu-<>QVOgMa+v z9}&U|qTWmrb*icxmGbjqlMSZ&RvbHP#))&3_6W)s7M8fYSqY`*k(Gphw)8U9G%2gW zVJVtYTR{cO`N~WB2OB$EXu9FDuejJm_p@T+h-7MmY%Lg$ntBpqmB1FrGf@Iapmoy3 zcgmC-weLhrOEZ4?%a>4kwhRt_^Urz4LLlAK=5V5^$%4ZLU*P1)6G{QVzD?bK7opgifrbao3*qO7f$G<+noM~v1FcII4N zHGZ`-4?7Nhii4%aYRf-y1YebvsHnn5u8&=CgnqAXq=|qZ7OQ?i6Azl+DXTVbc)4`O z$PBf#o-LQXtwp+Cge?@ys;w%zJzMFsbt=C&sG+_;mYzw?BlWGh*-4XKdUoAm7=UD<$YE--=zXbO;&X# zHZ~UL&!2BUk2l_T!&axfWPiqt92F?a6JD{vzx$Ya$>902fEB!HX=%9i)>{!DpM*gv zX;}EkBg*=ggIAdwE?xS^%4QCFr2_E<`oe_9kH`oo#?2apL1SYt2{`1&Ky}`6aSRO3 zczl_Eh7OEG^iUpim=J`=rl8eylDZ5#?z)lc`mxD~PpE;_Ly^eYH)wP$hD?aZuxz7J zoHkZAQ;$wR^hQQxfz)nA#we1rM*G%ZG&i;3f45vf$qBYt4%IB}h_AkA#K$`?;?yyV zTF%VT(R+ex-SH#MuvjP^ecl(-HF<>x_Zd{iNy%ZDH9rN$#BhA@RxQR(j6o7x*Ifn< zRJE6$>CStSFm^%=%1T;buGf{-tjr6VQi%QaQ#(B0jHKbwDo7Y}p|A;cBu9O5`Z#VK zJE48Wg_Y(lf7rJh?;ZXe4puIz_Q`c45|-vhH6{+GdC%~qLG5jwEggTqcc=CulD;=ZLW8=}nZczFR&O=RsU0&RX^W|3MX28>pg{jhpbEURUb%9;NaKKcR zr<}K(e%`0@a?yD%ekR_y{P?)n^92=Z3$E4{Ui5}Us#~fN5?n9XKQF(SQHoH8WiWn8 zz>4oEK9@detEpduFqeC3HeFO~< z-N06$)6=3bVNj&c3R8y9<-g&-y=+u|8h}12BSDgv{q#m4ra{n2gX7qtF_&FR9}JGs zM4BVpb41aA1p-?u1{))ho~lizTJ0{d+e?0_S#-{Vq}XsoQJ%67*bnv>DeJ%cA9xUB zrhWsKwipZ=GzecFD@7bVx~aj2kB?h$_v|^y$h;9FvZg4Dn-4$SgQ!p|7Jh9A;&k7S zo-|rrxJUv$EAC1!aNv*LDNQ*FYdG3S7HLzHK~{nsKYkpC4}XO_@Bdq6x#Dc7(k3&0 z5)zXD!%g4BmOt-NOAmSJISWGXzWXjto#Dw^;OTCMl_B)Oeo8Cqw5^^47I2=hg0UMM z2&MWTf{P6;$e{8x=t_D{A1hzank-05j8)bT-mt=<Khv|Yv$K*=JYA0B%L&A zlKu-lepD28fA}Fyo?|g|>_qi!>bRu=DU}@1i{=52HoSJa0^w<6Fl6Gb2q(drx0+Lj zsjYM6zD&R1FC@4RHb!8u9zEY_vm!QO2%_S;wo>uNTwRLFQ(sVBWzCmnVO+{l%vsp) z4|rlq&v45a%@?UB4b2w(g(isGKiz|Pnk3E~JrVb0X5-fMu}Cu}p{A(;yNkX=Gd=UL zq!bu*9@*7fwV^TcbECYFAseQa}!NC15`p# zuETC=#Prz@W6ODtO@ghiZ}csR;$A8)0sCAZtV-;!{WCoO2X@ z`G+qMT^oj>%`s@J4n|UN=C$`A~bOf!iL?6V!Fn$<0lYhOh5}qq4x)C3-uY%K3SWxAK1e3It(%zkQjIQ z^DApxmA_^VFr|Vc^#EJan;K{meVIP;vd~yK<;EK?QJS)1^vIDTsHv${`>a6Zy1@!< zcmFeL)F{lEGn={>mL)=zwJ5L3VD}>oyJO%}mHy0bM}2+0vQXvm!_yrEbK$~;z?7y; zn?t?qnmY9+^|FaAV8@RiuYCTx)9MW$=dtYOn{QT1(d_K(ZqH>!D(4UT2j&+OOiOdK z@)_*SIg%B=I#Q^WM>p5&5$da*tyWlStSXv)OM^oN35wv=F&=VZn=1s3t&u1_VS?#g z3*tuIg%Ez3tfPWa8WPZWt^^?|QE*TmIU^crob8YSY!;`oQmr{{!TGPuYTp$?&)Dl1 zSX}5dPNYWo90-b+SRebcNhy*t#ztf42(6!~zCh#n=~fb1Loo5C_%0)kd&70Eu%HRe zTtor(R|;0{@Tv&qhJ!0JedluLW6_#FN<(BDvTle~hIEHNGo$!evr>5Rca{YVB$M-b zEzNB>ccv8w_nEP8cfESS!wS|&D$}Ef=($NQcZSor!Aq)njN-b+f5;ER_hSLIS7o9R zO7$SjWk+LGE8+$jR0RFV*f6Sg{NlY;xt-ych8&%J`)7M_;zEViE?Ei3iZ1S#bfq1) z@xy0M;;XXL%I9fKV?7GbmD1nWXl;PU$395&W#Q{9**Of&76*z8n{c$C5oM=aP-}9K zET{j@DF5%2pO;a{+37gD)QLAx-cWyHiHw0YSjsz9#$jl@Xv6Wtji{}%p_S^1wY3d3 zv|m-J&kGn<_;UKWJ_p+02NNy_>bsh&`K1dr4+|!l zC9GREP46%sHyd6-)wVYS5(!PA4jZB)LvTX|4Q~AiPpT^$X-MvkQi3Lm z3DMygZOz>V^6?w35ug7E~wb z9%fb$_CjgILP{tJu;!YtH&!??`}&7(M~9 zw|)oVgGZsb_!Q>Pn}@`tBs4WP;nuXC!h9yX^F6NaUsKZ9sB58uBC zc8gA)92_YxL3ypIS8e&SP&TzuxpM#-wOqcRa8UjH{EIKpY~^+lSUEXq44gOnZcLgm z5z$E_U^5KIu7efW_SYhOcA_5VYOE>%;Jwp^;NCkY;r1C{!=Q1qsqeWFM(TgqdjIn? zXJK(TQPXO}2j^>GrZM$_Z$E;>wDAZ{7z1P4L`=Ko4&=E<8 z=-?FfZC@QZ5^%d|Yi+?zH?fb=OWjsn4(?;wa?~Gq%;r@V4pwA&@i~qA=S|hrIrl<7 z;mSbcp3P!ML%9X@=UUVjHz-p133S6_KBWZ5_LL(cVJr-ZqdF>*PH1E-?3QYn&Q>Aq zMi*SvZ+pVg+DrD;sU@|xHmb{9k2viGHhrIEp>E^{e{i`dUnx)8s4uTM)r3$=cTz@-vS_X?ZANj$IUGHI z7G)P}(ZcuRl`%ZVHCw2DQN2)>fpiVtr|a;loQ9TWlw7DlA&r0Pr6K=aP$RW>0ncfa z3`zM&rPA2gM%^^kca|mjH&#Z|xZmza^D=NNVMVDe0Qt{9D1SIDRF|BtFw~i>C@Z!o zYiq7290^0UM^>CGg*D|Xr@ue*)gSm-D5;GVO{gntft}`6tUPU~XoZ!nNBLR!Z30{S z@@gILxr3e;s=f(AZxN;GfP-7MC`|>8%PCE1(6iG(F?;?3#AZxF)VLW4jY&jXb3I&E ze*4*n(102mmyD?KcPfQf#PEp-i%UUMs{`-8w?h|-dp9Vx(O_RwYr#!p;x35_?+sf# ze09!_KYv<@l(-0*7=|kup!j?<-uT3Xlq4ffKv_6pQKfrIt6K2R7d2>OAuiDLQ{IF* zZHS5p!RWNOc4Zm+&)j>Y7U?uGxqEVol1X^UCtH$UFo&q6e;v#GLe%8&@K;ADD`W8Y zfB*N&8qf{Deb3L|hhd3fm@uMaGFw*NivQhbqGLvyFl)#7zQq-daFTH3@URjIgoOB5 zSQ_dvVnn*~;g*<~sDf4Ocy|XvNEk^SH35<7lT{uRo~=gG4PQgj9SM7}0-_^Yq*#TQ>7J|zXMG-2*DIO9Dx zAK+T!a<;)~vt!(dcHEgM&(`kuG z&CRVC67NE6grmnTEX09hXB&|eAE^}D`;OJ9K8Y30{Q?W^Gzq;uYZ8VgcDT;qrHLOG z9md~JpQ)6i)s{v?P}xQ30(>+5O&v`fCk!5jF-fV|Q(TCY_ymkd>F`x|>|CkxeX8a6 z<;y!TsJ7c|%5Q11pUR%z(Ad<3LkAC{mHMlmUSwR3%&}uJeCQB-{PAA=zb&t!tipt` zSrak;zHi}g{`N6s-*Pu>F(XlQ-i}@Sj-bWPQP0PMt^IDg=_Xt>n{nVwIg08V5kF)I z9-%%dD{Gv(HunQtU;iHz9xXzAyb)u@jKOWU-%fq^*D*MC2%0Qbe16~%^7rji*Gr|p zuc$+^NQ&#ZU7fCKz@UUkj2RY(`bIlWTyWw{eI%-zLSdrqLSqOl zEmo>)ZOTPWO@kFRW~;I`?TL%ctdO+@tZZaOkTEWX#)+Ht104(=JQ&la-AvG;1`*EEIy&@JY}D!tQ=!YR5uOv4itT9fgRLW^`gI0awcy)W^lrJEMTRT`vcg_&L2VbA9O?l%obX#rq5v({3jf~XfrdB7C(xVU+M>68LI1HT>NA)5W^%p4( zZn=e*gmWISg{HSm#0qv!FOPXVw{U-Y7jA#R_vDS!$O<{P!juc7rBO@gl}g*?;Pi00 zbJ`-K(H0Uxb1eF<`T+W5r8z6^mBQC6{|6eJ$6*o5zbRWYUnpu+fyUHxaCtO0X?3PM zYxaRwHp115C`|_(+J9Yw4w@u1kn}!vtWiIBDIpQD2p@GXLXsw8-=Sjc zE351P)S6}=f)6G@f|XG^)E zaY`U(nrVPPbgB-I-!okKo^#XK?8H~4O=_~olSntbWbpt^6hldX;U$WmOZ(21m(wJ0 zKW-iqjr2j3*E(@gVc2`L9}HY0HuNtF7T^A-SSA*hm1Lb@L6FeACVCk+az{ zh%G|ds-dv35N$M}8##3*UVZDY7;L+MBzq0o%vG?PPQ!lg7)~B9!j4lG%vta#4jewF zmf-Vb_~@}?xb3#v+Lgm9-)v1dQCXwDUvX#xYiqG$%Gi!J$VD=2P&8UvU6jX>?Fw?{ zLW2eMEjElvO@P76VlSK~;bpaECHVDv^6MvTjTi26!fAKl_SKX;Rf0RMgeslZ(w5Kkx4l=A}Fdqqc53_L=6RwHIy1lWA9fC>ietCC%PICQ{{Oa`roeoXB zycHe$^*ec?9^*$Ck(yvozI%_9)KNbggW8%JSelyD7=65?5|QB{NK1-VW6|jgO-N6P z?=-G-MMYf`EIe)mqHJU+edgL)^-|E?*LcDTQI;>)Yv#-@ zpQA6~GHYqk-+Fq$t4mItEY=j*eU%1_8OBrtM%}%5q8+to zTVNP8p8EPYb<7)An+>+Q5+sg@LUe+bzi~9K?K^xEqGB&1EWw2)lNHtm60Z8vLZ0PW z>Z>wH4)Tnk-*C}^zrJ0I#(D>a3^#OAsQQbg$%zl&sl|nJR*W9k(dSl{+i>!zg=9rK z*4wgB$}H;lSb@du%=3Dz&?GsSyTvi%V^pO4(qgS{-22dAn9n$IZ(1rQk~~&T=S`nu z#Np2xl{_|LR3s)$j>9J(T!gJHT(dHD!}s9(x$hYSIi#&E1g@}1xJV{!tm75a9Oa+7 zHhT!_tJ=_F)?W&^Eo?oN#ofXEm3tdV@H4QbDJ!4*S*G(F&O4>_rM%`(ZbzK|ywB;s z8c^xyHbWbKvKs=f$NZv+74Y28^i-Glxd&Q360R;pX*%HOBgsg(=3(KAHlEOV5*nR= zm?`%ndeYrAh-gAni^GLCjyBSyyk`r(Mq3;Hr?64|4G%EkL&hTh?j;CIOw-Tk;ONn# zbVDs2y@sw478{32qZ8HG)@pOA<>!@kR^>3vQaLXNc zVb_rc+RV7~uCJ?zw<$w1)H&g!=OH9KN=+IIPMLA&bR*81TGVx|_BK3x=Mcmt8P#+4 z219%tW=|bL<9Nq)YRy&^I3&p{h!$JYMuj=lGDUY3b6%Fm!5+?EsDjBJXuW;_r9#kCu7^NqV;sZM74${Hr^55{^@-_Hcd`v zc$ixpD6MW)ZV|=|jmFjwE0y*5<=FLA9X>m0#_Y*SsG~NQ6mP(Y;mNSMNXYIlxY5!7 zEqYsE>`o^x)L+CfV-l6R3x!qXXr%ma<;j)~yKUeA5rr4Z)j4VLi8xT0#*+RlMYeB|`0)3EXR-plEH zhT4*?6%D3JL`Fv7nP;BH{Q2{hyAuwQwtf3{Y}~j}z2xCQb8FVD!K05piqWIJ19gR{ z7YLjU5nh&8tYEzH#wqyce|`c>moBBDE)>7}-S6<*-@dAzm)#k#rQ~8Wq!;CB}-)JH`0F!{V3)Q;JTn5{;8g2y=bIG2@`sjPYH+4V@XMJY|W?AT8z zThTFmE(c8Ni9?6JL``iirKK0oL46_D>%AX;+&)eR16C4qnQ5a)2b_lo4;E0ppuV{; zl`_ckxOwowevmwp_X5?scZ2y`P$|x zI)`7T_a#&&))p5k&UPNh*kY7}Jh30ozx=TpwI(~|tAAz2)}`l4t$6Fdt58#A$Ed8% z%A_+Vo7HmXzAFoAk=*HY0SBr){*^`fpuFMcI1C-G^-ruHDmdDJwrZfM%88@L8&$jJ z-*{#6w44MKebofh1siP8WdBQ0_w4$LB?1I2t2Q<)l zz@PkG5QJ+6p6Q9Dsi1K=OH&#^!rSat;fOBjW}7+j3X5`R5tO6y%QoW);6RiM8N0~P=Et)SX%9v zF(ILof{iVg*uUxSFV3Ke%8r9V?cUA489!8kCx#Cnfe$`-A7{^&D*tW#Y;0xvz^%y` zmD)L6Z@`RQHLoHjj zOzl@zR;q}{$4k%S!=ei)sI=n1`Br>hX+u)lNM-$1R#v9m5j^m~1Ij9b%WMAp`)FcZ zk9XgB2cH)lL}N46rGc_kh=j`M5GN*&xwH+k4$IQg)=3Fb)7XL*n-dv>j9pGiF4Q+8 zG9nyS4vNvwL{fry**Zs=_UtF3=$Jh$3Qhcigm8s~BGhR|!IuSa4Ngb$=o?fU^TgFg z?eo+TnlKySV8OdjpnK5dBQ`n`wY5!1OOC`XSw{SRccrqR9zQ(hl5{Yw{DSAB3(D=q ztjS5(b@(FcY+)lh z8E=Tfk*ae@iHXDHq3Nh>tjBTFd3@u>Ta;f@jx@aQWFcyro0Y;KXi$abD7DO((PO&I zYfo6Qwf)WQ*tc)LT1I{F;2|72Qb@rlv+z zRhe`P*u%@p|Pu8DRWgn#uGeW z;Y_3Y!F_siTvWGt$ky%L@0_h}#9-?8(^8@_Bq<6Rsj=!sT~uTk?#v#H%;E9Wj-p_? zXvOCzYB4M+PF?qMoTIi^(`4(NWh138geI&e8WY&6*E`a@Cp&h$tNdDXkR^Vx#^>L7 ze^9giE;&3a~7?f|U!rg+;*8;y`PI4MWDowJSg) z457*orPCIIh=g>?2CsWl<+IkFB)Oml8PgI;6w~t8K{8P3XBT0&(s#Cs=e!TpTDdz^ zSyG;vT2<70_wsqp9*(F#C^b?kR1bY>Mm@=qyj(xd7)HNq=XHf@OQ&1##oh*dNq@(_ zPVc%m8N)I<(q47mhR;4~fHQ)gt3TuudZ0GD1Lx1SV8}27rrc&!OZAhC5%}srBW_Pk zg4u3INmDbX+^PLGJtqN;W+(FhdQpuPZDE}L?w|XL!7n|y?^c$9{Vxmk8EmP^FP8#- z>30R;{O5{)wJA-#;b-8nmiq;+Pj1-lK#K*TE}DN(drr-YMat+H>YLhNYo>WoU%$)| zt{=qGbilzQvM5ajjms%b3HAfZzPEUS$4d?^mL?iUTqJXasx3SzO${ukicjK1jTQ4U zW9e@+#V8AsZjp*rCVVV}jv2y2@cH>x42g?C<~`qSw=iXk2rCKqYz4v`FDg>jB+dvL zfci?1q`}zuF3EI3z1&%y&NPa;_I?gbWG8%8Hbv@1v(TkN<{ z*NU7;iJg?DOlo2ztZfna=<{PZapDA;8qN6jcfNyp^X91uT1v_weER8U$^x^rv=lQY z55ug9vC5Ls6JE;vmxHy)9-W97J)%BGh(B0vRpr@hSRiR>f}QfQEjk_x?wN@xH?gle z7e4;@6Sa(zC$hY>kkfwWop)mLjZ<*A@F*fkAp6M^|E#RP*jnh#H{Zm2@4ct2hj>~4 z*S|hT`4p_KtHtqiRj_lt;`?zq^qDnBFQBvxp-BoWAH0d6i6XDaZsni=1Q!bjdTMO7 zVR&+Ur)B$YD(jn-wP`c@|JiI!jYv*Rz+HFoQqzvM!^s>R9f~>$hY%4H4=XFJ`iv0NlR(?r+=@x*(U?3k4z-PT>_6UseY6>9 z0_^FU;=lJ)B6n|p3IRztAqwslgBTUUyCjDK1D33y@z9dA);-*oVD$ks*Htan7 zIVKEF!-#|wWDOdMyT(jZ3R8QVL;W64g8rSO#$o)RVThnKmp9bmc=dVAzv(vWGs37o zHRHphhtR~;ESS&4iV@n*mzU8vlBg7f-sSE|#rgB9e{x$1av#hVfUNjpg;w`}31yl3 z`v1I+R$dOwleWv;r(5WLAskGFl`>JWsBg3&!qoz!F&Y2yAOE2O2>si?{VT?e8{he5 zq6hqviWRAo7ZE7jLC%l}Wm*sOm_vM#g;@x+5D9csO zuP+aOiQW6Y(ERA~%LGQPLjir(HGanTW|YqH@;=|$!GBaz1H z^R+FgsBWP#p$)Oo;Ygt|?sP>HK00DTe3SuWhbDB{FS%)IwWIh#J)E3=&k3l%@I6Q# zu+-P7`oZoGx?A4PFWk0m+ot?l^Gi5ZO!CXLPe1)sDY<#<;A1R%@QXzrKW5LqTLs+e z3U;xuW5*6vHY#Y0KT2zF)N_QRx#6O^?&YH42MVve;QHrn$;xA7Ufx@9u%&D;UY5AW zSZgbWXU8LPL^K?&ZD_N%A)YfE0<+)ajyMf&y>BotLU*H!GAtbM`>jk@thQIsIB!7HG&t!2bW$E-g6Dau|^@gL4znxo!7Aqa& zcG1UmpiB53B$Kw9TTpV`qAY1Skd=ex>&Gaqw++_Zixku}VEW7iB&I~*)Ujsld9RLS z9=?nyxx7j+dzk@pUH5{#-`}h7(qW3i{w{iQw8m(l#;W>j+Uem^K-6Gi_ zCNUh7?oCDNxLCvuHXt@R5>+SIpRuF|kO93dNTtjmR%*z@YdD#19^c5JQJAGoE*8)-34c9LSgO$3qW3e%@HYCz=&pN{h=s0R*ci9j>FQ}h;!%8 zsf`uYfA@Faqo2dnB$=13vK1D?RzvIyl_$U)%%iEvq7?0IGzo5|3EQ7`?ZwekXS6)$ z$)S5m4d2t-!ll2V`glWzu{|QYH!;!tVuBUdO4k9a!-?9)RwTt4x>R^XP<>!a(^{G{ z^ed`clU7lBynllVo$(4-CpLXFw3l&Ev2BxA~`Sk-PmIaZG*JEiwZ zSg=sOgrN;LkII69gm|_T<;cG^O^q0ykOZsKfg)1{J}N1~JIB97{@IhLXsCmYEt;vm zb5N+gXHFn7-iVnKr>IMwt-gQ{iw;vC8=!L0AGq(M{6Bf@7%a^eBqStWqBL~FFX&hq z$yS-}<7{y6j(4{mt;{KFgDv=uyozEto9 z8s9_gEh>6`ZAmlA4%Fk~xfW%08WkT7Ym);Fr6sB^hbkpp8*KGw&|L8;;!^AweS0z` zEd)M7hFn`lJPMBuCWS>?mz&MrKAVO3pOn(~lbH{3tjgIxD#c94u?| zSku>5$o+|$uQcoJGf4G3m~h&;fAnW;8i;T?s5v9eLESINXwDKhC>#^!3~mon$Jl6& zd+tkWBRn?r=4G02eIrWK0SAwEJbx7gAZ?Vsa~XKxpox|m2zVo5*gzBTs3-&e^qDH-~S!y@nQJZC>Ji&)Z-NrkmC)Z%JMXf#{3;5h}Dw-`h%MjFd``$JI_brSXB$w zJog+4_7~OPTiGX~dvIcf8gINbrPo3|rJti8@*6^)NPA3nV#C`I*4jjqNV`&){P5lp zNE()fh|C508Ner>e2hQ*;SII_t#5rxO@djN=j+;!{{d~5O8lju27f(Vrz}2`lH*a? zszuw^pdA(>tTg!Y+wWdjc7)UQAGk3Vi8NTVAGx>k&tX<}qEhU1#ix}i*tzdG{^_5V zD_?w`*zGpumv8E%F&N|gl#X25Ev(NwOT`g}yQiem#32MHt8DnBq{ZXedI9GL3nbo( zdoHKuMydx|;2>5YuyqhCQP@Jp)9)Pr##Ub(u*1`;CL$sXEv;;kLKAdv!L5-7C03mG zVRUxCu~GYRwqX9PX(}Rnw@^N_JA~%uHkg|o*m>|A(vsqkIW)1$Y0E`wV~1-lU5Xi0 zxGb8@c;Y8N={C|d!&SyX4`a5uaP0UAFUtAx@x@q-kWIQ zij>?e;8?rnh)TY|MDh|T{ur2VfTUY z`WzZNLa0AvrEgYdrV2{OmVn-HJLYBfuf4WaEnC0mp0BIF@rIxIz<~qGGL@IWxAB<4 z3W$Km4HrVp7nRjlrx$kIS5dnE^I!}ln39rAebl8BM_%I1{g`K< zK2P}B*;=0S<(+rl!B^~)IX0p5GqGZq3z^3hf0P)MU))}4guViqsJ!hSS)7zf!(-r7&fGyu2izT{EcV?0wz-X(Arp z=D>Hq`zY?X;|@9yXx;7LVqKkD8RQB3GJfNYZ8&r03|w5Ff~}-$q;|yhjqgKshL^IA zn3{l7duuUxY%D5|HmW79?Dm46+2wMO$QOdt@$tA=){M-VDL8kq9v3TE{-ivi^eYW! zeE03H&!D;$LbBn=u~GQ?{e!5;yDk%Mg6#5wACrd{1)a)Gm6NJgTy^oMtu1YM=M9sx zNOi?fyI@7%6@qe}`kGLTigcm$tQmHC5N_lA@?_jdBTR;HoUd?l>!0EXo|?zgXI zr72e?R-Ulzy;W4)&9(=a1a}DT?(W_M0)gP#xCeK42p&Aa0|a;1#yvoA*8q*XyERPb zoO|!dH}i7W%$j+cwfgbjyQ+5Wy=zCO) zF9G)}2LGEXvEH50s@%I7#s%uUb<{BBeq=Zh*LCL6-Y|<6L$jG46H=I3vV{Nd??6*j4+0vw_twDNd3jZ16Q`RylKC%3!Em3f@97~mr}tSwfKPcjQs<&}&eOaZTAb!w0ePk^5U6rV70vF*`fUgovf22#-M&O-!fIH7C{)6ShQj z?7bSP1}HS=4onfRTC)K07`a;Wn6IWH-=yp_hgysXK+Bs6VMP?2H>!d4JsaS6yJEB!+fCnj)0%8QO?gM;yUyE-r3o zDzA#141Od%D67BdR5lEUmh`Yb_$lm6U=avfBDx9d{4nVQS}EWv8VVHMIFJb9y?-13 z@s;EHrP{!GYusw>?z&;%4rqI~js|52d1S7Km)Yd$5_FzN zBRf9wuZEyBG!!!kuB_67iXzq@NPfY_Bq{OGg|%j=lbd|Cj?QTzo3!#0y}h7kviX{Z z6Pn&nM-{XbO7DAkabUiUB0|T~GW~0`lULiWn6ELrcJ+-gyW_?=2SFrdr5sIEh_XHr zw4nhXzQ#xd#)2S8THZ6Y^sp^A^zeQ5*>G@}cWITc ze$dOd(*@*Ktm}K7MFVGzSfc9#1b4J~1r{-r>%pF_z zPM;fz!x|cLE1RX-8P@SLGDat{W~!u!Kk{|Tt{I6y&Lt>P9kb?U9Fv$77>~=Fc5Z~; z9k_KlT5Ol_G^ApskVKx>AyDcWO6@zh%nWBagSa$YMwl(5DfJ*<{-lYf!oq2&_2yxV zdCbD-rm`*VRDjVWXC~kd->0mXx({j@6Zv(au(yWo7sR+$cM;pem|0)*QC_jRks+9^ z70g3V3SvuJvjCrprO-zrJba$j5AVW31CiOB2?Zcn-;mmE%__W67+UPhHiSKrVpVE@H$d%Q0zXRnq= zZfV4OE0o=|9X~|O?ONMMe%e)8?JQ`&M&sU^V7KN z#29)$IZXRe z^W9CqZ@Yrl%cu<*hs$dtk&i?@CDW^G-XveP)AQp%kl4xdA{HPXr~_+1a7+5PXE^qb#=%^RWj1{=1YH}aZTU2-q<50GAN`t~;o_-$dY?b4+7 z7t@&9F6PB@Dw7`c+AH*-y`+Q4BG%Zp_rJQmJoS`isc)!1;E;%X;mngR<1*3Uwrw7rkBXHd5KW0m(R9h`-tAY_ zzD}x*!p>!}Nb5eevnS#usF?wK_sEVXB)Q4(5jh^-eL~GuVuJyBzZ|&243(zO3={iD zY<`UT;V-6}rx$tV+{fo1K`VO%4e35Sae;;qd_O_!qYyd{&INR z=A+fn_Pb-#iB!wz(T_lligjORrUf^dikN-@gZ6&NwZ?>ENZ`LafO3Nw?vXTc+m+L} zP&x%MJXZbFBda@~L-9GhM+jIv&%|kps>Mo`+nz3lnFxB-ltc^YLd#vZzJN%O?u*1A zCEj_EIiJ%_qjeQXr1)pB@5SeNwsqC(#=RjP(8Cp`>_V#fk_?QwqGGt{JzxATwK|Wf z0ojg zo)>kZhMwV>R1M*8KuOOEKUyH#`rVc*ime~k-M(|R$>+ypn^Viy@Drl}py+i*(bhme{`iy(*Dsj0taM z1>jo|uyTeh60`4vA2LJkJVk1@PO-3YXSb&ul@h6lvz|WaO%Rv z+Qxno^6eIX8NN8C2wheMShU$6^IngnVVcaSOf|XT;A8(rylJ1Wn*tg-nMgj>cG)YF z_Vdf%^Tqh{GnGx1b|XnBJ`G7SzKA*!_v zZQE;#Z8aKJ3P}of$^Cp#SA7d#|H)TV7HJu+#?F0#Rbhx-s5QG?#5y2RzfA8~R;^!8?h-p*;fYkKl1C(2pLzJQ8BjBcM!f9UTHsd+%;8bl%61oF zDZ5y|@#Sp|#)L=DH>)Kd|5|`SfW9^?8uYF_ z+`WMN5d#!Isg}&TU~nL`l*z1}_q4;IG@GOROL1j|+M9sR?gW=iSi}AeDj_OZEE)L{#0BP_bzF5<#7N zzM}oUM8JoCQb2z(8tm^#_7REmOE#B?<|$%FPaHUIlL$xX6nt&EkSs;=Oo5%*ruLpVJof*s&25d zm1KxV&5?;gdXK7rx*}-nB4Au2G+|rdF6(El{;8=}c3Wv&)zZDmF=sJQ2S{+9uPWwW zU^F}_K-6nunrqeZJ3CVaZZglp2xYZ!2k$zFm5C01vc}0W=V8{m;igJt3b#CDm+xJI z`%R;e*G0^qTe$3pFewnfIt(@cZpVWe#%q&@o8Ja`N1TxvY!#F7GCNY! zO4(_7QnqRN8Y#p6bx4wg9-w@AyZZTQaJ<*8U*ADsWf^#%ki@!dc+Op7_v)rul0fu5 zgQzaUU^5WHnRv~ZBu6ZYg5XGU=J;G!z^KcFG2wednC!Pe3I&)<-*+IgZg6^#?MK@~ zX@UwnT<664JzOh>lhU0;iBr?>%h?IOkU)(2Mih%{c4+umfZ0BaGA|k&e!ECx`zsrV zZgWjypFfnAp8EdiRHyP5V7 zfo1LjkpxUJyH`K9-Hqvx?6iGiou5?GbQoxd&e!FEVk9$uW|04f7>^do-L=my&+y`c z=O|Zh=bE!I8^5+HP@w*tCN$?#LdMa_ZI?Z6_`5zW#|iCc7+C+FkW`Ln8N`7v`Hlte zwzI9uuiSTqhArA?5|g4d%;^>97gT2Vl;e_&5T$?;u(`d94|2ktldEBG5`db)XhkkZ z#otoh2J8rgooS$b(TU^$kBOY&Za*0Iipt`0$yGzZyE00+-a3c(G)bZ<^e#JHZ0cm} z%8%V$m}Kzu3d=E0PEf#cGBr7myxd%k*}BCeCZ^j{!$;Ava87a6pdJN0E=rn!fyo#=# zi11ROl;1%N2S%Q;3yg=&4!IcUUjil%B;BI0&C^%eQT$*UUmMg&WMy3UhGPume@sXu zNy^A5H;~t@;L8v*42*Qa70`4-@9Qh#!N<_k8hR563S2O6(m(WT56VjFlzYVU4!*Ej zY8U^h5&S!;Z+3xfK_~$?2IiBSX4RTt_=VZ=q$ZLChf#BTi^K~RDozsuos%Z!m!INk z@ue6>QY&Hr5Hx5}7!pcI3HRzrPUCIh{Spz;_j2;YJT$I((0N6#e(iOSu0-R#uURkc z`POKkes_%xKfb5jQAhW@*GJmuXLi?#MV_?`3qNtDSqs0ZfP<6O{Gx$E#ce)9fGQ`K=Or6bYXopBB^c#HpxTJuD_gMe zLt~cXMnLPn>wf=DO4r+@RwwsVA!;SoR0DUxqmV#KBgwJFPzW&y<1F6SUB5T$L{Ox2 z#5lC1{jdN}!m!7bpfhAgiHv^5w7^GMd6PIURK#=QZhv(-looLw#kPB-7BYLHbZH&7 z>%V*}^Foc-(F+f_=6%37&hBbYm1z!wXMd47@*dQrh$e`SbfJ&>8Xq4deAIuK1M z2vEOA+cZ+4rKSBv#7{=gu9p)Vh~RQto084Ub#Fk^bsZj*Y*cVf+WY$~hA~1W5@p1@ zsbw+(>}vu9#spy^+6H>}r8GXEFjHS;i^yViBO`#~n}+BN)^l=x$;gVQabiVGa#jnH z2sl&@ln`N;4?U=3!ir;7sw~7r)J`0E^+i!2_I%Fi(9!+Dgvuak#pG%(D_;zXsx*bZa*#*P5fW}>-ST?+ z!v_;rSy-y}9|rEPby1V%1RS^8(6Ul=g2^cj|BUO*r zz`kFkT$yD{AK}2JhEJ_to}rPMm4rG27ect{(}Ya4Jd(8Dr()I8+JKRVWN4$6fa6mT zsZ^4?maSd2P`>VeXoqC?G8--8S97dk7L+(L22VLkQNy4>-n0(k;JXGo++0D_kSiD!VG(;uLV^pEhuO7B3Iz`cp^6b#lZji zB&W*Q59Pl;`Q+6xAxc8QNGX+kfbyS_D6Zh3t^%vPl(EnnRzb-GHwg*T+=3X^4%~mU z14^rsS3tI-k3~GIk_tM~ouVs?(U&A+>#w2yP({e)`42Dtwc@jP z|JU)LTlgRL|M{vLMkNjTpR@9$fC3!+^D7JqOBbuwAV)8WS_hc^Pt-JaIA2rWND^Eb z{%fTF`Z&b>2$o7vdEcM6eI^22M!_n7gV z=#M`Xop&^Y{2SrXT4FKl209Cy=(RRo&Q*EhY4Dg zZGO)w4J9u76F$ zF@C5RAOjfGARLOm>118;mib{=Ya{A>WvUqzji70KC@sYxIBb<)k&ozOU=VE!@i5eW z`SyJK0Ic^bd5-GbGTKfS6;O9Y{GGfP-eN+xZG*IOctmO2zU=i6PGvzArQ3n8Jpk5x zbuc4#n`~$@dVBg?pKw9wFJ_H!c=SA=@nw`8r|>l5`zHSpBgwh<%rys*j8t`;#~_w` zqP(lqzv!V#){^VT{g5JsSAT3|lU7W7&T~|tf{qZt7Z7BEa{9^m!o*FoMnJbjUImyM z<=aqHvtLs}0Pq#)AJLxN_w1|{Kv*P+u5{+l^uI$-%509Br#$tzvdQF_|B`bs*g+7j8#liaqeR^egAuiq=_uB?TkCfl|18R0>d-n;5!{zeD8aIq?2j(E>vI5lF%Tf23yyb& z8L|wDhe^j9kGva;H#EAm9>-C$c%C?ly=2JZKGBXYTE1_2z}I?I#*3bs{*P^xnAbwC z-WSW1J`wlZwz9>;W6_VGH!rdVhuR=Rmlb&4^BSk_V+$vW2LP4@(*LO%Fy`tj{rL7t z0YgcBcpro$g+Z26czOW ze8sd+E;So&`hvc_wk(!R8R zG09$Fc$SeIm))v&Cn^ep84%to99_mN!_=sC!F1)~Wo8MSRIThM?3Q$BhJGMXYJJH2Sm2wSvHkOg}Nhr)c(tECSL~zPI#$qi6aN+O24!i17bm$1u zKeFHvfw>F-;R??>JnWzoH8i8z+6aBxA^B9Tdh^j8tj<-H1+A@;R_czb4MqJGQ#UY#a&v5CurCn?%bZ5LgGktb!9w6h ziz0na>X?`3H}Y|iHz|nZr22vbNRmcAoAPo zQ7>7C3QVt_w#>YCkQo5s=I#INXNV0cOd;f0P3u_(bYd_OxzWgHG`i#4sacE+la9Hh zw^Zraj{Pv=FuOYe7A^ayFM`h1(Tq&|V#-)ZYXeqztevy8f7 zMXe*6F`GMm$1ZgBWpAbJ}91hbUymX?+#mY1Uo3+Wb)-66$)ozOv!4b-w~#$8wvx&(TN z(!_R(A+02c(~XY!enp$clx%LRNkOb~r0C(Q$wEIA|EW1mVNiMCpqRiZuyYhVuGZF_ zT%M}Y7P)DtfEyiUt)B9-Ll>6Nw-Z;(u9cXvZs;+ub5o73O)7cR($XT3kf_W@*8EF3 z#rNc(i_lY%SbL*q=O}RGxL_-544rr+-jc0*x~fi3AF#kT6UEL>ae)-QUZ>(f1ehVT zClcQKp;Nfw@&OY>xBYn5|5#459W&hr{(g4m*nspmFXrK)8dXVBj_M{jY2KK-Xd)h5 z00(Tv&dH&K;=sR?)#I6ZYx*toZFsc!houcp5kd5legc9#YAiB5Du~4lMQwH0?7oehh^Q2&@aZ2)sz>~#P`Zh#T1gd{%*V^yYiku+HyXN7 zj2KPy>8AoUg6TslWfP?+9JDE)DRlqKmOy^dPg7UxH*~0SJ)?PQoNhBl(WLR8LsDf5 z=(i8gruPs5?W8U4lZaW zOa?M%)H_5+{A{YHktfQG#$t4m`NG+Si52_nj6*UclqpJeoHZ!+^3>K&h=mb-Gn|&% z#xl27(QJ5n2d_+LXI$>ur%c$ak3l!S_979t=m?z1zq$*)Yr5n9I|I@L`V+o7R9jEZ z?x;V@Rse~6-oNJ%01#0l5PnO>iP~yn_(?#OXflH@`bo=@A(y)M8;*@~!1(a3R~ByC z(Pg4v{>9se)t>pynDv5tUxi!FTQ0x94qMpuC1^rN;w1;c*BYdgWa3)Qsl(cA(OFRb zggRrA@DiI;Ve2*oQ1WW_Pfx%ts<_%$zD0utMmks17ZA7!?USt&BuiM4kpzn)!9!Qg zP^PAm@po=QPxnv0jb9528qz=U6%*Q-sE4_7;@ zLKh~mLN-Zt#ypsk3nwq^=UOGP+Ih_Wdrm*STGfnNlvj;a|48brFF~_I5}lZ_d}bB< zjv&f8%-G3b>^*LYmxfbB6eKB=Xz_aivw&h&ps5u-`*!iAw-F>H~U(PM7xzw!S*J}Uj8I&_6n?&~T*3f){|83~r$y*g$T zHG{WcYnSZG5?qaIJiY9S{^g*4ymaJ?8EV&$Ac1WPmEeuMq>cK~Mfj9y4;wY0e{D}< z%FcjvxT&oUi9Jce7l9>=Jf6COa!M+kkLU2HA7fP?pZNco18d^@n^RUQGMo$GsU{@|w0jX`U~4bqcvvHORXAdz*^N zaqs(YCef-`clvgAjt@&KA<<-HZ^XH%nJJ`VRX_ZW_Kh{ z5lQ*0O-Xh3QQH6XN1#eSrH;r{u81m?t}1acbG{nP?}4$GN6`Ptm^A)~nbJrwVu{HmR~$z(v%a(I8ydj`LN@sSp4W{Rf8 z_fdP%sAFW5V)pabpe40@cY_D^A=SSWB;;S=rg)#!iy*0DfmU=RqNaGZh%t(~OOyud zpvMH@k&-keIfVE_zR}DYY=hb4EhAwtr<*zxSGeWteA`$)bv;{Ex!Xn6>$egTOOUt= zre_ctPP*)C>qchg>0f8c@`UMM>bESntLlaC;?1MhP94(7^=>IW^*OM2B-BOxb zwL|eqsU)d`*m7m04KWo=ztnuyX{O>$zL6B&Q*D1%Y&!>6Ut9UQhSUoE;9$}IvFX^N z{ClP}`MU06mbjzH=MbrpTn!k1;p}UWJRX?U0=>>!9Y1UB@LnNU!>_hS{h!HJsBz!M z3W|+nI(4RGQCAD{p8C|VncG*Im=GK@IfTK;EZ-XRlIfRQ_*0q^+K1t!f>k{MHngl} zuu&Q}yJ)LQY^blPDQT2@rL;VJprd)ciZhHT%CH~GUQjd__$$L-8BRW zcu{B7!_4o}bw~x&tW*FBy*)jWRz&h2Si4G(A60%1F}#&%s6hPPmZXZID2=Cq6jEgJ zz+Xu&?g!23CDHpB%wSw$9g1CyIIP|nwLj}x%$X_`U0OaCA97cDRZa^L*e3g%3aKvE zMNy(mlh4GW@htt0GPrH;Y@Lktm<+gnYgN^;>0{v58|58B!-#PkivEfmE?rHJzw(9p zqK+yFx3JvuI;=u@aR};rs66Nqa5BJeO8;b*n?Fh3=Jw5cpd*%rBGyHHhI$GG0>=*K z4og)bx$(D}l<&pnB2>z%)wJ8cO}NhLSeO~jI`{_`aB~^Wd^$VvI(!vbab?B3o^Z== zHSiDvr}g5GC5vv?icXIxA*@-84yY#+j!RrqK55W|;cpLkMTc;lic<5)daPB2C}Dt` zKC*;fl)&L4x~8O71ESX3Y(r4{(Q&xe!{5DB>Q^E5k_mEYxcCVqVPa|)!pYTC)2Tsf zMNgf{yg#$wDrvU~6d@6)gqKLY@R(FHaL_B;hSo0}A<)bvWmCv2W8*YjI_YW)a6u;O z$1mM6guxt6p0!YvWPW(jY8>5!+5$#|c;{YF1*xo>JBnk8Y65N{D=VwD_Vd?#hG>$v zQQ}CVRy&`G($G?X+D0`(vo89K1^Xuj#MS9rT)k*f)g4idDRPEdA-3Km)8XmWCRP4t z)}}jksU9$*Aq}X){vDVesN}Kh*6CkD)305YkMskzP4^l()oOk|HfAS8M!Qm@syxiw ze8%-?zVsGwR@z5s4Y_D<*K>B#FZ)vYiBx{*-G|!ODnCq*^@(l$QPreXI}|gbc>N|* z;5e&B+;mWittXO-AtCje;B(QcrySIZmY%j!XB0?!I8!^a)(^9#v02#y=_ZN!?Aa(#5?@U#Sj&V9TVbkUHT^)28<3cD#el*UF?#}poP9`Xwz9}HujL* z=6--rItm|#jdB=nn(ZQC_uLPEHU|vT(1J=!vrtCel$Q0RhnNaJGu$D$-FDnsd$B@0 zyEL26PShKmCd#gj!*?sy%z=?#dFb7sk)HAGUl0xXllxac^z= zHwZtZb?BeKZcLONMLH#*+GN8UOo!)>9>A!vCrky{htGefR zAIoCU@`||!!{K;GP{qd;d-+Ap(jqA0)G9y7l|exiH~op2Szgct!2FRrypPh)5!ED* z-NF6mEi*rFUNop5FTBNEQt~J6wVBRMkI>V%6!C)bZs@}$QV)b$&A#Xm8>w|-W+C>N zv|0jU4-yG11P$W=X$v`JS0j2p|EkM3(9-yc+jgV8aKC>7SM{3MYJX0`i4DH-ZUD>P zlG{7-4MnwqxppwcwVqU42!MFlaAo=%2K}w+A@<^fw$PEB8}pCNb-9MUX*;cJqXBHU zWglGUXxFaPV2y|7lM2mY*jBk-(T7tqt|+ma0w-{y*3SWU0!d$Nuj%Cz-%UN@@Rw;NFoUz@69yNT9- z<3fY$=!G%t+T1>!V7~t_x=CjnHAMp>gL>Ql`~*nVzQ5)ZW-Un{4*! z(whq8UUBo^aE2I8Gdkq$-_Hx#|^X(sX-)76m2|T$kQle}OFPctDb+tDzVb`rcKu-f@;~#}lrG(6Q z73lP7u7^rMy&Jra*wISXZx%Kh;}mMXUg%T#$>ZUnls|im7!mwT3al6kSfK7>Tr#=S z$FEFE3vloJ5=i@S6`(itky|LJsHu}Su4I`MX1R)AmP5G+zCs#_YceoIYw-eH>RvN| zL*2?mZMmhtO`L;iwv;}GPF9ek^LM2tDb ze6sT~lI+uayA?)$Z|o)-7TjCED?Z@Z@WHR}1=Nw}T|*rMz<@>rpZ2=IY$ z+NJs`OM?x8oUN)YM!(Q_QcRCaL#iJp1)w$-H)mo>57+1Xv=wpxOOd;0O&fvB!gT*q zw?;+`hiBQ%F=zmS_Tkg0L8ReRCSAruj{DSU@69eA1#>esOfZ zLrI^T_%NXA@t0kIKecKROV`p1ow4xRU|N;lzPD7u-EoHIA`}yG9j#yelbB=zX4)G3 zDhg`1U%(C1?=6#7Ow&T@N`S0;!jh@Cz-WM7)I-@_UB)R50m+?E$Tvh*E|usuX6WXe*2 z1)MW+hoJS2D!)$H+o2#GzvYX^XFvTaJmXDrHoGdvqQ0me-`%(Y7cd%@3?FmSvB@rekJ6^5I36(Y;6|Gg;E?k1E|DK+9uX+-B=3taQhq z*E8>v$>5RVe#p0j>$gJ=5F4XAVC53T8a~li>iU8fw~4C<@AyJ^zCE6ohb{T$z=4{{>;Oi z#=^3F$VR{Py~&Jh+o;*l__ou^Nk1yorzC?0c(9~JwR~tA&r<0+#~h6dLaYTCu)vnu z+0s61O_h67G^`&%qUSXNLdgU+@1VVas;gWitYByYX5W z{ggJRzGFI^;4-^)5*t2GaVn7BNAT@(rRZzk529Bzmdmyw_nu^PA|pdV&04pDhADLD z7;JNjNN-Ofm>g^b$i1ofP^P(FPj|3tab`WUSrA^x?t6OjIX|li7l=OCY}=PBkH6m? z4M06KV1K0%>@IZD4u9{voDs+Ct+T8P_3`#tAn~$nTkESL5(lo) zuv&|foi)4M>OQ?Rr+=d+5kmAbJijsFY)a)}QkCajhu`~4U)`s$=aqH^y*=Emfkvla zr%u_@PjWUCo9_-1tvD{U${&GQk3oER1*`S1j(MYq+^k6lUtL}%GEc^(a} z(0rS`Rc{Qf?eq`zW6=yJEbJAo?$+1T2*@dNNs|@|?%N4X-ScN_k85WE#GF23q28N! z+i9!6p;7bMIy8Ox9u?$#N{{-XnXL=sbp0`b<+5cJLAiCwS-G`wKNy$5KjkG4SpA98 za2xotL%rmw{nT&T;@igwJM!!0Ue8u=s1rjx>=7>Q+Y-gL?}>>%ozn0-_~Gr##_X^7 zLWSl=nL^(zDwnPO*5J51rxvqkv}nsBV8gp0t+Jh^KWYlBuhv(12%E`0e9OdUn3$cwI6&BBN{4$EmdC1<#JrHq zux5Q&&FajdJ`Cq%%liO1*8u?c63GUdOX8@p9WciUq*q$>()$@SW|wwY}@gL-Wn5XxNWNYPWjb;b?X^ zJ0!T6NS(M_rIrauFPkly^0j>!WO;gU0diSTJc&tp|ueh?y%nj12{N@Zj zyX@8mTt`_Co>v+I17C~1z@XH(G5u~tKgBDJjB#%tiWf{RPa7s$Rx&GS&@62oXZy)4 zQnwS~#$o6@q8Dvt+unQJ(4KL1^RR_JYw!fL$4OTwq^GgDHr_{Deq$LVTnw1zF?!>gw6{W%Fk9g3KtDPFki z#PHQAn;prK#K>$SRgYw>)<488m{GJdQ|3Q*6+u zlHOjtdcI5iqg&n&x~EJ9wg-DwzCV?MXi@H&8sRy}8Ns2vO75wFT5&rjeN`wbb5dP> zwHR|oeFzWuK)$;4+FmnD%Q=jFXvBtRF4~q0xz_+cz_cH`Lf?_A^Q}R?J!cY=du@;l zsD`v$J!w=dRYD(S`;$C*2v=t95z)0XsISj$192L?Km#&1z2e5=L&=bE6J=i>Dr!%! z4*xgZc-bU+krhgd_$8zEn%^$8jfn{Hf=22+<)H{m#WJH{Yma&@(xJHh95sAnD>o_@ zkv2c==g+yWq;u`>VFVO}(B@2@&O_Z=CXUQGqTBRpt`IZlLI=_L);))EYAmzwX^oxoosTsv44Gf-EP}&pvG?&kcnBlELvPixr zJG%GI&|F!!b-Na4tcZ_QroBM9!mF@+1l!Hv3yCVCCT;d~IXa5&eRf|P7??n|OmKQc z+N{~Z(e;l*COaJ;UaIc0<}1dNf{P+RH*F5=?MV;gsOy;6c9;Qqu1PZ`Ti1{89}<(& zjecbmCT3lRos*U+_YW_^v;-K=l{v|*0T%RPseKx#Au%tgRqSuf(#>CS8KNqOT>6!s)5|7m_)zN z2rJ$+_ouqS-h>%+c7`bVL9)x*BljW~Zr6&tQ7h@~48GR-(BvWWA#1U<<%hDBz@}ov zeA<4hjFcT8UH_^3A<}m)%sRTdN#xKxDke06UzEIEL`TF{#$jeNS9@UIz|z^Wx^yzY zBO>B!#4>zK^)d)^Fv>jyZBWln5Gi_QG`g*G;dFXNw)KolQ6&EAbO;S=?dfIRuY<=M zW*8**Tm1%)@LSJD-Dd0FG`D?XhBjJcEf&5RJOXzhUrJAM>!6&k25cSfqM=q=wqL+W zzi3S&%~SVrsHkZSCt8e2n_CkizcdnaSsr1=Nu5$@t*nw8Y6e zytK|^i6=M!Jc(TB$NC~)mU5D}h^GpTZ#Hde>eL*ojB4Q6Pt6OmuomO01{8ru$69fH z{B=|dAx|#`MPo#mR}ITVBllm5lx90h*}gAD0ie#T!oRB(cxWgn;oU~c&+oLqYpcxX zgO&>MwDww8*3~0b9F~VvW5XP{_&051w2!5wLQEZfdE!m-Fo}qIgj8{>2Txpc`^+_y zi_4AL7Z!r}ib&5VjsIjpk0z0HE}Ry6VnpbT=dB580uL{^kvC6}l{AO)+S|GM$ES@^dc*4WLLzemca07hl zT0hem_foNFolu85Y{oim!w=E|z?|`Y7V)Tg!&JYL)`I*(u9W zOXbuKx&RIin@%?~a?E!R1EP1^WI)fUq7stl_IOXFx-{9bt|^4Nuf{^5r0hpMST0Pp zyQ~v*RWmY4cAm;7rxh;sL&-|3S zTtNf&6bWmt#q@f4ctwWtD_&5>uFImi0b_@{-R!(ENl9Y{xBgLmme0_4(mmK`HeqsD zHf2ZAg-*}HgNL^TJ^&prw&DtXp%iZ}S2q(2#cR6FZjFVT9odnch=c2{ z_=<(gNxt%zqWfQyp)Fj)_zVo&zMNeGTEcUIY$2-8V?J(Hk6>6uGGy&Vd|@FUFc z(1Ojg6JM=Wr54D8^!d1icIlJV7J+=*A!qr1y(9~HYm`;)d#@JHdGm7DU8{f%kM@gT zY_#It@$<{26&%mHZSGMG@tZscqf0TBj&uA1C@(316X%8!EN)m>w3WJT?7Lfhfl>)&^#Tc~&#Zg0aC z7+8uh$haG;)Q^)++mE}-m_Ew}U>@BZaJRe>y9SY)98dH|=v)z!;Gr!heJx z9U9k(Q41d~DKMkholIJ2+YC?j*Wa^&Ca_rg=HhOQh_AaZuK|b!Xm>#uS}{wU?S%Dy zYv*vOijdrUOSb3ZMKjOnU`#af*of&}lSP}r7CuBE@tKDGwFBTS&hk#d4i^sDu0J1f z-HVkd$S=QH6fxR2v5b=$LCovBKBJ>6Bxd1ql}SPTH=1A>_`~EPvU-MSh@Dsqoj0|3 z6Wt$auBxYm9sA1hv#*a5Kqss1Q=41YR){4%RC?aGkHR3J7Fsn1oCXF5(`pDfwjfK7 z&oY&%ginXw6(hfsy z-DGEiY=UZ>qOapn*O*gV2}ka)9U8fWXGS?JcafKuhp-jz3uf${X5Y$9HOCH9xvX(U zk!HQo>mTt~7WRd;8)64yV{GD#hEG2mvPvnYz20$G>j>;owPkjGq&hgePN`e+v&ERR zp?`>Y{hrIEde0)gX7u>dY5>U6nN+ESJ-hOvDON%HRwAyhUNQ*Wra>C;{&yz+tg+bO zK<%uzSHZRsROV_gBcGu8;60vCG)A?=&e5&k|ugeF>L?Lag zLtCcWT3Y~MeFgQa;V7S_ahqF&q~>CX)};IG_Y)z@cLxRyW4%o*g?w{hT{ID+g%~|S|?*_ajey~7e(j~x>Zj`r}m@cdEx1A zP9IZ5ThW_~np7tR#eSEvUT+HVvcK2f!|7}o>*bm^EH;41bei`mmIsJP&oZOC)*R77 za5~TO&>x~OyxjU2{fG{qQyz@pGZl)qyw&w+nl5(ukts%S%!{w|@&V55Rj}OAUWqGA|P2s$wA2($#ED!Q6x&vAUWq8h9M7s@f3x(D zJN!nTH*OI*8_M#j30Ais2Mp96yn7*falu+XWjB2&W7=p_?t7Rjs5NCXy8Bh_%X~3| zoy_kZ#wXR4m-3N*62FC?^uEtLq-mnTI1M|2J#U!Lienp^)(ftLMj%op1wZF6g?STdI%JiaW< zjNHRDF)@kVw08ZFBVHumUB3!=bmON}tc^o|F$C7+JW=ge?pf5d{zPTlb@c4+bJlM_ zWUqVjO3?$D#Xm~Z#a9|F`yo=(IQa&;kUifcz@wBS%2Q64i`kLd8yN2_4xoys( zH!hBNQarK~O9jet%%MiXKQad8KIi@j`2`DHOsTMIe^uTl+8U)@1ThHAeu8f_;$A7v z5accP;iLNuCEhy5uhQ$8AFBCwqNkXc>8d#7F3ARb_@OJZ9AXqdCZtm}S4`_I$J=vD zq&4SEITBY^*2iJEwZn#6u6_43_2BrJnpN~+wpe3-+FVT4@vBQS0sn;d9*ACl z;Q+7cm*b2$LObAv>DS4-zH$2Kq{us8MG{tw{n8@&hck1_o=6zYO>lTnTxozb@HXu; zBu0fiut-><{tSp^8>I6)?T~l1_u!)DYv5BtQ5`bZLNcY*rstti4 zWd{FzpsjLp<#?$#m(~PZu!GIA6R4-#zV>o+@fpd#Ma2fVqTMO%#lD?gFDjF_ z=i9SxtCw@XpO{7Pnv4~^UJzxuFJjKZRy?NPlV4zdCK9RgdMa3yP?^{DeIkEL7udJy z(Kw8`*#6}2>oB!!7kE=tpNI9u15IMukIQDA@IDscsBW#%6Zy~V_q0jI6%cxcjKXxY z4jHDBnU`C314Cm|Uz7UqweI{k6xO$XzQeoj-Lg-Z+rWiG(V_eWb3e`RS z5;am4P1#3;Dw<`VTB_2r=c~&EVq3qAAR7vJpZ9zpSIBTWr6T)oCHEq284_5{v+Az_ zXz4n7X`;?~^z!Bwf;xN3N`3vuAYxIE`S zYF?(}A1^z?+%x6}1?gjU*XpfX0 z=LLQ_tFRvJ^qia5c+uHPa{pqF{8O==s5WcYFRqzW{z-^1X zHAQ$6ng4HiuC>*RSnTNKU*4`!3I_6`5+zf@O!h#~Yn_4&Cl4L?Gws*#I1|p;7r?Sf6(?p$~K6 zZ9zh>0lUlN0Cu%ft$&K`No-t%o&1j0H=B%1_9HSdNw&t)w#&>~EEM5X_xhvqdy+Kf zLyi;;q@C?}Y%bw7BXE9rbk$l6d6xT+yr-LoC9iA89ewFLt(`gK7O&aUQn?L3vrpyz z7yRZafHtFRs9;e7fIp0Ha|;J8G?mANr|d|%4IAMkQs{7fIGiATyD2Vv(H>*)UxB5W zJiwWJZ8x+(382Edt8gvvrilrGLOH=kd%^l{3@85h3lEFfPO`*@xfKfo=Fx0}sybRCuAyFz;t^iUP>4KlA+C z*MXnA6?e~Y0gHXTq$r*4T_mAK_o-tr>Fb8r-1*R0{?Egq$XlQND<02>SaI^qDfk3b z(EI3694&aq5>R|X-Z|j)pMbmEZYlo)`Xcma29!9(!EL&`FTUcJ$)g))uUONXYvqH@ zwLmNS4l~*jOogs&U;G7a(f8TQHnal9rl$to1`hsvejWAy75!s$GUB}_`94st5zSF# zHN4!(qWoU=UgD-cNoK(Y_2Xa5;{GNaAU(Cq4Yb-^r4eatOVcZmEj~d72F(~tOMQ=Q zR2m4|Ec)RC1lo8SH6F=>f#h)d$0Nr%un-S8Qsl5>-g9o(!4;%u=HkS zUHkWzZ;7>x!n`5iQu`lR=)j+H*A?RZHEFiD02A81>1V){^=Y`u$D#)Fi>m(B#WrKVLw7+<2#csw$7~?hQ<&#@2&vfs^wU z%Z5F^#KwqYfH5oM6$N@m{&_yKV2O6DO#1}my|GYDA#vt&G**88SQAt3>z1$gYPS_E zuk`5L?u?xSofPudQ6hJ`*??g-M9vpAGR2K@-~41Mja__Z2YM~DK|o?X&3T1TMz;Y7 zYJvQWvg=>xiwRYIo(}ov^Vh|vOzE7kdDg2#cau^@FDJ;H*Grc_qv_f_JPI#!bNiH= zhq6?qe+9`O?Czx0XO!LWe2Xt!KsDsW2csHClpc*^APX6nByX<1HThZ6|Zsv&h!kT}&U~Ok|MkX;ZA4h$>M$Jv=BS0DEe=2**R4@|hq2 z+-P1P4WY4`rVfFg(Bq=M!?H?U!Ndl6`PBgMD4~YSci~4EwH(VIT!5zV^9{ zI{vj@KfM3yUtQI^H-QuQ>sX;2a&fI3_oit8QMi*y!~bQOValZa4in)4v)CV9oudH- z&S~h~zQFmaHUcIhvaOXvhRKLC%BdPW&+B|dR9p$eJ&~uTJ?~4{j2nG&$jFPF!uCI@ha0odIn!gjf5STRmad7yTo92g=jgw-p`NdM^u>fvk%|| zle!BR^P!$GwKQ@Lj7j3r9V7H;?k2LB+qal1`mi&-B`#3|{>Ai7MtB_09sXNWe=CiM z9s)?NM$f%M$=G*`YY8kgi<|s5Y*RejN|jVsG+LixnvL*qo2Kiqc~0iaMT*Ns^#RzK zS@~ts7N=g3l3vdh`;ydz$*83n!VOgLiDMon%}FM~QhX6TdFXTO{Hr{r{*j91I9jUd zm8mx|1^TNZ%~3JYKm3U-dxqk+*|1S$ZKS2`FlBm3DpYrA)F{m5C{)p^WeS{vL5ozJ zq!SAHb^Z#vo*Q2|6y4Bov_S3cpSPB-HzBuix&R;o_$tfsPutl3eC7EwdgC*>Z|#X8 zdq1X3w%sEW5*{$I$iU;4FjlyNpAf&&5*N})IcV^fu0%>rZ!rH&md??26{K9`AYTK`ko&<}svJ;BaKXU$HHd`E7qZI#TN)W_&m6 zxns_A6@TJ3$s-Z@q&?bc(azg5OK)FzR|)M;i5bAZT#$k6EkbG7j44-tB=mZ|>&46} zaJCAaRe_4nQPmQ_j?c(=Gr=60IrO(ojRiOmZK%WT2SAltErJE7P9pVRMcPjik|@1g zEoa~%T?x}lJh$(tN?mPOUnP36LYZHw+kj9+U9)he78pCawK@|!EY&MOTYXaGJs`0y z!y!tX%&SF$3=&4ufb@JfBYj?CK68u+YB0StDDhMwdnVwZH^KdKyQSelD8G^`_hNus z=ys81i?#MX`YRV=_Fben3!c ze&-bi+W+H^&C4l~jC(rwKM9dDVb9z=?ONjxQ>W;1V>`dw4PX?}&q=&hcL&aN&gha~ zxJaY7O%wagld2!uE^+1|3R*!IY6QYBG_0*BPLwsa1wGQeKRy2(odMV7E-&j7A}QZnHx=YVSy<-U4rPx|hy^ug zT#RFNsHi^#T9FpD@{Dj^NiUXc51W`Bb!86Su}|Kz)h%sr#)s>83g>~L)ki=JYV4@? zVmt4m?@g9Cs^+EEW*rGZO1>`#1Zmi}MXY};O1m12ss1qM*)P?N9}-mz_HZO)a1R|2 zn`!Wl3VH1)o&H0JWI59><9dT)L;J+Ve03iCq`|xYS4l!~QL)FTS&LHQC;5x`j@L$= z->iGrS~AbOufD({h47v^^jbUWAN(YA)T7%ANZ*Mw_S)p|J1@o5Oq0Z~!m+s+k;hpI7=GG41`8s05BEIr|R1q)09e@3T_Fb1tcH zIm`;*-PX)-|87TDzdRMzuddh+_MC6sd@v6-*m9lk=7I9F?TaLHw)q(r0?Cc++kRcy zOCEpo%gQL&JyBsP`+887h6VV%M*dZI_i3T?zxm?4WsCAd&#Ke_2ui{sifgW)dS`g6 zknH|Wh34+1h>gnWWMcX)Ics`)ALsh_V^1`NLJfPMPQ3}vh7sYB<2v#Xomn5c>9l6g z7 z_7i_A4}V?x9YNwk%wW#OULz*~Bh=RKCS$LL#K8bNn-HnJGsd>#BxR;(v(j+XPY9>%MBAp37>a zys-GxF6jLdAANpT%Qf{3}U9Huv&NpF}CY4^%#7wT($V4mML|LIm0^8CP7O~ zDo1F&9p0OT?wDq1kH*fGvZ0g_m2lSOPHy#!f<5l|hU+(1+$EX!>uGjJ4N5NEp7q6^ zkABTRfZbp>4&1oH^^CkW3t0`y`r%1_u)_T!gTf`q%i*<^tMNeM)uh+!-I{M=>mRQy zTAoQFsH9%msNVj5H2u!y*PjOwr*@oLG3v_9+u$^xtTi89`%B#W<)=wfLVQnJh7elq);Ia!*Pd_q-w&HSd(PsmGJz^ zqd#;-d*W(Zs32CQeYaXdui}JNLoN09K1o}PMjz(WLxLt+8z^ESwW^MmkhUM*Zn?+x zkORLHpBd*^3x#ZoPy6SCo&XnaO0&_^+gh=ikhtl6;PuoGiZ!^%2j$vUx1n+&c?C+4 zN=45z1ra>IgXl&HL34BbGeuA zC+35cSJQ59A=~1Ax#v5ZD+7?Q#smM?w`$t|J4VHC^`z&4owzF5kp=p#gx2Gh9%$_j z&!_)jXENCUJ~o(kr_w-s`G>XLN9>hK!#Y0QG#BdkgMhzr$RPUbP@K(B>DNBTJ?L)S zeNgU{@jyqp%=Y`Cm*-!7D{vifW%8P8gZh6j&%NYREm9^NMSf#2XZi}m9E;5nRKI(- zBL?sv^mHD1Vka7PPBI*>l$){5J3)kx@<1bhLl%auT#1GihMY-+mNZ-@*dwYy<#&v^ zAyyyVW_ZQ%m(%lff5h+icQ-K%bdiN@>1JB)^CEu#7CQb`lFK`U$S~*)EiKi+> zvk5)F&awRMGn38jG1LBO5E1ikU?Kk2dUFd9V$~787_UO6sbqHRy=D2KuiBho@h2uy z$qf&1L)SKqW7BYJ*qwP^WD}zfNTC@6wcFq9p9!Yq^Z@Aw<|ss z!~k`NY8j52Hj?HF2AB}2ubT}x@mPER{gIfi-mz}kC>VE=VUk{WG^RY1(5>6cn~*sW z9Z-Vb$Sbr03WfKTDte$t4?vG=EVRP_)e`xePBHC@zb)_8O|u2y|;Iz}2g0DC1fJ zbtHJZ1sy{n@t+4}N;Kmos06A$=O`U8WEhSX8s7cU&ifuM504_ACf&DdyX9tgk6)Zi zq~&D&t*)$wSGK-W?oba>{YqnApoym~7DxOdDd|bc2?s+zw>Cc7;cIvAVa`*Y&Zx=7 zjfyLrB~bgihzp-IyeH@V40W^#5j4Vwhnn_=Ied(pn530B;uAx=4=3EyalZA~YC zoen*S;TXSL;P(ZHF5zDtwkS^3-~VZi(qchzA*N^t^s!O@&rDFH!W_4u8{US)lu?g` z+O8*C<4(FYujqry>ma{i5A4>s=O!*$Ne?IICx$InlF!5E;W~vI-(Ma9qpvrPUSLqM zLdBSGl&(G23DgmJ^-_K7Q|=Kr#x5z+)O8qS>t038_qOF?Y#R59A-&0rJmBfQ8`VX& zp~&f4erE%=Tcmh#wY3Q==b1Tr_pIdkFZGOaE>w0 zZ$j&YqSgf;(WrtEBhGfHUb+eShb_H*uZo)OsR-ZvU3Z`2c>bzf!RB$+>0*F7Z%-yC zlg3^UN1$9aN9$MtrJ3?-#@8z{s~l+*MaUok&o{V3sPQ{$f$&1&4>w5A9kyifxF8`~ zESV$loo$o=eHthTKaSr{Pm;Wv-stNBsGC;|PG!m2c4EALNc(V{1oekwb?4dSmmq~( z?vsoF;q0F#H_Xdo<>*-M@L;rUml(j2te8XQTh%~>UUPq1HLbP!Y5JFRXU>GIQ|3Pk zPSfkOysTb(>(}MFtYb3{I>&qU*-#3g{j{slPw&>Kb(^wRy!++(59Gljz3*4Ka50J2 zJNusC9OZbMP{fz6zw#cUS~DQK`50w{_5ia9kAC=;AjQ=!sO;j@PHp$%cMF3IU1$tp zaF%b0bUvFHnv0`e;?_A{ynqc`-gr)#Pv{K)2G$#oVkjx(C)2h`_ij*y^VnGgpdbbp0f<7+bBZ5K@-orNU`(&es3G2C>BVvAc3pyi*LtRf0Vk8TCs?nvO)+*RGTM(Bx1fw;7fl6~Pka_dwfFPyS zCULg*yI@b@qOJ!dv6}>NK8*k{9-NpjI4RIKaI4MCVSP9F;7^Krlh` zks3c%<`nPpx_MTS=^E;GZ8cF>rfs;nezn*#Aci|m|3|jxBA-d3rMmnGvUD~QakoT{7_rjhL9T@;yuXrYuulvU6)=n15ss@?FTo06J>Vxw^hZI?}EN6 zNV`*}_|I7DwAc!0NzWk=mtE&fFD&q8q-c)M5&eAnSLu6F4k`o4s#mn1!KRuPrdNph z3QMCE726XJ#0f2Ko>VJ-3b^Ni1o{W&6&uZcTOoBiZbhoNmqXbcm0mCsp=EUlqc*`k z`AwhYDZIq=x&AkeinUD{yvNdJRH07awvx>q$+N@Ixl*a>Cf2yrLst1nLoEl7+u6=X zG26~o@26|!_mDCS9YfmMCdX0-y^R*JbleK$90ew1R^GItlQ!SeLg10*-C1Qjdnpp4 zUwFy|I*Vk+#RO`mqS3v2Mcasv^Q-WNfkntKrSrk_m8*Irfs$U!H`Ev!ZH+_8_ z=|z4|`m_{NH=WxEeIH;oaBb8PV#(0S;WM~`BdF0b5*HLxwvmaHJe=D$h;BYj- z^+Ju7!#2G^o6d_U}J`G~3UPk-y zkK8lk1Y}XJqeG|Oh0beqI{@g(6E5e;BzC7c4fqr$H=|t^|1)n0bzj(->evO^f-iBl zxunf{tB;a4Dg7&9^upr;=ByO13~T8})eIoq6s)!I2m8$y&>0aYBMwCVC27Mv!wF+Ri5|;W$X4w zoJ+R#3n`EoF%b^cG;k!7#9k6P??TIC@Z8cU6w%Nq?Z_%@OezJnJXzuZ_$;%>F@iw^k3(qi&*%@N@M z*n;M~e%TVhm{__7qPdP~`*}YTV}MW$GcOr0X0?AAE0VR}M@)8=uY1+l16KK;n72s5 zDW?gW|Bk(IZMBdet@97u+(6t3>-GF1<$mJkZugO_vSew1ec6+`yu$4}9|7V9#^ZHu zbX`#VeqT;F=2tH@(Yhe#@{n}?xhc*4ctrk4*Bgm!?G5N}JeJ;cwHU|qS<1IL25FE@ z-k75lZ-ih@Jf-cspo@dI`_HcLQb^Oh&DH0;^InU_{maAf4;uq{6h7=w+fW_T8_XSS zj!WWw~Tl?Bx&ke4Y66 z*j(_EgUg5q&H_v(eC?*n8^PD?oQW@!x&v6WcnI2@9oXu~-6X%xd*}?=TvV1_a~Q+L z%5S$Nv`$8z_w^TKBq|Nt55ZJqCQ<43$mxVwyn3e|<(Bi7dP8SvcZTWR{g#huW&2+n_jVXV{NLG6lNQ5jzf ziZ8%8mx+}Jxj%c*f97(#okZ6Pex4QKqHWu!w;uL!A9gzm?{+kg#c;bBw+f@%7Gq@Z z97gkePkbYN%{Nzi(^9|oWUVDFL3X{EyxXy~lbRleVtix2qWZO}Zm3m^W=az;8GK1u zurF>k&>V1Gc^3km`PLy&Bx^cHrk8%O+)CfSZSK+VtnnL>=LK(V@&xU`kXc3)um)d; z%kT?d%VxaV#HOZWYn;5}WYorQZQz;MAG#Pl!VKY~Vvn!WTWNm;b8xLA1sGJV1rEciN(_FN^x|mQ0HZXukF!1T=tsC>7 z+6+k9*l!lsE5o`E&(>Pny`_wf=54G)N5`RbcuOY>h)sXF?Oid}9O3YI`fO1i;djKt zuE)=D@R*om0Os+j)54yV?uq%#=~1UAa`06mk{{RCf+)UZXg5|v%Z2KJQ9l1_FC3EV zihFWqZj*=WHMha|DWa|G(dm7%&1PYEUnfK1!HWSFE@#e1Z*}d5I&Y!h2l#0~Yy=Va4|+_C*2HA3PlJ6leaBb zJK)!phuT+a+ZvI$qYwO<#OT~7_r zQ+J!6iLSqu*760@xsOygzuO028PGP8cD^@$6zqH4Og__5OpN@tsB`R*P-pF8{_G?j z!cd(~$ot%Ycdjj^n-@OK&aIQb|I7E+q5I%_?J3OrFaN>n_-LYet|b$Y-3NxR?Yt5G zRSjRWe<8d4ybQA|S2tCzC(h52PtK6HRuqk{BEkHAynn}?{)Y57Us$4&UOr-BKL*Y%E5kMr!9G1z(!Rvh=Z&GyTTKf=$RJ$w3X z@XqV3rqvJ=bF}O}vYQ}2+P{v{V$=HFt?>XHGFB9BRXW8O`r<6xU%8fACGOsY z|BHe*yjEreK5f6cIb-ZGmXM1DbAAsNftXu(qOhx`xU22 zb|S`)Em2oV&&(bi*}1$+_56#e#NNX1&Mf!!NyTQ|&XZ#XsUz1yhl4!`&#B6AByBzO z*o4xpAK>8N@H$J5yPi7dvH}0&ybSvNf4Ux>9*5vLbwWsBog}E|WulE%xIoG$CV_dp zMV!Gj^nRlBtxmG<^4n7)LUb3Eq#e9z&+zj%>^sY5SXIg+GSf`?7Hz7Q$%aQoSg^ z=2A*a)r_rJ8Olw2`&9RC4HGzoiRJ^47AIZoj#@x|WXe#OHeC&P4?GgOz7ZN)Cu}j4 zO0PN2@m{gk%`mQM-Tx3>ovS8XB-D42gQX-6Pp3H6 zSgq$Z%7WJs@gZWzN!@VKKkk0Eqk=g32GupK;Z-$)We$FiJ{%A93Jyw$+9#4DsC$&o zJB1{UK8(e2m>f$;lT9yb8OOI?>`pqVc!$NI$4obKOeBcjL$}-RU!6lQphN7`dTD3I z@XGkTuVf+LBbawjMJO$ITOlrAYEp6Gbxlb8L6~Y%QKY?<0M;j=he*4|51)DYHXk;l zJT&9O`7T5SOgfE5pv>6Sh$W?mAdF%fV+rwb;~+$D>g;CY*va0+8p_IpIOn>^+rV=E z_oBB@Qj+hq#W1JZFzmz!=%p2^S0k}$Eary>@oU_LU&Ns}U@~vn4nTUY>PAc~Qa|2Lpanl}Fl2 z`}z*dW&43IC*&d`U1YrU-t`Y&?|nS}8M7^X8tRP99-V<7BWa+IEFlhBtx}pXmOTq3 zzKq;&>f1jWhca_S`y%%)W47A_qp^FY4=4&_gffA4Y$T$*X%{%+}nK3Ra9Q`KU@f#y)P1@2e;gBjzijoKzG<6~wv6UUR zX#+CKR9=ZZZI*c{H}3)I)xd^>WKH&4JzmF2*vr?c{32o+>@jqu+wMp(Er@AWdvaZT z{x0i)#<};hMeF)n1N&838nvy-v7!+TtDlV$U(T8YhsnoxcW`h#n;r?8vx+fOq{icm zOfP`!eeE!|)%qRA5?E8GO_BuIPL{TN(3%&bN+d5IJp}IWKk>^qrVnM<{}Y%3K3VF^ zIM>XFo$63%5AisNEqhoDs5(l>9GvJ>F&AoNP?h(Kv*fXYwDUU4!Z(%NcEXZILD<^k z^KnXf>gyD7h@ZL6aEN*3Wj{k`Jww8B6Q-&@m4V<;V_QaItF`{`hh#~iyz`RaZpsX5 zo_Vaf(^|emr0csT5-%_G{%-lDYU+8OnV-H^*M34873+{ve#)to`DY-+-hc}n2S+Jf z>9y>K?6D19r;YYU91g9LL#p+ishaC^*D>c#)u!roL}lUNW-&t~obNi4y3@)9v)9X6 zP-8X&;KciO^~hwQbJ{Xy}(!D_^q z^;VUq8V|_qH;ZcJq@1nD{Dfk5YfRV5Wymb)q=bBK={90_uZ6?}Bhneb`n0$%(mr~$ zGEBPuRW0a^iEbtCAY? zhi@Zw>aRsuG}R;NH1_a-rNQrx+N>C6>&)qc_vdl+bkB8!n2W%rMSuFnO1naoYTXppO|{CN7~aDMeByc*lgaAL`t7~5a>&4>b=QFtZnr96Byi$B_+k9|-IVG0O`(>h# ztABk?(} zfHIY7TpR~f&r3G_W}wT!O@N&U28&tO&q(ZlS>ba!I(?qO*L-isef!#a^CV~cWg3;E zr<1dhUyY;|;tE_$SQ0*1-IV4*JdhMscADI$;p|UzV6!SZe>~xpJ;j@5T&Y>=v)N$fzc`TMYPV z&UyNxx<_aAx@!-?a;fOe?pch|HMfBXa%fKsEX)e{s~1p}o~GVLmN2azv_kAa24S{+y@OorNh%w>bk>(i-2Px8)<8uV3Fs)V3O zKZB(DiA7fsiXHmA=7g{dm>Xhu9w)%kw$F|g(aG~``q&Rtbr!n5&`5n)za?feeLFF) z{`@$sL&&4&41I^x=qPnDdRXXqMFZbuadW6j(m?`Z?MSZe(YkY*<%gX;E@ilQe!X!d zn&;cqaUc9haWGiNX*cc|o&~qIMt^m(Zzej+l4bCDEg z8R;~`bx!{m@f!aNF{gedi*9@&pH$j3N|(=N@IG zh%Q>SL7*z{_OA^I%VIT_qa24JmN~bkD7zeDV(iqMOBP~~iQiaUBfn;~Jyxb zO5g1I^n-?-YE>aVwB^iP07jp%?ANl^E-S@at%-=#Fm@-c+=6viOO9JU&Vv`V%j7%G z_MvPV7SD%wa~mn?Ytj41u1AF&rpF<{2c1S_`OH514YPmLn{3|!xb5;5ny!y&xcma# ziD^bZXUJ^n2leAiRE>Sc$?CyH&Z&Yql(2bxBxzniDsI2lYvkSpyjuMy6Ujk@d3^>$ zMyr&Vy0Pbnfn|sU3rqibmmDrc{OHniyBM);#Eo^o+8dTUyYihSCY%=I<$>&j4XQM% z;FMD(!OX^D5=){``Uc}l?)f6VU2-mcp)Go!FB>UBSPR{lMO_&VV(b@0^x#0?c;P1W z4TE0>rysfaEAgRwGY6x?m2<>PK*wwGtj+ zyEr+NbX>F{I-6;EAJ7%{o(Jab(JmWAFA~q8qczudrwtw=sV;$R!YJHU!lBAiAgBzXZVC4}s zM$@qUE4qfiWs+Znt_QVYx^QtiJ|6CdEmkL`bCcxOR8mUpQ>YYjY4@5yYfn{si|1Ri zuUQKwWPQB=F6DIHQ7zGe_OOzSl5fm|yhG;sbnAi>F2u1~s* z&TsKL&N{6-I1oL_p;=oa844AXb7Ee4ITX;WW$DPVygxDxD=7pdrk^PuyIrM|-deKD zC17Gx5;1v^ONVdby+Qf?qKgcwLrSugk)DrOD^V#6g^E^1&Lbpv8(eGU`aoK5C+!O7%z08@g zoGjzwb)I2JPKljd$kASF6LV5_CQLnvHnaAL?^@fFt)%RZ#*g8gT|$(Jaimx@Wt6q< zM<;q5txVfI?Nd}35J#>hX3$?N4nz(cU}qD-I=d(ys1U?Pa5e*cI@_?Cp%L2H-N=7k zYT4aA4Q8U)m}Kc+&+>8{xV^QAKOCx3cVXyyLVg^BAAMNN;F~A3LIP-&eSkE%EV$aF zf<7YgeLPfUy!|*ESipBTxTaHS5Jutx&EcXR=Benb?kGc&vuJPVE_W(}wcT?q&IquC zqbC4*Y2hR)eLdhi9@xMQieK;GSSvZjWB(dSDW7^#tCQMVV;L#tq}QZQK-q=Ljv@DU zRpKl*csjkZVY;>n*KZ_S{6R|&GtV8hK9=E%I2B)*b=mHkIGwG`=$psij&1O^Mz{#( z_oO2F>S*)=CA62)@xSiWTWwpzg(kJX6OBwTt;hD4_vgpaS#rueL= zdVP7Um?wWIWF2E8YXE7GKIB}~(H$djEFertkV&{$@v5yuRuQkzHo)6;Vp@ZDnH76Z z@e{gh;r-zbdWljOuIHbvpMG(ZlpX=_1}|4Yvr}PASmaIvbJ7LZG-vR*k%&az;Tzg7 zyxT9KAskZUptIqOpTn`&9BL#BG%DaPZmB+YOVxGdV`t)p|3(AAnMpaz1FN)VpOp0v zU+Dnatr?B$aM-%Er#wcgLNrOso$$1)3X9T7HEwyji?R&?xt&_i3XY=%Etdr=(xBGh zFBDxwo8Hf@jgY=m8^KB1bzG1p%vvpW083Js=wx8zSdxt+R7Cfx^&WNm*UF6&m)~eTkQ1$I?4wA@}Z8a*>a!^;!gl9 z!SEYh&0-XO7%aeT^tfLu?^e>Q;bfhp{_7|^=V(6xzm zjj+&=Pu*V{&lfGt962?Ce9q{ofq{%MOnv`sPk9&f!i~l-ywA|5?eD*GR63s=r0k~32SKZ(bEPAu_nht~Tp-r! zTvL2G34ArAkPDZ{xYB^}P|S9nP86+x6bZM|5F=m$$xkSIezql_zTbmd%++ljHs3ZA zBV1Z&xWw1)auSG#)gp{2@}-HEo(~DM1#I`Yg{uFYm8yrqFsDSv@KY!1pd>}(hm^+B zG8P&}WTC@ig6b_LPk{Bbf=tSN>_@flyy8;aW*B{$Al~;6NQ1dhN@G$OuHmr52laTowCuJQ?hs?qVAm9KBMZT^1ul5fjpdn#B08LSiU zMd&n&N}q{L>Zg8AM4Na?rZ1UGySWcwzZ~z43UakDa*M)y6RD*tQ7H+qD=$Z&GJj)! zv+>qcS+*L{SVHYDGeii89K;2doRIRBf3%xn?-v zKhIvQ^FX@g?ZUVN^CqMkIQxa^FS9s-4#D~4IkCn=vYfIV#tu9>U21-A(k)l%b%>i~ z*+USjbyMv3_tYLr>paIB*`q$oV_9*duSa5=YKyZj$`~xVg?PkR`fmZLp6Hn`#2b1<{_Hnox%s+^Y(V4quFDhg#u(#@sAr_tHzNF8 z^GGmvQj>#GxGb^^E@0B{LJ|=!KoVZLJKfbF1mzY7-oqIwJf+IhfFMgN;f>W*{?>)ab+$P;d$i~!=e`Q zlZ>_J@_5~JZ>Cb7XEmM*%_bFpZo8%*51|Ac*asx)-6SesHvfoWJU7dTbu=9MF*b#7}^ z&`m4fg>zlq{x^Sga)d*3oSrDK%4$;Q4Bse7IG-+mc7_=N133qK_&q`Trk%pV1c}#e z#z&P#Vv~XDQZNJea1;VP2mU^{QXT{#-%pi)KX3BHDR?OO zzv^l}QU`J}m&9}uRhAZzOl$>3cC8bLkPF>Z;|bjzHL6sw4vhxtpl9Z+xtS38lp1_? zFbW!psoV+uO4NKa-r7cJ{t45tyJns$n=(2P`b;aWMZ9ORNkbJ~T$WWinzv5>6J`t% zo}y36A6$$vO~6kA>iyCmGr9ygoJBtf55Vfavb>ni`ICBp8>YTh-QFBW;Nq5AVa13PuHow${K*PLP2 z_0Ozl)ofFPONkq{+1tNba@#i-`JB{V4`)i*8?y^-4POL9pu)^+zga#0c5B|`HF6)w z>yy5nxT|RwWRb7c%DRTD?jYW*7&b*x0uk=&yO5-E8c&as=5s^P+XGzT&+x9`LVXk4 z(Xll-O_RgO1NueHj1bm?gIz7Zn+#{10`myl;%CH#fZ908gRbl7ApG=Vekyy&E3`@9 zqP!_Xk7Vli&myp?D=$cCzsFDOAA3~IJ##u<7kx7gkk*?_c;5h-gr4qSMbcHM>>;lD zs?~l>^yq-HEK~o@p{Kx5cx7s`xAWZRAm-R?kLub`*GqT8NWWTt2UfliAm@PjuH$wQ zbDWY$>O)&)ya!r1`eu3~4xa90g623q-7}{_YCiUCJEbfODbkIuCVQCd9{;U6T^bWp z)t?8_4&%#pV2bzQl?mHt6xa%3dhCkkXtl+~%2@C$umg{`p5t>y4N}-e{4o>CtMEy~P5&6D zkUIU7v0ByyVgsZwN=7$j(Oc$9PM+qb;5{>-vxa~%Z&a@ymM-VB!{bZ+dyrL{T!#&>8+w zPw553?n_CjoB-I%c2-aL$?O1q<0INRW4`tC;jK0ObHg{cFpOo=gciFp;cgTwSZ zyff$ci2?(#7L^z_*S)xrHQv;&&k8&@s}uIHr^#(Mg!(3F=d*BVL!av@u-J6(Ocvv* z-z5F6^ly(9W@MW_O z%oKI`pRFP8ue-`3j!UT!X5)%eIN;8{Dd~5IfZ9#wIP7=+Z@M-`Pow}5-;;PVInI-$ zxrsdwE@veE%WJHycyphNG1SarCh|H1P!(breapwvGF%oPvCC16@6XRfNbK6J^)wU1j)=-Lw^{hljY zY?-Y)nSjjjpZpAPw>*;kzA-twxvd(0 zYWGh0oTWzqepp$!wWJ*kPuGqDpxkmoSsxkO6UrwlN*K4GO;Nno?^G~~8wSP`pF&37 z8x2>}b}*!h#*rHHni~P}_3ZR#Hi6E~f`i#N$49E?i!ZZ%_*87{1J!_j-Jg1Zxt)hB z)`cR%d=uLm=W(n1Z@WFtCF>Lt<^vsGgL1|YW6zGywQu!fcF^B{lX7lOB+*0GMp#ER z0n>RF&B6QQ`@-l0+E^H?dX(>yd`fa#@d{$4j|<_Z>5k(*`0!N?9N7yz{ZPAVb zVdT^AR)&S`nGXT*9iM+N@y;lBA*)!smd3xnM)qmFp;E-ap6TvVTt^MuvK@+MQ5-O^s6dI3eq7ksGvPF^l=-Vst{&U>ekjK~rgv)q1wPS_Hp>}8}{jQpr z-ITqrj-#*Ndeg@=TW$CFt_qK^?Q0W|8+|G~)8h9pKw9*X{CucM;J~x_DlwaXzV`R7 z)|?95IX5?j;eeiJ=%ac^;^nZ*zW7idk>Oy}ibP0QT1hc#?|b;pujwXv=5a-u^s}GO z-(f-1Ol6cjoZv{Gk=H#lf@$5RXC;SRHMfGSgU};zY`95G$eK^pAiQnT)G{$?ZJrOnP=*gO>#Pk1sRQ394 z(k~g(I&f|O>>_$POeYvmn}1Teu5V5M)y)4)$i$9tH_7vX>d*8DV%2hWiP=S~MEb(g zsvB1W(sJjVOs-Z6*ni%&O+6cm0xt@)HRiL`mFSEG?XZOFws-P2p071<&kl4OjdqsZ z^m1zxBo7@`I~bD^QeY*&-+W{@q4sc0<)%ILxeiNeMPFHzK1WbWb#?WD>sn5!B`3A} zOy1Wb_N9;7UguRG=fj1aNoI4e$v-=hi(_|dIT16-mQKknO`0QR-+na92rYcp1aBd@ zLY^kH)l(gHlUjd9YP|jcoaI(jJI9#&PAH9^YcCOw1(Rs?Qj;!x z*B#-!tmVd?s`#kn#FOh5rJfA1O+3}C7|{>^s9n-= ziAZpAE*OZrvrs?tK92RgYYAoPnnrC7qK*Xc!rL=ta{~fcnP1~RATs*O=4Z71IREqw z%)9<>xfkKr&lcLZHin)U)7>P$u;F~*4Q^jtr2Ab#miS9rV8xDhhv{^>{ZHT6Umx2e z9b=5ITYWmYH!j|4e>!}r?wXL`-Lycud*tc&M&g9tk@qt#0)O}R)^E%A zIn18qGluey3*le%QgMThAgyHsPfRXd2aOE7>I@e$hQc7t^D|4;r#*mebO(Np8Q?Nn zYwy3%-(Q5coV4WN{PE;c-WQ@@SI2z2+v&Xpy&1fbXA>BEq_16J6tb<1S@Axv&|z5i zxHcq??tvKgZsW2G1dit9ii`lHxjm&S;q`A^uMnP%S(%O&uUrraZ;};cEc9`c3!h1! zT&oN6{(^9`QXZR>Ftbk!PG!Vp#O z-y|kH7P2=fM3fd$fD3>B0j=pAV~3i}=$uYh_Y*$&1i}C->=|`Wp+0rx3$cT1n(6lz zMxb$d9d^76CC88V@PojpU+O1#PbJ~?Uxz6BN_x`1hf0O7EHV=EbtJtJT8=?@hIab9 z;nk3^!Y$6ga43{0j@_IwrI??w0fpIyjg=a425ZQvgKtB15=!fGd*4p%d^gvBZEPm| zQi7+2VWJ#^Apf@h1tJij~#CG2eA$AjC&|!idF(I*3n8dGO zB-UCTHwM1CXP3!KYoRfq;5IExQnI)nH`0}1r&m#D`Zd}Av zwT39vD|}>gaZiTsu(X19Tev%XsjuF5=N-vbZ(aY^Z0Dt7trLP0kvwL z3-YPxP~za=Se9DKS2m?~iyq^(Oo3%0%K6=>r7{jYyRi5yZ6|R5Yn^A< zGNoY{d(fY72 zD3})7gw`>{3Z;YUadUB1r02RCIwAa|!4Ha%TAMVIZ*{CUs1z+ClU7Yp+(%c=|e& zlL+5F%c6SJVSnS1Sq(58;z z@MNhoG+lhtiaUKZU-V*nsChGj++;P8;8SN0uAns)+g{x{tUNK$s5=)Zoq2P>G3x;L z(;)6rR?@*V9ZC*M%Cl|}0}s53W$p(B{qvqeY_29yaO}A>sV@4rEf}FT^I|R{ivyhG18zO^x$atZBADn0$r78E65Hy~hFc z;_z|vkQp3eIXUV|6p2$LujI+?>S^ z8sA(n&*uu*Q`XfPc3kSaKrpxW+q56CN047S(chdB&k=v+;J z%gl;Ck@ZWtnKs^G29cMMYbS<5$|hi#*NPeQMJOedVXmvjB|1s%?DIOq?zo}e@_5Pv z^(T^~bR_MB!$ClGfqIAVGslX$HOy>fv(qcRX~ak7Y#-iF`4-Srr8s9OT=c!cWOGK< z!$jHC)}?oeNK@nYi;q^6c8&X-sK`i{e(MwQ*^agi5y1&8?FzrPj)X=Z{PgO>kr|kr z@ev4E&_ePFD5FFBfi8hKW{|juzFN4Y*z)FEnV>m0n7)lM=kdP55VJ3bJ;IPXCB!NBYryHRT5pC>5yDerzL-D+DmE&U1_i)(Q3YLo zH^l|Qb3+0c>}>caUlD(5OZmgIrJgvRhBtb0Ya}tx&`05LN-V^j^0+>Q1=X?Zh`+ZL;>%s#mO|O!l$i7lw7M zX`z#YVuaKBHlcLW6F}OhfB#E7^D|~f7!VGy$TJQygsgYqxjSH1{#(kG?=Cu+-ECYO z)}>p?6H0Gcv5$2}Mfg4zge6;SI${ZY0eM7+|c zCQ8X>v^X?#jVP1K=Wl(Q<(~q>yJfbM&yR^y@I-Usk9*YX6fzCl@GheLb~l@bgTdOD z^seU-Kh1tDNv1Q$^DTyXn{(}e?)?JH-t~$6VChtjxeqocgotwMRdJAminOCA3Ie|w1 z05#b)eSFnY+2AIlX7~-&H7vz$faN+`%NNMYy@CeGGK`f@8T zJ)h^QjGOz~u1mAtXy0%Y`5XhE37t6}+Awx|Ha#^&x}EjJB8#ElAd^`M{Qp$1R0mwy zD_?PGjG#Ht)K?n$rk8(g2jPS@MEf5Qm-U$+dJGtr&>T?c&YF93JHzD-k$&FXvx$Wd zrMsPK#)jhAP65jr=Jm6Sj8{4X{jnF+5a)6M=ar7MjtYS@G}-{&HEppywrYfGF|3g2 zP`bpudx-g2k<9Ddh25i=bR=n0nrjQ_+%n^d6FnOvPCL0OT2DCx(`bDNS-)kS+zG_b zeqE3ilW&C+znWQ?khbc8W+w#K-xA_mG8gYzs5k5#Iw(oN zp(0-n*4c0+P~OTBb5S7P*+ts?yLKrlKjT;*vp)KSao}@T8X~tmjFqtZ0Up&3$%$K z35W76ygzX6E29HhN@IjSDY1|S_c3&O_`!Lu{FYr`61<6i-F{_Daoj0*fE1yX(eDe9 zz9J4-~cS(qQnuJ4JADlHHq`t5|~j8aC7sv68h7k70& z3NS}=yX8lEH$Ma<>R8g7jZyY>Cp@sDsEI!cTSm%COD#R@>djFTP5L{K0Z`vefqY!U zV;J+`$8}^a-Q&h!Q|JnCM7ZvG$PM&VEMwQJmB51E^pd2~n=g#5t>6bzH0;(dM)l_$ zc%pYMO)l2az$)a|nJl8U{${Hir<|XUY_Fh(ra}xkkIq_FrMBDq>Q+!gjN&)6VdLmu z*MSeM-;^UFGhHAzjtM}{W%fQ%R|`SG_XAR8;~Z)G*;oDNk&vi82v_!l$X83@zzOt2 z=R{}y*1g^T?^Wb+48TPLcB1$GYe)LOU%#Eb`1qlTUuQcX5)rjaF-PsZ?;s0x#^4+h zl;x?+VWmubjW}IaL~V7+YlO=d^65K3iJY!?p+nv8mFYgrULL|=VRfnJ9h8GA(oj_u z1u%?%H;<96#4YS~_{5>ZV|E>tzR_gZngr(m?AP)55k{RexzNr?<006P$q&V`pHME^ zsqZ9~p&vgz3!nXEX)acFb(iUkc|UaaX;6muzY&pZXKMd53H$i=( z(spiTcDQ~1qjVy>^cKst_&z0>r||NPRzUnc--Xf|>orwd6YIEXYir<1=i;xf%Q0xOY|@8V=FkTYaSOPE~6 zvA8$*Y+v%;WBwWJrH|;I9`HZRwO*5+7`rw4sw(LNc2<&n#Z%X7XEM?cQMNqKFCCdV*TB+7N`z6X*9 zf#1C!fg%T29yQ$xBkQIOur8q2?&9BtR-ob8N`E!i0qnPR zM>>P8k>!DLPf82bDV!)-9atOn#swR=8iYtWMcDh~DJdwrvEH!2yC$K_A-XYo^xi2i zW36)56%%lDQ}n??Vb}HtHG4@x8#vrR9|Z&|ONeh@lzb;WjFvBF%&k;$(1$tDPB-(- zVZOv>Oz=FFx>DbKu@FpI7MdfyvFc7&XcY38AP8A~LjkTu#H{sfmZRIc?0AX^)|jTi+#W;XWN)D1ht)Y1wz4I z%|~H(f#-r{-Y9eh$I}%=iIH8QEbeo&*GB0zIc} zFxQ_b+uw7JDfTkfCE_M(O2%4!q4EB3FLG@Sp%KYi_Lpee8{J|xzYLcz$5($2rjTlf zMPv7z5%EG6Nnnnw!UXhi5yp^YCY94LCg^U4$)=a`IzSwukanM0gkmu*jon5;Ie<`g znP_h+D7Y$?9UvQ1wJcU9HSFP^vOW}bENF4 zt{0N{X|Jk_I#`#67NmR^0Nz(;xRyJoPEw}szLCdN$TO;%QUCw~32-8a!0v zYj%ZHcC$G|o^{hZcr?_@18CC#c#slw0@*NOT914H2vbyp3Gjc}h+Gx?Xv8ediXfbR zk^@sbxy?mmR}PogpMp?8W3^n5D^levTYdD9HylIlaO+knO^awaC>gRd9pVnZ@Bnoh z@NI%a0XUk0tSv+pWiHqTNbW(3Q@48|Kqp(0z zf@>4J-o3$p(Ia<@=2n1`yO$(dYk=6x6@|#{D#GwnwZp}SpHjMN##-ay{U{F~oDV7o zhN-W^@3ecu~h5LOumyme$-X-n{PUk7hE|x6vx$16c)1~DbbJ7;oym?|1!U<#t_37w^}-&EKZay3Kb2p0 zZ18|;Vf^dwkFKO~{?@o%2bOF}rUb#p(UdCnH;&!@^?@=Q1KPj`As6F@1;A_Ns#2i3 zBSuLzBh)~aE?o(JFt$=AS+v9Z7*#}n;X4Dp;YUQv*6V2azZ?cB&)1@a2938K1f3uS zsY6L=B=od@;XZ77_7RSeyxTAre7V{UKkxY_9lbp@zRCyurV5g)7uZDdw6MfeODxZD z&~-B;3RxmFQGwdJ8CkDr7-o^YYn2h)j*3m#`WcwFPM`P^Wd$~T9LbC?$%?4*-WJ3! zL)_ZfjASidhPJ363;<;{YsZH2Ac_HC0hpWza}pNCDC#(}ZBa%nVduzGGK#zn20PrY zCTVbuXjP~j);{t9mUq43jCvscGy`MNv4icpF6G9|qB zEesvqvhGII=fu+|Cs*-dy~~1ocYYYV<=`0p2C$U5jBnnN1Yfy{uVSQH-T7)K_Ery9 zs4MS^IH)@sQT#V3Yi!9BatBL4i7H`v5x`KadS(5;{T)5?JfM+bu!v;8%)V7z!g4yu zsu}BCF>hZ?;-V6U^*pzACmB|#SJrusr7V$Hr2K9ha?pdZxU@D7$sIzBST(I@*Xt4+ z2r5rlf?Wz0P9qy)NNDz5S-dS-8wFauGa6bSkEzF@g@6yOXKxOX)nKY1mz{(Ev@%Y? z)r~D9E^R(sZ-kZy>3X4zJiVPIIkYOxOu*5VMW~`tn-YOKV*OOT{+E>IcZ7-XORkol zQ~vcHVckCoS!FmqK%#-oswUP4ke+O#0H!ak{CzcOBCj)83tZ>f2||P1^TE)+k}Cgh zq;Xg6%}b#CU}1?W{3LUzW-1uevkwkMH0G8d{fEcE!;wPv5c-%q2eqvxViW*;g{!?1 zlG1jJ$S;BJL}(${8By;;D#jI z9?Y%eRMx8$Az}oSh5Yu?P(yvlbY1J=%S!dmS}>7pR&_O*nQ^afOt!yi9vvWzcL$fN zqVL~!HY~Dnv$x(Hbc+=Phu*LNw?(k3a*WTue2zp7Z5$q}V2ZT|@Aw!?S-OFdc7$o+ zzqFWpp&@*AIo`O-K;B&mRtb!4ZUg}whH&idnR;7!r3?1kex1yjHT}%MBwogDqnkvBbH){IRbZ;tln#PFiyJCzv){7^*}f!V2|&6egXyY+NzK9PJ{M+D3=k(RIYVy>-;NU0G{Pcd^Mz~60c*Q11N>w_Z|terH){~ z%>Av$|I;wS-_|o94D|Rxr7w=U@s=uXdQl_dN57t-#JK>`83u-6xVtp|BN8Fx%WVHD zp|SiiL>oNCp1GJ%I8@<6^4tsp9JJS)YRCzKGi}M;r7hJ)9^#9M_^Sqj8REFW$}9*m z9Q2%@&ANL9hSHua4H%B}M@f!urBHWbNEhGbP~~*#&dL*?ohne074JW5lQO)CzW?g? zQ;K0BSl$_X{ok%TXhSgfU#>0e8M4TNFpWHmstcf$xy0UJqSu^_LEU3j%pSwcuxDbZ z*pSdr>`pN;E-HU!nIKl{$( z&8_y8K>eNcx0u}5z7;4|(MxYvvr5RQxx6x3|3{Xfw$kD)9b8vDl*9_!ZJ)Ci?J@oj z=7|!(+ZjA%Lc?T+!Cxq36pQp9qbW293yqb{Em|8X|AsQF-7%|#A6@wHc*ME$NT zuZR%7I?z1tKBZ1^8!VxYV?Sq!Laf%Dg9>jHP5=;YQ7X`rR8B`=iL3(O%30DzmtM>V zOPBI#_$DL}fzdtnfSug=SNF`oCz`M1gE6H;-z0V<^s$_T9TS|j4sEB9he7(N`gnBF zMPmn*$#Y#DSr<*8u0BLW*`_ttM_h_oXZv2G>pupo*M4-k@qL zhcn-70*!Guy~6oLH-( z3arcA={}{pt~>DWsqX)r>&r7V?pm5&2})S} zQ=>B@<UQ|#2p)w#-v%<4W@-5;0+0) zK*{5N9P zy6K$y9GV`RAxv3s?54|CO<6TVfn!##5g(6;9L}Dow<@XRP#a)V|zvRZ99V1a?lHqY0FQ zFbwOBI*z5Y&c4iSF-rVxeP7hha=wa{rU`IYjy}f88QoPZf2(rMUS$mD zX@ZYwrDWxv;`RN0LN>eEY$uQAC^-f09nT3kZGqi<>*UB}5Y^dK7xafpO6N{#WqhXd z{^15EBm89CGEk~*O3;ukM0&&b`9_%}oNO!p#4l9JiiYvkYWq8E=y5}L#!%pwUWnen z;V^vBXw{+9x%mam&>Qn~0X~RkPH?wAcv!9Nk|NEr--|JG} zF8tU09(ZYOp8x-^{~?EzHKKG3j*u9v9ASP>@x$jfb-uQZP5Z(9&~0x1aOh*9n*umV zF7b$mBI2x#qBglUMkT--vp?i5++ymvJe(m+XFgk6{`2O?sfD6wsRfp{jYLdz8y8PB z`SB$#f9HZ6-S(YJY|%~!-EANn#Y4lpV}*p$`R%36GBR^fzB#S7Me*&uxJz1lj}21r z)8px{kk$7 zerb(E9rKsQN$z(J&3v)d=4Y-8m|ck?>##?<QGYi@&d!vsfD!;C9V_PcU zta*FuQ+-i?>4-`lI*<-J7Y8M=-6X~nmKqm!Bc_-g%WE;Iu%wCKDf4DFaqyKm5zX7FZ{;Bxdr%AJ|eiI#foh*q< z=-C?HFD7283t^1>z?^*Hx8*+`zV~ixN5>bmJrQ{LY`B4fnut3(EUYAT7n~34cl&cK zRid>uT9vJ1>MN2KY?yqwO7tAmLd?6&oa1etzrO`3mlX}pri18O8L~x1(Hf05>Ox=C zce@lgbVnpa)Lb-t=Nnx4>acomxKdJjwygg&eq19~A>ER?#%1o)$IoQkDEnTaHX{Sj~P;uBc4kek1e;}lO4wrA8uxqMroUdW|G6Rr>4Glo4`6{j zxBaVwYwL46js5fo6e05s$gMJ?o}6kMUa#&wCH$a8Vuvm!>(CG&B`n*i3xG z!iA1$Sz^RhvtERke^K$+GWksB?}=lYd*ro@6MLQhTw>`W4mw?pm3MOA$r7!b z_N`@h++m%)xc|h_n+{Ur2%E)M08lOKxvA2`eFFjGV9BtvJaVAS4?~66p z3|F&K5WO(NI(x30X^%LpnAFkh+zq$YJM=jJ=g!@d^4IkSB8(N`Ac0$~*U?s?o3=k- z_b&|Z<$@KOpYn)D*tM=Twlvs~~rLGx~Ael67W{LN(Ya%;k_?&-VonR$TZ*m~mIK!==b`K^l>TLgys#i9B zf0A Date: Fri, 14 Jun 2024 10:08:22 +0200 Subject: [PATCH 2/3] ed --- alx-system_engineering-devops-main/.gitignore | 1 - .../0-current_working_directory | 2 - .../0x00-shell_basics/1-listit | 2 - .../0x00-shell_basics/10-back | 2 - .../0x00-shell_basics/100-lets_move | 2 - .../0x00-shell_basics/101-clean_emacs | 2 - .../0x00-shell_basics/102-tree | 2 - .../0x00-shell_basics/103-commas | 2 - .../0x00-shell_basics/11-lists | 2 - .../0x00-shell_basics/12-file_type | 2 - .../0x00-shell_basics/13-symbolic_link | 2 - .../0x00-shell_basics/14-copy_html | 2 - .../0x00-shell_basics/2-bring_me_home | 2 - .../0x00-shell_basics/3-listfiles | 2 - .../0x00-shell_basics/4-listmorefiles | 2 - .../0x00-shell_basics/5-listfilesdigitonly | 2 - .../0x00-shell_basics/6-firstdirectory | 2 - .../0x00-shell_basics/7-movethatfile | 2 - .../0x00-shell_basics/8-firstdelete | 2 - .../0x00-shell_basics/9-firstdirdeletion | 2 - .../0x00-shell_basics/README.md | 30 - .../0x00-shell_basics/holberton.mgc | 2 - .../0x01-shell_permissions/0-iam_betty | 2 - .../0x01-shell_permissions/1-who_am_i | 2 - .../10-mirror_permissions | 2 - .../100-change_owner_and_group | 2 - .../101-symbolic_link_permissions | 2 - .../0x01-shell_permissions/102-if_only | 2 - .../0x01-shell_permissions/103-Star_Wars | 2 - .../11-directories_permissions | 2 - .../12-directory_permissions | 2 - .../0x01-shell_permissions/13-change_group | 2 - .../0x01-shell_permissions/2-groups | 2 - .../0x01-shell_permissions/3-new_owner | 2 - .../0x01-shell_permissions/4-empty | 2 - .../0x01-shell_permissions/5-execute | 2 - .../6-multiple_permissions | 2 - .../0x01-shell_permissions/7-everybody | 2 - .../0x01-shell_permissions/8-James_Bond | 2 - .../0x01-shell_permissions/9-John_Doe | 2 - .../0x01-shell_permissions/README.md | 26 - .../0x02-shell_redirections/0-hello_world | 2 - .../0x02-shell_redirections/1-confused_smiley | 2 - .../0x02-shell_redirections/10-no_more_js | 2 - .../0x02-shell_redirections/100-empty_casks | 2 - .../0x02-shell_redirections/101-gifs | 2 - .../0x02-shell_redirections/102-acrostic | 2 - .../103-the_biggest_fan | 2 - .../0x02-shell_redirections/11-directories | 2 - .../0x02-shell_redirections/12-newest_files | 2 - .../0x02-shell_redirections/13-unique | 2 - .../0x02-shell_redirections/14-findthatword | 2 - .../0x02-shell_redirections/15-countthatword | 2 - .../0x02-shell_redirections/16-whatsnext | 2 - .../0x02-shell_redirections/17-hidethisword | 2 - .../0x02-shell_redirections/18-letteronly | 2 - .../0x02-shell_redirections/19-AZ | 2 - .../0x02-shell_redirections/2-hellofile | 2 - .../0x02-shell_redirections/20-hiago | 2 - .../0x02-shell_redirections/21-reverse | 2 - .../22-users_and_homes | 2 - .../0x02-shell_redirections/3-twofiles | 2 - .../0x02-shell_redirections/4-lastlines | 2 - .../0x02-shell_redirections/5-firstlines | 2 - .../0x02-shell_redirections/6-third_line | 2 - .../0x02-shell_redirections/7-file | 2 - .../0x02-shell_redirections/8-cwd_state | 2 - .../9-duplicate_last_line | 2 - .../0x02-shell_redirections/README.md | 65 - .../0x02-shell_redirections/list | 26 - .../0x03-shell_variables_expansions/0-alias | 2 - .../1-hello_you | 2 - .../10-love_exponent_breath | 2 - .../100-decimal_to_hexadecimal | 2 - .../0x03-shell_variables_expansions/101-rot13 | 2 - .../0x03-shell_variables_expansions/102-odd | 2 - .../103-water_and_stir | 2 - .../11-binary_to_decimal | 2 - .../12-combinations | 2 - .../13-print_float | 2 - .../0x03-shell_variables_expansions/2-path | 2 - .../0x03-shell_variables_expansions/3-paths | 2 - .../4-global_variables | 2 - .../5-local_variables | 2 - .../6-create_local_variable | 2 - .../7-create_global_variable | 2 - .../8-true_knowledge | 2 - .../9-divide_and_rule | 2 - .../0x03-shell_variables_expansions/README.md | 58 - .../0-RSA_public_key.pub | 1 - .../1-for_best_school | 6 - .../10-fizzbuzz | 20 - .../100-read_and_cut | 8 - .../101-tell_the_story_of_passwd | 16 - .../102-lets_parse_apache_logs | 4 - .../103-dig_the-data | 4 - .../2-while_best_school | 9 - .../3-until_best_school | 14 - .../4-if_9_say_hi | 15 - .../5-4_bad_luck_8_is_your_chance | 18 - .../6-superstitious_numbers | 27 - .../0x04-loops_conditions_and_parsing/7-clock | 17 - .../8-for_ls | 6 - .../9-to_file_or_not_to_file | 35 - .../README.md | 120 - .../apache-access.log | 3459 - .../0-what-is-my-pid | 5 - .../1-list_your_processes | 5 - .../100-process_and_pid_file | 23 - .../101-manage_my_process | 29 - .../0x05-processes_and_signals/102-zombie.c | 38 - .../2-show_your_bash_pid | 4 - .../3-show_your_bash_pid_made_easy | 4 - .../4-to_infinity_and_beyond | 7 - .../5-dont_stop_me_now | 4 - .../6-stop_me_if_you_can | 4 - .../67-stop_me_if_you_can | 4 - .../0x05-processes_and_signals/7-highlander | 10 - .../8-beheaded_process | 4 - .../0x05-processes_and_signals/README.md | 92 - .../manage_my_process | 9 - .../0-simply_match_school.rb | 2 - .../1-repetition_token_0.rb | 2 - .../0x06-regular_expressions/100-textme.rb | 6 - .../2-repetition_token_1.rb | 2 - .../3-repetition_token_2.rb | 2 - .../4-repetition_token_3.rb | 2 - .../5-beginning_and_end.rb | 2 - .../6-phone_number.rb | 2 - .../7-OMG_WHY_ARE_YOU_SHOUTING.rb | 2 - .../0x06-regular_expressions/README.md | 78 - .../text_messages.log | 96279 ---------------- .../0x07-networking_basics/0-OSI_model | 2 - .../0x07-networking_basics/1-types_of_network | 3 - .../2-MAC_and_IP_address | 2 - .../0x07-networking_basics/3-UDP_and_TCP | 3 - .../4-TCP_and_UDP_ports | 4 - .../5-is_the_host_on_the_network | 14 - .../0x07-networking_basics/README.md | 50 - .../0-change_your_home_IP | 9 - .../1-show_attached_IPs | 8 - .../100-port_listening_on_localhost | 4 - .../0x08-networking_basics_2/README.md | 32 - .../0-simple_web_stack.jpg | Bin 53408 -> 0 bytes .../0-simple_web_stack.pdf | Bin 63612 -> 0 bytes .../1-distributed_web_infrastructure.jpg | Bin 129938 -> 0 bytes .../1-distributed_web_infrastructure.pdf | Bin 80139 -> 0 bytes ...cured_and_monitored_web_infrastructure.jpg | Bin 168092 -> 0 bytes ...cured_and_monitored_web_infrastructure.pdf | Bin 60444 -> 0 bytes .../3-scale_up.jpg | Bin 188248 -> 0 bytes .../3-scale_up.pdf | Bin 39517 -> 0 bytes .../0x09-web_infrastructure_design/README.md | 51 - .../0-create_a_file.pp | 9 - .../1-install_a_package.pp | 5 - .../2-execute_a_command.pp | 5 - .../0x0A-configuration_management/README.md | 44 - .../0x0A-configuration_management/killmenow | 5 - .../0x0B-ssh/0-use_a_private_key | 3 - .../0x0B-ssh/1-create_ssh_key_pair | 3 - .../0x0B-ssh/100-puppet_ssh_config.pp | 40 - .../0x0B-ssh/2-ssh_config | 7 - .../0x0B-ssh/README.md | 49 - .../0x0C-web_server/0-transfer_file | 18 - .../1-install_nginx_web_server | 37 - .../0x0C-web_server/2-setup_a_domain_name | 1 - .../0x0C-web_server/3-redirection | 40 - .../0x0C-web_server/4-not_found_page_404 | 44 - .../7-puppet_install_nginx_web_server.pp | 24 - .../0x0C-web_server/README.md | 57 - .../0-give_me_a_page | 4 - .../0x0D-web_stack_debugging_0/README.md | 94 - .../0-nginx_likes_port_80 | 5 - .../1-debugging_made_short | 5 - .../0x0E-web_stack_debugging_1/README.md | 22 - .../0-custom_http_response_header | 90 - .../1-install_load_balancer | 62 - .../2-puppet_custom_http_response_header.pp | 30 - .../0x0F-load_balancer/README.md | 75 - .../0x10-https_ssl/0-world_wide_web | 35 - .../0x10-https_ssl/1-haproxy_ssl_termination | 23 - .../0x10-https_ssl/100-redirect_http_to_https | 23 - .../0x10-https_ssl/README.md | 32 - .../0-blog_post | 1 - .../1-what_happen_when_diagram | 1 - .../README.md | 29 - .../0-iamsomeoneelse | 3 - .../1-run_nginx_as_nginx | 7 - .../100-fix_in_7_lines_or_less | 7 - .../0x12-web_stack_debugging_2/README.md | 23 - .../0-block_all_incoming_traffic_but | 8 - .../0x13-firewall/100-port_forwarding | 83 - .../0x13-firewall/README.md | 96 - .../0x14-mysql/4-mysql_configuration_primary | 19 - .../0x14-mysql/4-mysql_configuration_replica | 21 - .../0x14-mysql/5-mysql_backup | 11 - .../0x14-mysql/README.md | 138 - .../0x15-api/0-gather_data_from_an_API.py | 30 - .../0x15-api/README.md | 17 - alx-system_engineering-devops-main/README.md | 35 - .../attack_is_the_best_defense/0-sniffing | 1 - .../1-dictionary_attack | 1 - .../attack_is_the_best_defense/README.md | 83 - .../user_authenticating_into_server | Bin 11368 -> 0 bytes 203 files changed, 102459 deletions(-) delete mode 100644 alx-system_engineering-devops-main/.gitignore delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/0-current_working_directory delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/1-listit delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/10-back delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/100-lets_move delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/101-clean_emacs delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/102-tree delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/103-commas delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/11-lists delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/12-file_type delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/13-symbolic_link delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/14-copy_html delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/2-bring_me_home delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/3-listfiles delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/4-listmorefiles delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/5-listfilesdigitonly delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/6-firstdirectory delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/7-movethatfile delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/8-firstdelete delete mode 100755 alx-system_engineering-devops-main/0x00-shell_basics/9-firstdirdeletion delete mode 100644 alx-system_engineering-devops-main/0x00-shell_basics/README.md delete mode 100644 alx-system_engineering-devops-main/0x00-shell_basics/holberton.mgc delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/0-iam_betty delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/1-who_am_i delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/10-mirror_permissions delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/100-change_owner_and_group delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/101-symbolic_link_permissions delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/102-if_only delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/103-Star_Wars delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/11-directories_permissions delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/12-directory_permissions delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/13-change_group delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/2-groups delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/3-new_owner delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/4-empty delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/5-execute delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/6-multiple_permissions delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/7-everybody delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/8-James_Bond delete mode 100755 alx-system_engineering-devops-main/0x01-shell_permissions/9-John_Doe delete mode 100644 alx-system_engineering-devops-main/0x01-shell_permissions/README.md delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/0-hello_world delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/1-confused_smiley delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/10-no_more_js delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/100-empty_casks delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/101-gifs delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/102-acrostic delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/103-the_biggest_fan delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/11-directories delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/12-newest_files delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/13-unique delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/14-findthatword delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/15-countthatword delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/16-whatsnext delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/17-hidethisword delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/18-letteronly delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/19-AZ delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/2-hellofile delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/20-hiago delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/21-reverse delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/22-users_and_homes delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/3-twofiles delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/4-lastlines delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/5-firstlines delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/6-third_line delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/7-file delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/8-cwd_state delete mode 100755 alx-system_engineering-devops-main/0x02-shell_redirections/9-duplicate_last_line delete mode 100644 alx-system_engineering-devops-main/0x02-shell_redirections/README.md delete mode 100644 alx-system_engineering-devops-main/0x02-shell_redirections/list delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/0-alias delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/1-hello_you delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/10-love_exponent_breath delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/100-decimal_to_hexadecimal delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/101-rot13 delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/102-odd delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/103-water_and_stir delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/11-binary_to_decimal delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/12-combinations delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/13-print_float delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/2-path delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/3-paths delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/4-global_variables delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/5-local_variables delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/6-create_local_variable delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/7-create_global_variable delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/8-true_knowledge delete mode 100755 alx-system_engineering-devops-main/0x03-shell_variables_expansions/9-divide_and_rule delete mode 100644 alx-system_engineering-devops-main/0x03-shell_variables_expansions/README.md delete mode 100644 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/0-RSA_public_key.pub delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/1-for_best_school delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/10-fizzbuzz delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/100-read_and_cut delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/103-dig_the-data delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/2-while_best_school delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/3-until_best_school delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/4-if_9_say_hi delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/6-superstitious_numbers delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/7-clock delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/8-for_ls delete mode 100755 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file delete mode 100644 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/README.md delete mode 100644 alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/apache-access.log delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/0-what-is-my-pid delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/1-list_your_processes delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/100-process_and_pid_file delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/101-manage_my_process delete mode 100644 alx-system_engineering-devops-main/0x05-processes_and_signals/102-zombie.c delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/2-show_your_bash_pid delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/3-show_your_bash_pid_made_easy delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/4-to_infinity_and_beyond delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/5-dont_stop_me_now delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/6-stop_me_if_you_can delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/67-stop_me_if_you_can delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/7-highlander delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/8-beheaded_process delete mode 100644 alx-system_engineering-devops-main/0x05-processes_and_signals/README.md delete mode 100755 alx-system_engineering-devops-main/0x05-processes_and_signals/manage_my_process delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/0-simply_match_school.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/1-repetition_token_0.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/100-textme.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/2-repetition_token_1.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/3-repetition_token_2.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/4-repetition_token_3.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/5-beginning_and_end.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/6-phone_number.rb delete mode 100755 alx-system_engineering-devops-main/0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb delete mode 100644 alx-system_engineering-devops-main/0x06-regular_expressions/README.md delete mode 100644 alx-system_engineering-devops-main/0x06-regular_expressions/text_messages.log delete mode 100644 alx-system_engineering-devops-main/0x07-networking_basics/0-OSI_model delete mode 100644 alx-system_engineering-devops-main/0x07-networking_basics/1-types_of_network delete mode 100644 alx-system_engineering-devops-main/0x07-networking_basics/2-MAC_and_IP_address delete mode 100644 alx-system_engineering-devops-main/0x07-networking_basics/3-UDP_and_TCP delete mode 100755 alx-system_engineering-devops-main/0x07-networking_basics/4-TCP_and_UDP_ports delete mode 100755 alx-system_engineering-devops-main/0x07-networking_basics/5-is_the_host_on_the_network delete mode 100644 alx-system_engineering-devops-main/0x07-networking_basics/README.md delete mode 100755 alx-system_engineering-devops-main/0x08-networking_basics_2/0-change_your_home_IP delete mode 100755 alx-system_engineering-devops-main/0x08-networking_basics_2/1-show_attached_IPs delete mode 100755 alx-system_engineering-devops-main/0x08-networking_basics_2/100-port_listening_on_localhost delete mode 100644 alx-system_engineering-devops-main/0x08-networking_basics_2/README.md delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.jpg delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.pdf delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.jpg delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.pdf delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.jpg delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.pdf delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.jpg delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.pdf delete mode 100644 alx-system_engineering-devops-main/0x09-web_infrastructure_design/README.md delete mode 100644 alx-system_engineering-devops-main/0x0A-configuration_management/0-create_a_file.pp delete mode 100644 alx-system_engineering-devops-main/0x0A-configuration_management/1-install_a_package.pp delete mode 100644 alx-system_engineering-devops-main/0x0A-configuration_management/2-execute_a_command.pp delete mode 100644 alx-system_engineering-devops-main/0x0A-configuration_management/README.md delete mode 100755 alx-system_engineering-devops-main/0x0A-configuration_management/killmenow delete mode 100755 alx-system_engineering-devops-main/0x0B-ssh/0-use_a_private_key delete mode 100755 alx-system_engineering-devops-main/0x0B-ssh/1-create_ssh_key_pair delete mode 100644 alx-system_engineering-devops-main/0x0B-ssh/100-puppet_ssh_config.pp delete mode 100644 alx-system_engineering-devops-main/0x0B-ssh/2-ssh_config delete mode 100644 alx-system_engineering-devops-main/0x0B-ssh/README.md delete mode 100755 alx-system_engineering-devops-main/0x0C-web_server/0-transfer_file delete mode 100755 alx-system_engineering-devops-main/0x0C-web_server/1-install_nginx_web_server delete mode 100644 alx-system_engineering-devops-main/0x0C-web_server/2-setup_a_domain_name delete mode 100755 alx-system_engineering-devops-main/0x0C-web_server/3-redirection delete mode 100755 alx-system_engineering-devops-main/0x0C-web_server/4-not_found_page_404 delete mode 100644 alx-system_engineering-devops-main/0x0C-web_server/7-puppet_install_nginx_web_server.pp delete mode 100644 alx-system_engineering-devops-main/0x0C-web_server/README.md delete mode 100755 alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/0-give_me_a_page delete mode 100644 alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/README.md delete mode 100755 alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/0-nginx_likes_port_80 delete mode 100755 alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/1-debugging_made_short delete mode 100644 alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/README.md delete mode 100755 alx-system_engineering-devops-main/0x0F-load_balancer/0-custom_http_response_header delete mode 100755 alx-system_engineering-devops-main/0x0F-load_balancer/1-install_load_balancer delete mode 100644 alx-system_engineering-devops-main/0x0F-load_balancer/2-puppet_custom_http_response_header.pp delete mode 100644 alx-system_engineering-devops-main/0x0F-load_balancer/README.md delete mode 100755 alx-system_engineering-devops-main/0x10-https_ssl/0-world_wide_web delete mode 100644 alx-system_engineering-devops-main/0x10-https_ssl/1-haproxy_ssl_termination delete mode 100644 alx-system_engineering-devops-main/0x10-https_ssl/100-redirect_http_to_https delete mode 100644 alx-system_engineering-devops-main/0x10-https_ssl/README.md delete mode 100644 alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/0-blog_post delete mode 100644 alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/1-what_happen_when_diagram delete mode 100644 alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/README.md delete mode 100755 alx-system_engineering-devops-main/0x12-web_stack_debugging_2/0-iamsomeoneelse delete mode 100755 alx-system_engineering-devops-main/0x12-web_stack_debugging_2/1-run_nginx_as_nginx delete mode 100755 alx-system_engineering-devops-main/0x12-web_stack_debugging_2/100-fix_in_7_lines_or_less delete mode 100644 alx-system_engineering-devops-main/0x12-web_stack_debugging_2/README.md delete mode 100644 alx-system_engineering-devops-main/0x13-firewall/0-block_all_incoming_traffic_but delete mode 100644 alx-system_engineering-devops-main/0x13-firewall/100-port_forwarding delete mode 100644 alx-system_engineering-devops-main/0x13-firewall/README.md delete mode 100644 alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_primary delete mode 100644 alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_replica delete mode 100755 alx-system_engineering-devops-main/0x14-mysql/5-mysql_backup delete mode 100644 alx-system_engineering-devops-main/0x14-mysql/README.md delete mode 100644 alx-system_engineering-devops-main/0x15-api/0-gather_data_from_an_API.py delete mode 100644 alx-system_engineering-devops-main/0x15-api/README.md delete mode 100644 alx-system_engineering-devops-main/README.md delete mode 100644 alx-system_engineering-devops-main/attack_is_the_best_defense/0-sniffing delete mode 100644 alx-system_engineering-devops-main/attack_is_the_best_defense/1-dictionary_attack delete mode 100644 alx-system_engineering-devops-main/attack_is_the_best_defense/README.md delete mode 100755 alx-system_engineering-devops-main/attack_is_the_best_defense/user_authenticating_into_server diff --git a/alx-system_engineering-devops-main/.gitignore b/alx-system_engineering-devops-main/.gitignore deleted file mode 100644 index e4e5f6c..0000000 --- a/alx-system_engineering-devops-main/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*~ \ No newline at end of file diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/0-current_working_directory b/alx-system_engineering-devops-main/0x00-shell_basics/0-current_working_directory deleted file mode 100755 index 1cc8df5..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/0-current_working_directory +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -pwd diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/1-listit b/alx-system_engineering-devops-main/0x00-shell_basics/1-listit deleted file mode 100755 index 98bee2d..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/1-listit +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/10-back b/alx-system_engineering-devops-main/0x00-shell_basics/10-back deleted file mode 100755 index fdccc55..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/10-back +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cd - diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/100-lets_move b/alx-system_engineering-devops-main/0x00-shell_basics/100-lets_move deleted file mode 100755 index 713084d..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/100-lets_move +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mv [[:upper:]]* /tmp/u/ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/101-clean_emacs b/alx-system_engineering-devops-main/0x00-shell_basics/101-clean_emacs deleted file mode 100755 index aaea1e2..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/101-clean_emacs +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rm *~ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/102-tree b/alx-system_engineering-devops-main/0x00-shell_basics/102-tree deleted file mode 100755 index ff13cac..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/102-tree +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mkdir -p welcome/to/holberton diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/103-commas b/alx-system_engineering-devops-main/0x00-shell_basics/103-commas deleted file mode 100755 index 7485eee..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/103-commas +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -amp | sort -d diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/11-lists b/alx-system_engineering-devops-main/0x00-shell_basics/11-lists deleted file mode 100755 index bc6c4fc..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/11-lists +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -la . .. /boot diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/12-file_type b/alx-system_engineering-devops-main/0x00-shell_basics/12-file_type deleted file mode 100755 index 6787573..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/12-file_type +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -file /tmp/iamafile diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/13-symbolic_link b/alx-system_engineering-devops-main/0x00-shell_basics/13-symbolic_link deleted file mode 100755 index 4bec017..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/13-symbolic_link +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ln -s /bin/ls __ls__ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/14-copy_html b/alx-system_engineering-devops-main/0x00-shell_basics/14-copy_html deleted file mode 100755 index 0576c4d..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/14-copy_html +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cp -un *.html ../ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/2-bring_me_home b/alx-system_engineering-devops-main/0x00-shell_basics/2-bring_me_home deleted file mode 100755 index b1e4921..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/2-bring_me_home +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cd ~ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/3-listfiles b/alx-system_engineering-devops-main/0x00-shell_basics/3-listfiles deleted file mode 100755 index 8f1e103..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/3-listfiles +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -l diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/4-listmorefiles b/alx-system_engineering-devops-main/0x00-shell_basics/4-listmorefiles deleted file mode 100755 index 681d1f0..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/4-listmorefiles +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -la diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/5-listfilesdigitonly b/alx-system_engineering-devops-main/0x00-shell_basics/5-listfilesdigitonly deleted file mode 100755 index d2ab274..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/5-listfilesdigitonly +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -lan diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/6-firstdirectory b/alx-system_engineering-devops-main/0x00-shell_basics/6-firstdirectory deleted file mode 100755 index 31fbd3b..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/6-firstdirectory +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mkdir /tmp/holberton diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/7-movethatfile b/alx-system_engineering-devops-main/0x00-shell_basics/7-movethatfile deleted file mode 100755 index 7e716fc..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/7-movethatfile +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mv /tmp/betty /tmp/holberton/ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/8-firstdelete b/alx-system_engineering-devops-main/0x00-shell_basics/8-firstdelete deleted file mode 100755 index b112870..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/8-firstdelete +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rm /tmp/holberton/betty diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/9-firstdirdeletion b/alx-system_engineering-devops-main/0x00-shell_basics/9-firstdirdeletion deleted file mode 100755 index c27d72b..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/9-firstdirdeletion +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rmdir /tmp/holberton diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/README.md b/alx-system_engineering-devops-main/0x00-shell_basics/README.md deleted file mode 100644 index 42d2b59..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# 0x00 Shell Basics - -## Resources - -- LinuxCommand.org [What is "the Shell"?](http://linuxcommand.org/lc3_lts0010.php). -- [Read the Manual](http://linuxcommand.org/lc3_man_pages/man1.html). -- [Keyboard Shortcuts for Bash](https://www.howtogeek.com/howto/ubuntu/keyboard-shortcuts-for-bash-command-shell-for-ubuntu-debian-suse-redhat-linux-etc/). - -## Tasks - -0. [Where am I?](./0-current_working_directory) : A script that prints the absolute path of the current working directory. -1. [What's in there?](./1-listit) : A script that displays the contents of your current directory. -2. [There is no place like home](./2-bring_me_home) : A script that changes the working directory to the user's home directory. -3. [The long format](./3-listfiles) : A script that displays the current directory contents in a long format. -4. [Hidden files](./4-listmorefiles) : A script that displays the current directory contents including hidden files. -5. [I loce numbers](./5-listfilesdigitonly) : A script that displays the current directory contents, using long format, while displaying group IDs in numeral and show hidden files. -6. [Welcome holberton](./6-firstdirectory) : A script that will create a directory named `holberton` in the `/tmp/` directory. -7. [Betty in Holberton](./7-movethatfile) : A scipt that will move a file called `betty` from home to the new directory created above. -8. [Bye bye Betty](./8-firstdelete) : A script that will delete file `betty` from the new location. -9. [Bye bye Holberton](./9-firstdirdeletion) : A script that will delete the directory `holberton` that is in the `/tmp/` directory path. -10. [Back to the future](./10-back) Change working directory to the previous one. -11. [Lists](./11-lists) List all files (*even ones with names beginning with a period character, which are normally hidden*) in the current directory and the parent of the working directory and the /boot directory (in this order), in long format. -12. [File type](./12-file_type) A script that prints the type of the named file `iamafile`. The `iamafile` will be in the `/tmp/` directory when we will run your script. -13. [We are symbols, and inhabit symbols](./13-symbolic_link) Create a symbolic link to `/bin/ls`, named `__ls__`. The symbolic link should be created in the current working directory. -14. [Copy HTML files](./14-copy_html) Create a script that copies all `html` files from the current working directory to the parent working directory while only copying files that did not exist. -15. [Let's move](./100-lets_move) A script that moves all files beginning with an uppercase letter to the directory `/tmp/u`. -16. [Clean Emacs](./101-clean_emacs) A script that deletes all files in the current directory that end with the character `~`. -17. [Tree](./102-tree) A script that creates the directory `welcome/`, `welcome/to/` and `welcome/to/holberton`. -18. [Life is a series of commas, not periods](./103-commas) A script that lists all the files and directories of the current directory separated by commas `,`. -19. [File type: Holberton](./holberton.mgc) Create a magic file `holberton.mgc` that can be used with the command `file` to detect `Holberton` data files always contain the string `HOLBERTON` at offset 0. diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/holberton.mgc b/alx-system_engineering-devops-main/0x00-shell_basics/holberton.mgc deleted file mode 100644 index 9411df5..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/holberton.mgc +++ /dev/null @@ -1,2 +0,0 @@ -0 string HOLBERTON Holberton data -!:mime Holberton \ No newline at end of file diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/0-iam_betty b/alx-system_engineering-devops-main/0x01-shell_permissions/0-iam_betty deleted file mode 100755 index 6498dd1..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/0-iam_betty +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -su betty diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/1-who_am_i b/alx-system_engineering-devops-main/0x01-shell_permissions/1-who_am_i deleted file mode 100755 index de2c513..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/1-who_am_i +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -whoami diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/10-mirror_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/10-mirror_permissions deleted file mode 100755 index e4e179d..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/10-mirror_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod --reference=olleh hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/100-change_owner_and_group b/alx-system_engineering-devops-main/0x01-shell_permissions/100-change_owner_and_group deleted file mode 100755 index 19c9c7e..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/100-change_owner_and_group +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown betty:holberton * diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/101-symbolic_link_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/101-symbolic_link_permissions deleted file mode 100755 index 58b5dff..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/101-symbolic_link_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown -h betty:holberton _hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/102-if_only b/alx-system_engineering-devops-main/0x01-shell_permissions/102-if_only deleted file mode 100755 index 1ce0748..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/102-if_only +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown --from=guillaume betty hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/103-Star_Wars b/alx-system_engineering-devops-main/0x01-shell_permissions/103-Star_Wars deleted file mode 100755 index 9438403..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/103-Star_Wars +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -telnet towel.blinkenlights.nl diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/11-directories_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/11-directories_permissions deleted file mode 100755 index d874e3d..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/11-directories_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod -R +X . diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/12-directory_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/12-directory_permissions deleted file mode 100755 index 46d9641..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/12-directory_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mkdir -m 751 dir_holberton diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/13-change_group b/alx-system_engineering-devops-main/0x01-shell_permissions/13-change_group deleted file mode 100755 index 83c35d4..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/13-change_group +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chgrp holberton hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/2-groups b/alx-system_engineering-devops-main/0x01-shell_permissions/2-groups deleted file mode 100755 index 287fd07..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/2-groups +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -groups diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/3-new_owner b/alx-system_engineering-devops-main/0x01-shell_permissions/3-new_owner deleted file mode 100755 index 4a0f10c..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/3-new_owner +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown betty hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/4-empty b/alx-system_engineering-devops-main/0x01-shell_permissions/4-empty deleted file mode 100755 index 81a2af0..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/4-empty +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -touch hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/5-execute b/alx-system_engineering-devops-main/0x01-shell_permissions/5-execute deleted file mode 100755 index fe1c51a..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/5-execute +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod u+x hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/6-multiple_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/6-multiple_permissions deleted file mode 100755 index ff570ab..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/6-multiple_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod ug+x,o+r hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/7-everybody b/alx-system_engineering-devops-main/0x01-shell_permissions/7-everybody deleted file mode 100755 index 71c316b..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/7-everybody +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod +x hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/8-James_Bond b/alx-system_engineering-devops-main/0x01-shell_permissions/8-James_Bond deleted file mode 100755 index e0a2c60..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/8-James_Bond +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod 007 hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/9-John_Doe b/alx-system_engineering-devops-main/0x01-shell_permissions/9-John_Doe deleted file mode 100755 index 255b32c..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/9-John_Doe +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod 753 hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/README.md b/alx-system_engineering-devops-main/0x01-shell_permissions/README.md deleted file mode 100644 index a72bad1..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# 0x01 Shell Permissions - -## Resources - -- LinuxCommand.org [Permissions](http://linuxcommand.org/lc3_lts0090.php). - -## Tasks - -0. [My name is Betty](./0-iam_betty) : A script that switches the current user to the user betty. -1. [Who am I](./1-who_am_i) : A script that prints the effective username of the current user. -2. [Groups](./2-groups) : A script that prints all the groups the current user is part of. -3. [New owner](./3-new_owner) : A script that changes the owner of the file `hello` to the user `betty`. -4. [Empty!](./4-empty) : A script that creates an empty file called `hello`. -5. [Execute](./5-execute) : A script that adds execute permission to the owner of the file `hello`. -6. [Multiple permissions](./6-multiple_permissions) : A script that adds execute permission to the owner and the group owner, and read permission to the other users, to the file `hello`. -7. [Everybody!](./7-everybody) : A script that adds execution permissions to the owner, the group owner and the other users, to the file `hello`. -8. [James Bond](./8-James_Bond) : A script that gives the gives the rest of the users permission and removes all permission for the owner and the group owner. -9. [John Doe](./9-John_Doe) : A script that sets the mode of the file `hello`; where owner has all the permissions set, group owner has execute permissions set and others have only write and read permissions set. -10. [Look in the mirror](./10-mirror_permissions) : A script that sets the mode of the file `hello` the same as `olleh`'s mode. -11. [Directories](./11-directories_permissions) : A script that adds execute permission to all subdirectories of the current directory for the owner, the group owner and all other users. (**NB:** *Regular files should not be changed.*) -12. [More directories](./12-directory_permissions) : A script that creates a directory called `dir_holberton` with permissions **751** in the working directory. -13. [Change group](./13-change_group) : A script that changes the group owner to `holberton` for the file `hello`. -14. [Owner and group](./100-change_owner_and_group) : A script that changes the owner to `betty` and the group owner to `holberton` for all the files and directories in the working directory. -15. [Symbolic links](./101-symbolic_link_permissions) : A script that changes the owner and the group owner of `_hello` to `betty` and `holberton` respectively. -16. [If only](./102-if_only) : A script that changes the owner of the file `hello` to `betty` only if it is owned by the user `guillaume`. -17. [Star Wars](./103-Star_Wars) : A script that will play the StarWars IV episode in the terminal. diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/0-hello_world b/alx-system_engineering-devops-main/0x02-shell_redirections/0-hello_world deleted file mode 100755 index 49374d2..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/0-hello_world +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "Hello, World" diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/1-confused_smiley b/alx-system_engineering-devops-main/0x02-shell_redirections/1-confused_smiley deleted file mode 100755 index 390d0dc..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/1-confused_smiley +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "\"(Ôo)'" diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/10-no_more_js b/alx-system_engineering-devops-main/0x02-shell_redirections/10-no_more_js deleted file mode 100755 index ebc652d..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/10-no_more_js +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find . -name '*.js' -type f -delete diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/100-empty_casks b/alx-system_engineering-devops-main/0x02-shell_redirections/100-empty_casks deleted file mode 100755 index e0499ab..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/100-empty_casks +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find . -empty -printf '%f\n' diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/101-gifs b/alx-system_engineering-devops-main/0x02-shell_redirections/101-gifs deleted file mode 100755 index 8220d84..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/101-gifs +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find -type f -name "*.gif" | rev | cut -d "/" -f 1 | cut -d '.' -f 2- | rev | LC_ALL=C sort -f diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/102-acrostic b/alx-system_engineering-devops-main/0x02-shell_redirections/102-acrostic deleted file mode 100755 index 631604a..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/102-acrostic +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cut -c 1 | paste -s -d '' diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/103-the_biggest_fan b/alx-system_engineering-devops-main/0x02-shell_redirections/103-the_biggest_fan deleted file mode 100755 index 40d2824..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/103-the_biggest_fan +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tail -n +2 | cut -f -1 | sort -k 1 | uniq -c | sort -rnk 1 | head -n 11 | rev | cut -d ' ' -f -1 | rev diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/11-directories b/alx-system_engineering-devops-main/0x02-shell_redirections/11-directories deleted file mode 100755 index 02299ab..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/11-directories +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find . -mindepth 1 -type d | wc -l diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/12-newest_files b/alx-system_engineering-devops-main/0x02-shell_redirections/12-newest_files deleted file mode 100755 index 6a6a461..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/12-newest_files +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -t | head -n 10 diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/13-unique b/alx-system_engineering-devops-main/0x02-shell_redirections/13-unique deleted file mode 100755 index 00b10f2..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/13-unique +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -sort | uniq -u diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/14-findthatword b/alx-system_engineering-devops-main/0x02-shell_redirections/14-findthatword deleted file mode 100755 index 6b55880..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/14-findthatword +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep root /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/15-countthatword b/alx-system_engineering-devops-main/0x02-shell_redirections/15-countthatword deleted file mode 100755 index 61394c6..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/15-countthatword +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep bin /etc/passwd | wc -l diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/16-whatsnext b/alx-system_engineering-devops-main/0x02-shell_redirections/16-whatsnext deleted file mode 100755 index 9ee01aa..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/16-whatsnext +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep -A 3 'root' /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/17-hidethisword b/alx-system_engineering-devops-main/0x02-shell_redirections/17-hidethisword deleted file mode 100755 index 71d8734..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/17-hidethisword +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep -v bin /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/18-letteronly b/alx-system_engineering-devops-main/0x02-shell_redirections/18-letteronly deleted file mode 100755 index 2df0ed6..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/18-letteronly +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep '^[[:upper:]]\|^[[:lower:]]' /etc/ssh/sshd_config diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/19-AZ b/alx-system_engineering-devops-main/0x02-shell_redirections/19-AZ deleted file mode 100755 index 4bf04da..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/19-AZ +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tr Ac Ze diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/2-hellofile b/alx-system_engineering-devops-main/0x02-shell_redirections/2-hellofile deleted file mode 100755 index 20d5e78..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/2-hellofile +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/20-hiago b/alx-system_engineering-devops-main/0x02-shell_redirections/20-hiago deleted file mode 100755 index 476c997..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/20-hiago +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tr -d cC diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/21-reverse b/alx-system_engineering-devops-main/0x02-shell_redirections/21-reverse deleted file mode 100755 index e7693b4..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/21-reverse +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rev diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/22-users_and_homes b/alx-system_engineering-devops-main/0x02-shell_redirections/22-users_and_homes deleted file mode 100755 index 16eff19..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/22-users_and_homes +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cut -d':' -f1,6 /etc/passwd | sort diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/3-twofiles b/alx-system_engineering-devops-main/0x02-shell_redirections/3-twofiles deleted file mode 100755 index 8884376..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/3-twofiles +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat /etc/{passwd,hosts} diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/4-lastlines b/alx-system_engineering-devops-main/0x02-shell_redirections/4-lastlines deleted file mode 100755 index b945269..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/4-lastlines +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tail -n 10 /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/5-firstlines b/alx-system_engineering-devops-main/0x02-shell_redirections/5-firstlines deleted file mode 100755 index b90c1ed..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/5-firstlines +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -head -n 10 /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/6-third_line b/alx-system_engineering-devops-main/0x02-shell_redirections/6-third_line deleted file mode 100755 index 3680acd..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/6-third_line +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat iacta | head -n 3 | tail -n 1 diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/7-file b/alx-system_engineering-devops-main/0x02-shell_redirections/7-file deleted file mode 100755 index b0727e7..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/7-file +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "Holberton School" > "\*\\\'\"Holberton School\"\'\\\*$\?\*\*\*\*\*:)" diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/8-cwd_state b/alx-system_engineering-devops-main/0x02-shell_redirections/8-cwd_state deleted file mode 100755 index 3297f82..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/8-cwd_state +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -la > ls_cwd_content diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/9-duplicate_last_line b/alx-system_engineering-devops-main/0x02-shell_redirections/9-duplicate_last_line deleted file mode 100755 index a62cfaf..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/9-duplicate_last_line +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tail -n 1 iacta >> iacta diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/README.md b/alx-system_engineering-devops-main/0x02-shell_redirections/README.md deleted file mode 100644 index 78ac851..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/README.md +++ /dev/null @@ -1,65 +0,0 @@ -# 0x002 Shell, I/O Redirections and Filters - -## Resources - -- LinuxCommand.Org [I/O Redirection](http://linuxcommand.org/lc3_lts0070.php). -- BashGuide [SpecialCharacters](http://mywiki.wooledge.org/BashGuide/SpecialCharacters). - -## Tasks - -0. [Hello World](./0-hello_world) : A script that prints `Hello, World`, followed by a new line to the standard output. -1. [Confused smiley](./1-confused_smiley) : A script that displays a confused smiley: `"(Ôo)'`. -2. [Let's display a file](./2-hellofile) : A script that displays the content of the `/etc/passwd` file. -3. [What about 2?](./3-twofiles) : A scipt that displays content of `/etc/passwd` and `/etc/hosts`. -4. [Last lines of a file](./4-lastlines) : A script that displays the last 10 lines of `/etc/passwd`. -5. [I'd prefer the first ones actually](./5-firstlines) : A scipt that displays the first 10 lines of `etc/passwd`. -6. [Line #2](./6-third_line) : A script that displays the third line of the file `iacta`. - - The file `iacta` will be in the working directory and you are not allowed to use `sed`. -7. [It is a good file that cuts iron without making a noise](./7-file) : A script that creates a file named exactly `\*\\'"Holberton School"\'\\*$\?\*\*\*\*\*:)` containing the text `Holberton School` ending by a new line. - - For this challenge, remember to use a single backslash `\` to escape special characters and double backslash `\\` to escape the backslash itself. -8. [Save current state of directory](./8-cwd_state) : A script that writes into the file `ls_cwd_content` the result of the command `ls -la`. If the file `ls_cwd_content` already exists, it should be overwritten. If the file `ls_cwd_content`does not exist, create it. -9. [Duplicate last line](./9-duplicate_last_line) : A script that duplicates the last line of the file `iacta`. -10. [No more javascript](./10-no_more_js) : A script that deletes all the regular files (not the directories) with a `.js` extension that are present in the current directory and all its subfolders. -11. [Don't just count your directories, make your directories count](./11-directories) : A script that counts the number of directories and sub-directories in the current directory. - - The current and present directories should not be taken into account. - - Hidden directories should be counted. - - **Solution:** `mindepth 1` ; To exclude root directory - - **Others:** `maxdepth 1` ; To avoid parsing sub directories. (*you may need this in future.*) -12. [Whats12's new](./12-newest_files) : A script that prints the 10 newest files in the current directory. - - The output should be; one file per line and sorted from the newest to the oldest. -13. [Being unique is better than being perfect](./13-unique) : A script that takes a list of words as input and prints only words that appear exactly once. - - Input and Output format is; `One word per line`. - - Words should be sorted. (use this [list](./list) as your input to see if the challenge will work. 😊) `cat list | ./13-unique` -14. [It must be in that file](./14-findthatword) : A script that prints lines containing the pattern `"root"` from the file `/etc/passwd`. -15. [Count that word](./15-countthatword) : A script that displays the number of lines that contain the pattern `"bin"` in the file `/etc/passwd`. -16. [What's next?](./16-whatsnext) : A script that containing the pattern `"root"` and 3 lines after them in the file `/etc/passwd`. - - `B` : This shows the lines before your pattern match. - - `A` : This shows the lines after your pattern match. -17. [I hate bins](./17-hidethisword) : A script that displays all the lines in the file `/etc/passwd` that do not contain the pattern `"bin"`. -18. [Letters only please](./18-letteronly) : A script that displays all lines of the file `/ect/ssh/sshd_config` starting with a letter, including capital letters as well. - - This also works : `grep ^[[:alpha:]] /etc/ssh/sshd_config` -19. [A to Z](./19-AZ) : A script that replaces all characters `A` and `C` from input to `Z` and `E` respectively. -20. [Without C, you would live in hiago](./20-hiago) : A script that removes all letters `c` and `C` from input. -21. [esreveR](./21-reverse) : A script that reverse its input. -22. [DJ Cut Killer](./22-users_and_homes) : A scipt that displays all users and their home directories, sorted by users, based on the `/etc/passwd` file. -23. [Empty casks make the most noise](./100-empty_casks) : A script that finds all empty files and directories in the current directory and all sub-directories. - - Only names of the files and directories should be displayed (not the entire path.) - - Hidden files should be listed also, one file name per line and the listing should end with a new line. - - You are not allowed to use `basename`, `grep`, `egrep`, `fgrep` or `rgrep`. -24. [A gif is worth ten thousand words](./101-gifs) : A script that lists all the files with a `.gif` extension in the current directory and all its sub-directories. - - Hidden files should be listed. - - Only regular files (not directories) should be listed. - - The names of the files should be displayed without their extensions. - - The files should be sorted by byte values, but case-insensitive (file `aaa` should be listed before file `bbb`, file `.b` should be listed before file `a`, and file `Rona` should be listed after file `jay`) - - One file name per line. - - The listing should end with a new line. - - You are not allowed to use `basename`, `grep`, `egrep`, `fgrep` or `rgrep`. -25. [Acrostic](./102-acrostic) : A script that decodes acrostics that use the first letter of each line. - - What to decode: `An acrostic is a poem (or other form of writing) in which the first letter (or syllable, or word) of each line (or paragraph, or other recurring feature in the text) spells out a word, message or the alphabet. The word comes from the French acrostiche from post-classical Latin acrostichis). As a form of constrained writing, an acrostic can be used as a mnemonic device to aid memory retrieval.` [Read more here](https://en.wikipedia.org/wiki/Acrostic) - - The **‘decoded’** message has to end with a new line. - - You are not allowed to use `grep`, `egrep`, `fgrep` or `rgrep`. -26. [The biggest fan](./103-the_biggest_fan) : A script that parses web servers logs in TSV format as input and displays the 11 hosts or IP addresses which did the most requests. - - Download this file: `wget http://indeedeng.github.io/imhotep/files/nasa_19950801.tsv` - - Run command this way: `./103-the_biggest_fan < nasa_19950801.tsv`. - - Order by number of requests, most active host or IP at the top. - - You are not allowed to use `grep`, `egrep`, `fgrep` or `rgrep`. diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/list b/alx-system_engineering-devops-main/0x02-shell_redirections/list deleted file mode 100644 index ac0cdc8..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/list +++ /dev/null @@ -1,26 +0,0 @@ -C# -C -Javascript -Perl -PHP -PHP -ASP -R -Go -C# -C++ -R -Perl -Javascript -Javascript -Python -Javascript -Javascript -Javascript -Java -Java -Python -Javascript -Javascript -Javascript -ASP diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/0-alias b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/0-alias deleted file mode 100755 index 73a0817..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/0-alias +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -alias ls="rm *" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/1-hello_you b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/1-hello_you deleted file mode 100755 index 43db6b7..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/1-hello_you +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "hello $USER" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/10-love_exponent_breath b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/10-love_exponent_breath deleted file mode 100755 index 3066f64..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/10-love_exponent_breath +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $(($BREATH ** $LOVE)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/100-decimal_to_hexadecimal b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/100-decimal_to_hexadecimal deleted file mode 100755 index 95a64a2..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/100-decimal_to_hexadecimal +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printf "%x\n" $DECIMAL diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/101-rot13 b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/101-rot13 deleted file mode 100755 index 3879ef6..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/101-rot13 +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tr 'A-Za-z' 'N-ZA-Mn-za-m' diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/102-odd b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/102-odd deleted file mode 100755 index ee135d0..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/102-odd +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -paste -d, - - | cut -d, -f1 diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/103-water_and_stir b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/103-water_and_stir deleted file mode 100755 index a24b73e..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/103-water_and_stir +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printf "%o\n" $(( $((5#$(echo $WATER | tr water 01234))) + $((5#$(echo $STIR | tr stir. 01234))) )) | tr 01234567 behlnort diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/11-binary_to_decimal b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/11-binary_to_decimal deleted file mode 100755 index 8fe10be..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/11-binary_to_decimal +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $((2#$BINARY)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/12-combinations b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/12-combinations deleted file mode 100755 index a46d40f..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/12-combinations +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo {a..z}{a..z} | tr ' ' '\n' | grep -v 'oo' diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/13-print_float b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/13-print_float deleted file mode 100755 index 9216256..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/13-print_float +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printf "%.2f\n" $NUM diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/2-path b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/2-path deleted file mode 100755 index d49d8eb..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/2-path +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -export PATH=${PATH}:/action diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/3-paths b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/3-paths deleted file mode 100755 index f6b3350..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/3-paths +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $PATH | tr ":" "\n" | wc -l diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/4-global_variables b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/4-global_variables deleted file mode 100755 index bcca9bc..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/4-global_variables +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printenv diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/5-local_variables b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/5-local_variables deleted file mode 100755 index deebf45..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/5-local_variables +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -declare diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/6-create_local_variable b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/6-create_local_variable deleted file mode 100755 index 2981bb8..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/6-create_local_variable +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -BETTY="Holberton" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/7-create_global_variable b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/7-create_global_variable deleted file mode 100755 index 2b76fd0..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/7-create_global_variable +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -export HOLBERTON="Betty" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/8-true_knowledge b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/8-true_knowledge deleted file mode 100755 index 064983f..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/8-true_knowledge +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $(($TRUEKNOWLEDGE + 128)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/9-divide_and_rule b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/9-divide_and_rule deleted file mode 100755 index 9cc10ce..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/9-divide_and_rule +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $(($POWER / $DIVIDE)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/README.md b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/README.md deleted file mode 100644 index e53a90e..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/README.md +++ /dev/null @@ -1,58 +0,0 @@ -# 0x03 Shell, init files, variables and expansions - -## Resources - -- Shell [Expansion](http://linuxcommand.org/lc3_lts0080.php). -- Shell [Arithmetic](https://www.gnu.org/software/bash/manual/html_node/Shell-Arithmetic.html). -- Bash [Variable](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_02.html). -- Bash [Shell initialization files](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_01.html). -- [The alias Command](http://www.linfo.org/alias.html). - -## Tasks - -0. [\](./0-alias) : A script that creates an alias. - - Name of alias: `ls` - - Value: `rm *` -1. [Hello you](./1-hello_you) : A script that prints `hello user`, where user is the current Linux user. -2. [The path to success is to take massive, determined action](./2-path) : A script that adds `/action` to the `PATH`. `/action` should be the last directory the shell looks into when looking for a program. -3. [If the path be beautiful, let us not ask where it leads](./3-paths) : A script that counts the number of directories in the `PATH`. -4. [Global variables](./4-global_variables) : A script that prints all the enviroment variables. -5. [Local variables ](./5-local_variables) : A script that lists all local variables and enviroment variables, and functions. - - Name of variable : `HOLBERTON` - - Value : `Betty` -6. [Local variable](./6-create_local_variable) : A script that creates a new local variable. -7. [Global variable](./7-create_global_variable) : A script that creates a new global variable. - - Name of variable : `HOLBERTON` - - Value : `Betty` -8. [Every addition to true knowledge is an addition to human power](./8-true_knowledge) : A script that prints the results of the addition of 128 with the value stored in the enviroment variable `TRUEKNOWLEDGE`, followed by a new line. - - Remember to export variable TRUEKNOWLEDGE : `export TRUEKNOWLEDGE=1209` - - Run command this way: `./8-true_knowledge | cat -e` -9. [Divide and rule](./9-divide_and_rule) : A script that prints the result of `POWER` divide by `DIVIDE`, followed by a new line. - - `POWER` and `DIVIDE` are environment variables. - - Variables values; - - export POWER=42784 - - export DIVIDE=32 - - Run command this way: `./9-divide_and_rule | cat -e` -10. [Love is anterior to life, posterior to death, initial of creation, and the exponent of breath](./10-love_exponent_breath) : A script that displays the result of `BREATH` to the power of `LOVE`. - - `BREATH` and `LOVE` are enviroment variables. - - The script should display the result, followed by a new line. -11. [There are 10 types of people in the world -- Those who understand binary, and those who don't](./11-binary_to_decimal) : A script that converts a number from base 2 to base 10. - - The number in base 2 is stored in the enviroment variable `BINARY`. - - The script should display the number in base 10, followed by a new line. -12. [Combination](./12-combinations) : A script that prints all possible combinations of two letters, except `oo`. - - Letters are lower cases, from `a` to `z`. - - One combination per line. - - The output should be alpha ordered, starting with `aa`. - - Do not print `oo`. - - Your script file should contain maximum 64 characters. -13. [Floats](./13-print_float) : A script that prints a number with two decimal places, followed by a new line. - - The number will be stored in the enviroment variable `NUM`. -14. [Decimal to Hexadecimal](./100-decimal_to_hexadecimal) : A script that converts a number from base 10 to base 16. - - The number is base 10 is stored in the enviroment variable `DECIMAL`. - - The script should display the number in base 16, followed by a new line. -15. [Everyone is a proponent of strong encryption](./101-rot13) : A script that encodes and decodes text using the rot13 encryption. Assume ASCII. -16. [The eggs of the brood need to be an odd number](./102-odd) : A script that prints every other line from the input, starting with the first line. -17. [I'm an instant star. Just add water and stir.](./103-water_and_stir) : A script that adds the two numbers stored in the enviroment variables `WATER` and `STIR` and prints the results. - - `WATER` is in base `water`. - - `STIR` is in base `stir`. - - The result should be in base `behlnort`. diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/0-RSA_public_key.pub b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/0-RSA_public_key.pub deleted file mode 100644 index a8ec255..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/0-RSA_public_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDjr22fiOaHPnXe4Nhlw+E/vZS5Pq7Y4LhaBWtcsXmxQjeTLy4KwdCyuZ2SALk9cS38sv6uMRTM3CVaC18O4AVylN7bAM8nPwVoIBqAr9ML75Q9qj+Abm8Vg8tSfYP4QS8MTbGeeyZdiq6nXWlLYVk/Jdf+ux+riHyW31mkpJyoQw/NU8I7psoa6xAS2c37oMKepi6lmYEnA7oZDE2PWt1oC8dqAqsC4Gyrz7veCj6xbGutpuo9cmuaoYmLnjdUr9n1gcsRWzrJhBYD6RRzLtSkDI8Qpd2pG5Bo9TFJg2stBkTYr9co4IuPrdSn2alB/Nl4laY9nzPD20FKDaRYfTiDMX6j64bkYWdeS3QYy/LzP7J5a4DrSxD/Gs5LOpUy0b4tk0OcgdsGeWHS3fJhlJvPyKyCLoJTqujGX7lc20CRD7DxPyWObQAbmXB74HcwuY+l0RsI/dyk8hCQTpyGlhudIM8em7LDFm9g+GN4FWeDAdfG1JduV5isGiu1ayOZPf0= th3_lab@th3d3n diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/1-for_best_school b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/1-for_best_school deleted file mode 100755 index 2026b39..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/1-for_best_school +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -# prints a string 10 times using for loop - -for ((i = 1; i <= 10; i++)); do - echo "Best School" -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/10-fizzbuzz b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/10-fizzbuzz deleted file mode 100755 index f53a7a9..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/10-fizzbuzz +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash -# Fizzbuzz - -n=1 - -while [ "$n" -le 100 ]; do - - - if ! (( n % 3 )) && ! (( n % 5 )); then - echo "FizzBuzz" - elif ! (( n % 3 )); then - echo "Fizz" - elif ! (( n % 5 )); then - echo "Buzz" - else - echo "$n" - fi - - ((n++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/100-read_and_cut b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/100-read_and_cut deleted file mode 100755 index 2492ed7..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/100-read_and_cut +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash -# read and cat - -file="/etc/passwd" - -while IFS= read -r line; do - echo "$line" | cut -d ':' -f1,3,6 -done < "$file" diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd deleted file mode 100755 index 3cc3ae1..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash -# Tell the story of passwd - -file="/etc/passwd" - -while IFS= read -r line; do - user=$(echo "$line" | cut -d ':' -f1) - gid=$(echo "$line" | cut -d ':' -f4) - dir=$(echo "$line" | cut -d ':' -f6) - shell=$(echo "$line" | cut -d ':' -f7) - uid=$(echo "$line" | cut -d ':' -f3) - pass=$(echo "$line" | cut -d ':' -f2) - info=$(echo "$line" | cut -d ':' -f5) - - echo "The user $user is part of the $gid gang, lives in $dir and rides $shell. $uid's place is protected by the passcode $pass, more info about the user here: $info" -done < "$file" diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs deleted file mode 100755 index 01b42e0..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# parse apache logs and show ip and status code - -awk '{print $1,$9}' apache-access.log diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/103-dig_the-data b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/103-dig_the-data deleted file mode 100755 index 41fe48a..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/103-dig_the-data +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Dig the data - -awk '{print $1,$9}' apache-access.log | sort | uniq -c | sort -r diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/2-while_best_school b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/2-while_best_school deleted file mode 100755 index 7aec305..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/2-while_best_school +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash -# prints a string 10 times using while loop - -i=0 - -while [ "$i" -lt 10 ]; do - echo "Best School" - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/3-until_best_school b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/3-until_best_school deleted file mode 100755 index 7931ab9..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/3-until_best_school +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -# print a string 10 times using until loop - -i=0 - -until false; do - echo "Best School" - ((i++)) - if [[ $i -lt 10 ]]; then - continue - else - break - fi -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/4-if_9_say_hi b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/4-if_9_say_hi deleted file mode 100755 index 6ac29c6..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/4-if_9_say_hi +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -# prints a string 10 times using while loop and on the ninth iteration it prints hi - -i=1 - -while [ "$i" -lt 11 ]; do - echo "Best School" - - # if statement to print Hi when i is 9 - if [ "$i" -eq 9 ]; then - echo "Hi" - fi - - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance deleted file mode 100755 index 38293b8..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash -# 4 bad luck, 8 is your chance - -i=1 - -while [ "$i" -lt 11 ]; do - - # if 4 bad luck elif 8 good luck - if [ "$i" -eq 4 ]; then - echo "bad luck" - elif [ "$i" -eq 8 ]; then - echo "good luck" - else - echo "Best School" - fi - - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/6-superstitious_numbers b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/6-superstitious_numbers deleted file mode 100755 index f669ac1..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/6-superstitious_numbers +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash -# cultures with numbers ... - -i=1 - -while [ "$i" -lt 21 ]; do - - case "$i" in - 4) - echo "$i" - echo "bad luck from China" - ;; - 9) - echo "$i" - echo "bad luck from Japan" - ;; - 17) - echo "$i" - echo "bad luck from Italy" - ;; - *) - echo "$i" - ;; - esac - - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/7-clock b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/7-clock deleted file mode 100755 index 3d812a9..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/7-clock +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# display time for 12 hours and 59 minutes - -hour=0 - -while [ "$hour" -le 12 ]; do - echo "Hour: $hour" - - minute=1 - - while [ "$minute" -lt 60 ]; do - echo "$minute" - minute=$((minute + 1)) - done - - hour=$((hour + 1)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/8-for_ls b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/8-for_ls deleted file mode 100755 index 9f158d6..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/8-for_ls +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -# ls using for loop - -for file in *; do - echo "$file" | cut -d '-' -f 2; -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file deleted file mode 100755 index 97d9412..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env bash -# alx school file checker - -file="school" - -# checks if file exists -if [ -e "$file" ]; then - - echo "school file exists" - - # checks if file is empty - if [ ! -s "$file" ]; then - echo "school file is empty" - - # checks if file is a regular file - if [ -f "$file" ]; then - echo "school is a regular file" - fi - - else - - echo "school file is not empty" - - # checks if file is a regular file - if [ -f "$file" ]; then - echo "school is a regular file" - fi - - fi - -else - - echo "school file does not exist" - -fi diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/README.md b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/README.md deleted file mode 100644 index 5cb41e3..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/README.md +++ /dev/null @@ -1,120 +0,0 @@ -# 0x04. Loops, conditions and parsing - -## Resource - -- [Loops sample](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_01.html) -- [Variable assignment and arithmetic](https://tldp.org/LDP/abs/html/ops.html) -- [Comparison operators](https://tldp.org/LDP/abs/html/comparison-ops.html) -- [File test operators](https://tldp.org/LDP/abs/html/fto.html) -- [Make your scripts portable](https://www.cyberciti.biz/tips/finding-bash-perl-python-portably-using-env.html) - -## Tasks - -

-0. Create a SSH RSA key pair
-image
- -
- -
-1. For Best School loop
-image -
- -
-2. While Best School loop
-image -
- -
-3. Until Best School loop
-image -
- -
-4. If 9, say Hi!
-image -
- -
-5. 4 bad luck, 8 is your chance
-image
- -
- -
-6. Superstitious numbers
-image -
- -
-7. Clock
-image -
- -
-8. For ls
-image -
- -
-9. To file, or not to file
-image -
- -
-10. FizzBuzz
-image -
- -
-11. Read and cut
-image -
- -
-12. Tell the story of passwd
-image - -
- -
-13. Let's parse Apache logs
-image - -
- -
-14. Dig the data
-image -
diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/apache-access.log b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/apache-access.log deleted file mode 100644 index 3a41afe..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/apache-access.log +++ /dev/null @@ -1,3459 +0,0 @@ -81.65.217.135 - - [07/Feb/2016:07:22:16 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -81.65.217.135 - - [07/Feb/2016:07:22:16 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -178.137.93.235 - - [07/Feb/2016:07:27:24 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29286 "http://jm-aj.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TheFreeDictionary.com; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)" -178.137.93.235 - - [07/Feb/2016:07:28:33 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29452 "http://alborzan.com/" "Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.2; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" -178.255.215.65 - - [07/Feb/2016:07:31:02 -0800] "GET /robots.txt HTTP/1.1" 200 386 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:07:32:07 -0800] "GET /comments/feed/ HTTP/1.1" 200 1442 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -86.246.217.7 - - [07/Feb/2016:07:36:48 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -41.214.40.213 - - [07/Feb/2016:07:38:19 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:19 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:20 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:21 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n5su4nS9Fe1sa6hof-50x50.jpg HTTP/1.1" 200 1897 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:24 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.245.148.227 - - [07/Feb/2016:07:39:00 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17.6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -82.245.148.227 - - [07/Feb/2016:07:39:00 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17.6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_n9u925ynzx1spe2e1-50x50.png HTTP/1.1" 200 7248 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:34 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1" 200 309 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -83.155.173.169 - - [07/Feb/2016:07:43:04 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:07 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/?cf_action=sync_comments&post_id=13 HTTP/1.1" 200 308 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -198.58.102.96 - - [07/Feb/2016:07:52:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.0.228.136 - - [07/Feb/2016:07:57:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:21 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:22 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:24 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:25 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:35 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/author/phil/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/author/phil/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-300x225.jpg HTTP/1.1" 200 13168 "http://techmeup.co/author/phil/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.155 - - [07/Feb/2016:08:03:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.255.215.65 - - [07/Feb/2016:08:05:29 -0800] "GET /feed/ HTTP/1.1" 200 20950 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -50.116.28.209 - - [07/Feb/2016:08:12:03 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.117 - - [07/Feb/2016:08:22:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.93.235 - - [07/Feb/2016:08:29:09 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 307 "http://hspline.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705)" -62.210.162.19 - - [07/Feb/2016:08:33:05 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (linux; u; android 4.1.1; ja-jp; sgpt12 build/tjs0166) applewebkit/534.30 (khtml, like gecko) version/4.0 safari/534.30 yjapp-android jp.co.yahoo.android.yjtop/2.1.8" -62.210.162.19 - - [07/Feb/2016:08:33:07 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (linux; u; android 4.1.1; ja-jp; sgpt12 build/tjs0166) applewebkit/534.30 (khtml, like gecko) version/4.0 safari/534.30 yjapp-android jp.co.yahoo.android.yjtop/2.1.8" -209.51.197.34 - - [07/Feb/2016:08:34:58 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "-" "Java/1.7.0_10" -173.244.168.226 - - [07/Feb/2016:08:34:58 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "-" "Java/1.7.0_10" -180.76.15.30 - - [07/Feb/2016:08:39:24 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -40.77.167.6 - - [07/Feb/2016:08:51:13 -0800] "GET /john-sheehan-ceo-et-co-fondateur-de-runscope/ HTTP/1.1" 200 10673 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [07/Feb/2016:08:51:15 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8890 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:08:51:19 -0800] "GET /10-questions-a-arnaud-ruiz-le-plus-frenchie-des/ HTTP/1.1" 200 9353 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:08:51:21 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:08:51:23 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10506 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:08:51:29 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:08:51:31 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9793 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.41 - - [07/Feb/2016:08:51:42 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8057 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.41 - - [07/Feb/2016:08:51:44 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9368 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -104.236.89.109 - - [07/Feb/2016:09:01:44 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)" -62.210.142.23 - jez [07/Feb/2016:09:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.255.215.65 - - [07/Feb/2016:09:08:10 -0800] "GET /?p=47 HTTP/1.1" 301 407 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -104.131.170.67 - - [07/Feb/2016:09:09:42 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)" -141.8.132.38 - - [07/Feb/2016:09:18:16 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [07/Feb/2016:09:21:33 -0800] "GET /2014/04/apple-touch-icon.png HTTP/1.1" 404 4924 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -213.245.234.126 - - [07/Feb/2016:09:24:39 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.245.234.126 - - [07/Feb/2016:09:24:51 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.245.234.126 - - [07/Feb/2016:09:24:52 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -54.144.69.96 - - [07/Feb/2016:09:27:43 -0800] "GET /brice-favre-la-soif-de-creer/ HTTP/1.1" 200 9290 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -84.14.175.8 - - [07/Feb/2016:09:34:29 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -86.246.217.7 - - [07/Feb/2016:09:36:50 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -90.50.41.35 - - [07/Feb/2016:09:43:23 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.50.41.35 - - [07/Feb/2016:09:43:36 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -180.76.15.27 - - [07/Feb/2016:09:46:23 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9713 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -198.58.103.92 - - [07/Feb/2016:09:52:56 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 200 2286 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:51 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:10 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:12 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:12 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:35 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:09:58:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1102 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:24 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:28 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.143.8.207 - - [07/Feb/2016:10:00:06 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:06 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1" 200 2073 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:08 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:21 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -88.191.110.221 - - [07/Feb/2016:10:01:32 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -88.191.110.221 - - [07/Feb/2016:10:01:45 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -88.191.110.221 - - [07/Feb/2016:10:01:47 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -31.38.46.44 - - [07/Feb/2016:10:06:14 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:15 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:15 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15441 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] "GET /wp-content/uploads/2015/06/unnamed-50x50.jpg HTTP/1.1" 200 2395 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -86.246.217.7 - - [07/Feb/2016:10:06:49 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -91.69.215.105 - - [07/Feb/2016:10:08:43 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15468 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:46 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:46 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -84.99.100.217 - - [07/Feb/2016:10:10:23 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15525 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:25 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:25 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:26 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:26 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:27 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:28 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -88.162.129.6 - - [07/Feb/2016:10:13:21 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15571 "https://www.google.fr/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -88.162.129.6 - - [07/Feb/2016:10:13:25 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] "GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1" 200 2745 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:26 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:27 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:28 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:05 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:24 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1684 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -93.76.54.179 - - [07/Feb/2016:10:18:59 -0800] "POST /wp-login.php HTTP/1.0" 200 3823 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36" -148.66.106.243 - - [07/Feb/2016:10:21:34 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.106.243 - - [07/Feb/2016:10:21:48 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -86.246.29.117 - - [07/Feb/2016:10:26:25 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.246.29.117 - - [07/Feb/2016:10:26:25 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:51 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:52 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:52 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -162.243.175.211 - - [07/Feb/2016:10:28:33 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:23 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:49 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:49 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:32:11 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko" -86.249.233.236 - - [07/Feb/2016:10:34:09 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:25 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:31 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:35:21 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.246.217.7 - - [07/Feb/2016:10:36:50 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e11-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:05 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:15 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:10:40:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -86.202.238.245 - - [07/Feb/2016:10:44:08 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15543 "https://www.google.fr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:07 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15518 "https://www.google.fr/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -86.202.238.245 - - [07/Feb/2016:10:44:08 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:08 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -86.202.238.245 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -86.202.238.245 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -86.202.238.245 - - [07/Feb/2016:10:44:11 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:11 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:12 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -62.210.250.66 - - [07/Feb/2016:10:44:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -78.226.100.156 - - [07/Feb/2016:10:48:46 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15536 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -199.16.156.126 - - [07/Feb/2016:10:48:46 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -199.16.156.126 - - [07/Feb/2016:10:48:47 -0800] "GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 301 310 "-" "Twitterbot/1.0" -199.16.156.126 - - [07/Feb/2016:10:48:49 -0800] "GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -195.81.235.66 - - [07/Feb/2016:10:50:08 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "https://www.google.fr" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:09 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:09 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:10 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:13 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -207.46.13.30 - - [07/Feb/2016:10:54:37 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -78.248.123.50 - - [07/Feb/2016:10:55:08 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.248.123.50 - - [07/Feb/2016:10:55:13 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:11:00:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:11 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:11 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:12 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:12 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:13 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:14 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1" 200 2106 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:18 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:21 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 777 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:22 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:22 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:31 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -198.58.102.155 - - [07/Feb/2016:11:05:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -41.79.217.139 - - [07/Feb/2016:11:05:37 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:37 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.142.23 - jez [07/Feb/2016:11:06:12 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [07/Feb/2016:11:07:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_ngwo89J1MF1r1bjfi-50x50.jpg HTTP/1.1" 200 2412 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -69.171.230.98 - - [07/Feb/2016:11:09:13 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21481 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -168.63.56.246 - - [07/Feb/2016:11:11:47 -0800] "GET /feed HTTP/1.1" 301 474 "-" "Rome Client (http://tinyurl.com/64t5n) Ver: UNKNOWN" -68.180.228.42 - - [07/Feb/2016:11:15:23 -0800] "GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1" 301 300 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -66.220.156.123 - - [07/Feb/2016:11:16:10 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9569 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -69.171.230.117 - - [07/Feb/2016:11:16:10 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16096 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -50.116.28.209 - - [07/Feb/2016:11:22:27 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.255.215.65 - - [07/Feb/2016:11:24:25 -0800] "GET /marketing-pour-developpeurs-partie-1/feed/ HTTP/1.1" 200 884 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1" 200 2773 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 664 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 15494 "-" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -50.116.30.23 - - [07/Feb/2016:11:31:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.160 - - [07/Feb/2016:11:40:42 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.0.101.203 - - [07/Feb/2016:11:43:00 -0800] "HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0" 200 342 "-" "WordPress.com; https://entreprendrememepaspeur.wordpress.com" -80.215.173.201 - - [07/Feb/2016:11:46:12 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15508 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:15 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3422 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:16 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4483 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:23 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:45 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:47:07 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -108.174.5.117 - - [07/Feb/2016:11:49:01 -0800] "HEAD /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 448 "-" "LinkedInBot/1.0 (compatible; Mozilla/5.0; Jakarta Commons-HttpClient/3.1 +http://www.linkedin.com)" -199.16.156.125 - - [07/Feb/2016:11:53:09 -0800] "GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 301 310 "-" "Twitterbot/1.0" -213.245.234.126 - - [07/Feb/2016:11:54:42 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.245.234.126 - - [07/Feb/2016:11:54:54 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.245.234.126 - - [07/Feb/2016:11:54:56 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.14.140.166 - - [07/Feb/2016:11:57:22 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:25 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:41 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -80.12.42.19 - - [07/Feb/2016:11:59:12 -0800] "GET /favicon.ico HTTP/1.1" 200 238 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -91.196.50.33 - - [07/Feb/2016:12:02:36 -0800] "GET http://testp2.czar.bielawa.pl/testproxy.php HTTP/1.1" 301 502 "-" "Mozilla/5.0 (Windows NT 5.1; rv:32.0) Gecko/20100101 Firefox/31.0" -188.138.17.205 - - [07/Feb/2016:12:03:08 -0800] "GET /sitemap.xml HTTP/1.1" 200 2928 "-" "-" -80.12.63.146 - - [07/Feb/2016:12:08:13 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4483 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -62.210.250.66 - - [07/Feb/2016:12:12:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:12:21:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -180.76.15.6 - - [07/Feb/2016:12:25:04 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -213.245.234.126 - - [07/Feb/2016:12:27:12 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.245.234.126 - - [07/Feb/2016:12:27:24 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [07/Feb/2016:12:27:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -209.133.111.211 - - [07/Feb/2016:12:32:10 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -198.58.102.155 - - [07/Feb/2016:12:37:55 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -93.76.54.179 - - [07/Feb/2016:12:44:01 -0800] "POST /wp-login.php HTTP/1.0" 200 3816 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36" -178.255.215.65 - - [07/Feb/2016:12:51:48 -0800] "GET /2014/04/ HTTP/1.1" 200 6133 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:12:52:41 -0800] "GET /2014/08/ HTTP/1.1" 200 6266 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n43vwqRZpY1r792z4-50x50.jpg HTTP/1.1" 200 2491 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:32 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:42 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15508 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:44 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:47 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:50 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:53 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -178.137.17.196 - - [07/Feb/2016:13:01:37 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29341 "http://guruofcasino.com/" "Opera/9.00 (Windows NT 5.1; U; en)" -178.137.17.196 - - [07/Feb/2016:13:01:39 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29425 "http://guruofcasino.com/" "Opera/9.00 (Windows NT 5.1; U; en)" -2.1.72.179 - - [07/Feb/2016:13:06:24 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [07/Feb/2016:13:08:37 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -199.16.156.125 - - [07/Feb/2016:13:12:26 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 381 "-" "Twitterbot/1.0" -82.237.33.174 - - [07/Feb/2016:13:13:01 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [07/Feb/2016:13:13:13 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -178.255.215.65 - - [07/Feb/2016:13:16:00 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/feed/ HTTP/1.1" 200 888 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:13:16:13 -0800] "GET /textme-cest-de-la-bombe HTTP/1.1" 301 383 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:13:16:21 -0800] "GET /textme-cest-de-la-bombe/ HTTP/1.1" 200 8612 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -54.90.112.11 - - [07/Feb/2016:13:24:50 -0800] "GET /category/europe/feed/ HTTP/1.1" 200 27874 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 200 9484 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -66.249.64.137 - - [07/Feb/2016:13:35:38 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.132 - - [07/Feb/2016:13:40:17 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.138 - - [07/Feb/2016:13:40:19 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.132 - - [07/Feb/2016:13:40:21 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.250 - - [07/Feb/2016:13:40:23 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.103.92 - - [07/Feb/2016:13:49:51 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -54.219.246.6 - - [07/Feb/2016:13:52:06 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -78.194.25.109 - - [07/Feb/2016:13:55:13 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -78.194.25.109 - - [07/Feb/2016:13:55:13 -0800] "HEAD /apple-touch-icon-precomposed.png HTTP/1.1" 404 447 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1" 200 1592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:20 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:26 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1" 404 4872 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -85.27.50.18 - - [07/Feb/2016:14:06:16 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25163 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -85.27.50.18 - - [07/Feb/2016:14:07:08 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -85.27.50.18 - - [07/Feb/2016:14:08:21 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nfgbauhtUn1r1bjfi-300x225.png HTTP/1.1" 200 80082 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -85.27.50.18 - - [07/Feb/2016:14:09:02 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -68.180.228.42 - - [07/Feb/2016:14:13:36 -0800] "GET /2014/08/ HTTP/1.1" 200 6247 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:36 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:37 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:41 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -66.249.64.132 - - [07/Feb/2016:14:37:26 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1" 200 12281 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:09 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:14 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 200 2286 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:58 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -107.21.155.8 - - [07/Feb/2016:14:58:57 -0800] "GET /category/how-to/feed/ HTTP/1.1" 200 25451 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -89.156.5.207 - - [07/Feb/2016:15:01:12 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -198.58.102.156 - - [07/Feb/2016:15:01:52 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -84.14.175.8 - - [07/Feb/2016:15:05:05 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 304 189 "-" "Mozilla/4.0 (compatible;)" -92.222.20.166 - - [07/Feb/2016:15:13:33 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -78.247.224.206 - - [07/Feb/2016:15:17:29 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1" 200 2115 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:34 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/?cf_action=sync_comments&post_id=14 HTTP/1.1" 200 308 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -180.76.15.18 - - [07/Feb/2016:15:19:15 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -78.192.99.105 - - [07/Feb/2016:15:19:42 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; ASU2JS)" -141.8.132.38 - - [07/Feb/2016:15:21:13 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -207.46.13.30 - - [07/Feb/2016:15:22:52 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:15:22:54 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9788 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:15:22:59 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8042 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:15:23:01 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9421 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [07/Feb/2016:15:23:06 -0800] "GET /blake-haggerty-evangeliste-startups-developpeurs/ HTTP/1.1" 200 9912 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -89.156.5.207 - - [07/Feb/2016:15:23:11 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -89.156.5.207 - - [07/Feb/2016:15:23:11 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -157.55.39.27 - - [07/Feb/2016:15:23:12 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9043 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:15:23:14 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 9408 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:15:23:16 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10474 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -103.243.26.232 - - [07/Feb/2016:15:33:50 -0800] "GET / HTTP/1.1" 200 7218 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:33:53 -0800] "GET /admin/images/admin_submit.jpg HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:33:56 -0800] "GET /js/close.gif HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:33:58 -0800] "GET /admin/_Style/_notes/dwsync.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:01 -0800] "GET /inc/_notes/dwsync.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:03 -0800] "GET /administrator/includes/page_default.txt HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:06 -0800] "GET /install/data/themes/handshakes_neo/gfx/boxes/blueTop/top.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:08 -0800] "GET /data/sessions/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:11 -0800] "GET /include/alert.htm HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:13 -0800] "GET /setup/license.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:15 -0800] "GET /plus/img/wbg.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:17 -0800] "GET /member/images/base.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:20 -0800] "GET /dede/templets/article_coonepage_rule.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:22 -0800] "GET /templets/default/style/dedecms.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:24 -0800] "GET /templets/default/style/dedecms.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:26 -0800] "GET /favicon.ico HTTP/1.1" 200 183 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:28 -0800] "GET /favicon.ico HTTP/1.1" 200 183 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:30 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:33 -0800] "GET /u2upopup.js HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:36 -0800] "GET /include/javascript/ajax.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:38 -0800] "GET /static/js/admincp.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:41 -0800] "GET /themes/README.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:43 -0800] "GET /themes/garland/images/menu-expanded.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:46 -0800] "GET /.htaccess HTTP/1.1" 403 443 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:49 -0800] "GET /example.gitignore HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:51 -0800] "GET /profiles/README.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:54 -0800] "GET /.editorconfig HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:57 -0800] "GET /INSTALL.pgsql.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:59 -0800] "GET /UPGRADE.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:02 -0800] "GET /modules/user/user.info HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:04 -0800] "GET /Admin/images/admin.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:07 -0800] "GET /boke/Script/Dv_form.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:09 -0800] "GET /Css/cndw/pub_cndw.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:12 -0800] "GET /Css/yellow/style.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:14 -0800] "GET /Dv_plus/IndivGroup/js/Dv_form.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:17 -0800] "GET /images/manage/admin.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:20 -0800] "GET /Plus_popwan/CacheFile/sn.config HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:22 -0800] "GET /Resource/Template_1/boardhelp_html4.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:24 -0800] "GET /admin/help/zh_cn/database.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:26 -0800] "GET /admin/js/validator.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:29 -0800] "GET /data/flashdata/default/cycle_image.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:32 -0800] "GET /themes/default/library/member.lbi HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:34 -0800] "GET /install/data/demo/zh_cn.sql HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:37 -0800] "GET /mobile/templates/article.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:40 -0800] "GET /wap/templates/article.wml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:42 -0800] "GET /content/cache/options HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:45 -0800] "GET /admin/views/style/green/style.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:48 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:50 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:53 -0800] "GET /d/js/class/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:56 -0800] "GET /d/txt/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:58 -0800] "GET /e/admin/user/data/certpage.txt HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:01 -0800] "GET /e/data/template/gbooktemp.txt HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:03 -0800] "GET /e/tasks/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:06 -0800] "GET /install/data/empiredown.com.sql HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:09 -0800] "GET /adminsoft/templates/images/login_line.png HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:11 -0800] "GET / HTTP/1.1" 200 7218 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:14 -0800] "GET /adminsoft/js/control.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:15 -0800] "GET /install/lan_inc.php HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:18 -0800] "GET /templates/wap/cn/public/footer.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:20 -0800] "GET /Tags.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:23 -0800] "GET /Admin/News/lib/vssver2.scc HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:26 -0800] "GET /FS_Inc/vssver2.scc HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:28 -0800] "GET /Templets/about/index.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:31 -0800] "GET /Users/Mall/OrderPrint.Asp HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:33 -0800] "GET /js/api.js HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:36 -0800] "GET /js/jqeditor/hdwiki.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:38 -0800] "GET /plugins/mwimport/view/admin_mwimport.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:41 -0800] "GET /style/default/desc.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:44 -0800] "GET /libraries/joomla/filesystem/meta/language/en-GB/en-GB.lib_joomla_filesystem_patcher.ini HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:47 -0800] "GET /joomla.xml HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:49 -0800] "GET /web.config.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:52 -0800] "GET /installation/language/en-GB/en-GB.ini HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:55 -0800] "GET /language/en-GB/en-GB.com_contact.ini HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:57 -0800] "GET /media/editors/tinymce/templates/template_list.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:00 -0800] "GET /page/system/inc/fun.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:02 -0800] "GET /Admin/Include/version.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:05 -0800] "GET /czfy/template/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:08 -0800] "GET /Space/js/ks.space.page.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:10 -0800] "GET /install.sql HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:13 -0800] "GET /ad.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:15 -0800] "GET /create.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:18 -0800] "GET /main.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:20 -0800] "GET /webftp.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:23 -0800] "GET /admin/webftp/index.asp HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:25 -0800] "GET /collect/index.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:28 -0800] "GET /download/index.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:30 -0800] "GET /inc/config.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:33 -0800] "GET /movie/index.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:35 -0800] "GET /page/Tools/fun.asp HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:38 -0800] "GET /system/js/jquery.kc.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:40 -0800] "GET /user/ HTTP/1.1" 404 4816 "http://techmeup.co/user/index.php" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:43 -0800] "GET /Admin/MasterPage/Default.Master HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:45 -0800] "GET /en/Module/AboutDetail.ascx HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:49 -0800] "GET /Module/AboutDetail.ascx HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:52 -0800] "GET /Ch/Memberphoto.Asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:54 -0800] "GET /ewebeditor/KindEditor.js HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:56 -0800] "GET /install/ HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:59 -0800] "GET /help/main.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:01 -0800] "GET /skin/admin/style.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:03 -0800] "GET /images/admin/login/logo.png HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:06 -0800] "GET /AUTHORS HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:08 -0800] "GET /wind/http/mime/mime HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:11 -0800] "GET /api/agent.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:13 -0800] "GET /apps/weibo/template/m_weibo_bottom.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:16 -0800] "GET /html/js/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:18 -0800] "GET /mode/area/js/adminview.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:21 -0800] "GET /src/extensions/demo/Manifest.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:23 -0800] "GET /themes/forum/default/css/dev/forum.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:26 -0800] "GET /rss.xsl HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:28 -0800] "GET /Web.config HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:31 -0800] "GET /Temp/ajaxnote.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:34 -0800] "GET /API/Request.xml HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:36 -0800] "GET /Admin/Common/HelpLinks.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:39 -0800] "GET /Editor/Lable/PE_Annouce.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:41 -0800] "GET /Language/Gb2312.xml HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:44 -0800] "GET /Template/Default/Skin/default.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:47 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:50 -0800] "GET /LiveServer/Configuration/UrlRewrite.config HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:52 -0800] "GET /SiteFiles/bairong/TextEditor/eWebEditor/language/zh-cn.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:55 -0800] "GET /SiteServer/Installer/EULA.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:57 -0800] "GET /SiteServer/Themes/Language/en.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:00 -0800] "GET /DatePicker/skin/datePicker.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:02 -0800] "GET /images/QQ/qqon5.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:05 -0800] "GET /Inc/NoSqlHack.Asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:07 -0800] "GET /Css/Style.css HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -75.126.174.67 - - [07/Feb/2016:15:40:34 -0800] "POST /xmlrpc.php HTTP/1.0" 200 407 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:40 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:15 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:21 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:28 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:34 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:42 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:48 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:59 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:06 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:12 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:25 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:31 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:38 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:44 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:50 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:00 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:10 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -95.211.238.110 - - [07/Feb/2016:15:47:02 -0800] "\x15\x03\x03" 200 33076 "-" "-" -198.58.102.155 - - [07/Feb/2016:15:53:33 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [07/Feb/2016:16:06:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -31.13.110.116 - - [07/Feb/2016:16:11:26 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21481 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -75.57.9.117 - - [07/Feb/2016:16:11:55 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -75.57.9.117 - - [07/Feb/2016:16:12:07 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -198.58.103.102 - - [07/Feb/2016:16:12:11 -0800] "GET / HTTP/1.1" 200 7274 "-" "Superfeedr bot/2.0 http://superfeedr.com - Checking HTML reverse link." -207.46.13.30 - - [07/Feb/2016:16:16:35 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -37.162.199.102 - - [07/Feb/2016:16:19:19 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1" 200 1592 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:21 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:30 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -175.111.117.3 - - [07/Feb/2016:16:19:46 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "-" "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:50 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:50 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -175.111.117.3 - - [07/Feb/2016:16:19:52 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "-" "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7" -95.211.238.110 - - [07/Feb/2016:16:21:32 -0800] "\x15\x03\x03" 200 33076 "-" "-" -192.0.99.238 - - [07/Feb/2016:16:22:39 -0800] "HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0" 200 342 "-" "WordPress.com; https://entreprendrememepaspeur.wordpress.com" -95.211.238.110 - - [07/Feb/2016:16:27:35 -0800] "\x15\x03\x03" 200 33076 "-" "-" -37.9.118.28 - - [07/Feb/2016:16:33:12 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -2.1.72.179 - - [07/Feb/2016:16:36:58 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -41.66.51.253 - - [07/Feb/2016:16:40:36 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -41.66.51.253 - - [07/Feb/2016:16:40:36 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -64.246.165.140 - - [07/Feb/2016:16:42:03 -0800] "GET / HTTP/1.1" 200 7237 "http://whois.domaintools.com/techmeup.co" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.0.13) Gecko/2009073022 Firefox/3.5.2 (.NET CLR 3.5.30729) SurveyBot/2.3 (DomainTools)" -66.249.64.132 - - [07/Feb/2016:16:44:27 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?utm_content=buffer01771&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer HTTP/1.1" 200 10144 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -199.16.156.124 - - [07/Feb/2016:16:45:22 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1" 200 12222 "-" "Twitterbot/1.0" -194.187.168.216 - - [07/Feb/2016:16:56:52 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.0" 200 9972 "-" "Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*" -145.249.150.209 - - [07/Feb/2016:17:04:33 -0800] "GET /category/how-to/' HTTP/1.1" 404 4835 "http://pesochnaya-ceremoniya.ru/category/how-to/'" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -145.249.150.209 - - [07/Feb/2016:17:04:35 -0800] "GET /' HTTP/1.1" 404 4835 "http://pesochnaya-ceremoniya.ru/'" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -2.1.72.179 - - [07/Feb/2016:17:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [07/Feb/2016:17:12:06 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -148.251.234.184 - - [07/Feb/2016:17:15:09 -0800] "GET /tagged/Tech HTTP/1.0" 301 466 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -136.243.16.102 - - [07/Feb/2016:17:15:10 -0800] "GET /tagged/San-Francisco HTTP/1.1" 404 15438 "nt" "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Thunderbird/1.0.6 - WebCrawler http://cognitiveseo.com/bot.html" -136.243.16.102 - - [07/Feb/2016:17:15:11 -0800] "GET /archive HTTP/1.0" 404 15416 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -136.243.16.102 - - [07/Feb/2016:17:15:12 -0800] "GET /archive HTTP/1.1" 404 15438 "nt" "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Thunderbird/1.0.6 - WebCrawler http://cognitiveseo.com/bot.html" -188.40.97.23 - - [07/Feb/2016:17:15:28 -0800] "GET /tagged/Tech HTTP/1.0" 301 466 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -148.251.151.4 - - [07/Feb/2016:17:15:43 -0800] "GET /feed/ HTTP/1.0" 200 63874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -192.0.99.119 - - [07/Feb/2016:17:17:21 -0800] "HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0" 200 342 "-" "WordPress.com; https://entreprendrememepaspeur.wordpress.com" -24.193.63.69 - - [07/Feb/2016:17:29:01 -0800] "GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.1" 200 11601 "https://www.google.com/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:04 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -199.16.156.124 - - [07/Feb/2016:17:30:02 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_ne4zzxKVb01sa6hof-50x50.png HTTP/1.1" 200 4330 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:29 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -207.241.229.149 - - [07/Feb/2016:17:38:33 -0800] "GET /apple-touch-icon.png HTTP/1.0" 404 15416 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -144.76.100.237 - - [07/Feb/2016:17:40:39 -0800] "GET /john-sheehan-ceo-et-co-fondateur-de-runscope/ HTTP/1.0" 200 32030 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -180.76.15.145 - - [07/Feb/2016:17:56:01 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -92.222.20.166 - - [07/Feb/2016:18:11:36 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -91.224.140.223 - - [07/Feb/2016:18:18:09 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -162.243.175.105 - - [07/Feb/2016:18:22:10 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -162.144.66.10 - - [07/Feb/2016:18:47:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 407 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:11 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:30 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:37 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:44 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:05 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:14 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:22 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:29 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:36 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:44 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:05 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:13 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:20 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:34 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:41 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:54 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:50:01 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:50:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -50.116.28.209 - - [07/Feb/2016:18:56:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -67.169.93.143 - - [07/Feb/2016:19:00:42 -0800] "HEAD /apple-touch-icon-precomposed.png HTTP/1.1" 404 447 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -2.1.72.179 - - [07/Feb/2016:19:06:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -148.66.108.167 - - [07/Feb/2016:19:07:27 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.108.167 - - [07/Feb/2016:19:07:40 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -91.224.140.223 - - [07/Feb/2016:19:14:03 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -198.58.96.215 - - [07/Feb/2016:19:28:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.49 - - [07/Feb/2016:19:36:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.138 - - [07/Feb/2016:19:39:21 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8616 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -209.133.111.211 - - [07/Feb/2016:19:46:26 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" -66.249.64.250 - - [07/Feb/2016:19:55:09 -0800] "GET /sitemap-misc.xml HTTP/1.1" 200 836 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -68.180.228.42 - - [07/Feb/2016:20:01:21 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1" 200 10165 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -92.222.20.166 - - [07/Feb/2016:20:06:17 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -178.137.17.196 - - [07/Feb/2016:20:08:26 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29402 "http://izhevsk.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; APC; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.1)" -91.217.1.98 - - [07/Feb/2016:20:15:13 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead.jpg HTTP/1.1" 200 378804 "https://www.google.pl/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -96.41.45.70 - - [07/Feb/2016:20:18:04 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -96.41.45.70 - - [07/Feb/2016:20:18:08 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -96.41.45.70 - - [07/Feb/2016:20:18:21 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.14.124.182 - - [07/Feb/2016:20:20:28 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10110 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:31 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -50.116.28.209 - - [07/Feb/2016:20:32:25 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -160.33.66.122 - - [07/Feb/2016:20:40:53 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 304 189 "-" "Mozilla/4.0 (compatible;)" -178.137.17.196 - - [07/Feb/2016:20:47:39 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29436 "http://flprog.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" -198.58.103.28 - - [07/Feb/2016:20:56:18 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -68.180.228.42 - - [07/Feb/2016:21:06:47 -0800] "GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1" 301 287 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -198.58.102.155 - - [07/Feb/2016:21:12:24 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.160 - - [07/Feb/2016:21:28:19 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -148.66.108.167 - - [07/Feb/2016:21:29:05 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.108.167 - - [07/Feb/2016:21:29:26 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.72.179 - - [07/Feb/2016:21:36:13 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.102.155 - - [07/Feb/2016:21:44:38 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -83.219.216.33 - - [07/Feb/2016:21:52:20 -0800] "POST /xmlrpc.php HTTP/1.0" 200 407 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:35 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:45 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -207.46.13.30 - - [07/Feb/2016:21:53:17 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -83.219.216.33 - - [07/Feb/2016:21:53:26 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:36 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:57 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:08 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:35 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:17 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:28 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:37 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:01 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -54.172.78.212 - - [07/Feb/2016:21:58:55 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10125 "-" "Kerrigan/2.0 (kerrigan@mashable.com)" -207.46.13.147 - - [07/Feb/2016:22:00:58 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10130 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -54.177.7.2 - - [07/Feb/2016:22:12:17 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -91.228.196.139 - - [07/Feb/2016:22:24:01 -0800] "GET /wp-login.php?action=register HTTP/1.1" 302 537 "-" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/400.27 (KHTML, like Gecko) Chrome/1604.0.1604.134 Safari/400.27" -198.58.102.155 - - [07/Feb/2016:22:26:44 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.49 - - [07/Feb/2016:22:34:54 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -167.114.156.198 - - [07/Feb/2016:22:37:50 -0800] "GET /xmlrpc.php HTTP/1.1" 200 235 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:37:57 -0800] "GET /xmlrpc.php?rsd HTTP/1.1" 200 915 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:03 -0800] "GET /category/europe/ HTTP/1.1" 200 32299 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:10 -0800] "GET /category/portraits/ HTTP/1.1" 200 33167 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:16 -0800] "GET /author/herve/ HTTP/1.1" 200 31847 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:24 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 30795 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:30 -0800] "GET /les-francais-genies-de-la-silicon-valley/ HTTP/1.1" 200 25352 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:35 -0800] "GET /adieu-tumblr/ HTTP/1.1" 200 23111 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:42 -0800] "GET /author/laetitia/ HTTP/1.1" 200 32420 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:49 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 28357 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:57 -0800] "GET /author/sylvain/ HTTP/1.1" 200 23320 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:04 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 28209 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:11 -0800] "GET /category/how-to/feed/ HTTP/1.1" 200 77382 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:18 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1" 200 35190 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:26 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 28410 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:33 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 29237 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:40 -0800] "GET /de-la-nasa-a-checkr-comment-daniel-yanisse/ HTTP/1.1" 200 28382 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:47 -0800] "GET /le-jour-ou-les-startups-tech-nauront-plus-de/ HTTP/1.1" 200 26996 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:55 -0800] "GET /guillaume-decugis-le-monde-de-la-tech-sous-tous/ HTTP/1.1" 200 30206 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:00 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 336 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:04 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 301 273 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:10 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 29621 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:16 -0800] "GET /michael-ferranti-responsable-marketing-a-mailgun/ HTTP/1.1" 200 31810 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:23 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/feed/ HTTP/1.1" 200 1242 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:29 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja HTTP/1.1" 301 260 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:33 -0800] "GET /author/julienbarbier/feed/ HTTP/1.1" 200 86021 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:41 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/feed/ HTTP/1.1" 200 1384 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:48 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/feed/ HTTP/1.1" 200 1369 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:55 -0800] "GET /guillaume-charmes-meilleur-developpeur-du-monde/ HTTP/1.1" 200 25759 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:00 -0800] "GET /du-side-project-a-google-le-fabuleux-parcours/ HTTP/1.1" 200 33378 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -66.249.64.138 - - [07/Feb/2016:22:41:04 -0800] "GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1" 301 433 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -167.114.156.198 - - [07/Feb/2016:22:41:07 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au/feed/ HTTP/1.1" 200 1245 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:13 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/feed/ HTTP/1.1" 200 1237 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:20 -0800] "GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1" 301 255 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:23 -0800] "GET /marketing-pour-developpeurs-partie-2 HTTP/1.1" 301 332 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:26 -0800] "GET /marketing-pour-developpeurs-partie-3-le-site/ HTTP/1.1" 200 33728 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:30 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 265 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:33 -0800] "GET /florent-crivello-ingenieur-ios-a-kwarter HTTP/1.1" 301 336 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:38 -0800] "GET /marketing-pour-developpeurs-partie-1/feed/ HTTP/1.1" 200 1187 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:44 -0800] "GET /textme-cest-de-la-bombe/feed/ HTTP/1.1" 200 1151 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:50 -0800] "GET /nicolas-hazard-en-tete-de-file-de/feed/ HTTP/1.1" 200 1206 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:58 -0800] "GET /post/89732798888/john-sheehan-ceo-et-co-fondateur-de-runscope HTTP/1.1" 301 263 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:02 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/feed/ HTTP/1.1" 200 1211 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:08 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 27994 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:15 -0800] "GET /brice-favre-la-soif-de-creer/ HTTP/1.1" 200 28641 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:22 -0800] "GET /john-sheehan-ceo-et-co-fondateur-de-runscope/feed/ HTTP/1.1" 200 1207 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:28 -0800] "GET /blake-haggerty-evangeliste-startups-developpeurs/feed/ HTTP/1.1" 200 1234 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:34 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/feed/ HTTP/1.1" 200 1220 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:40 -0800] "GET /michael-ortali-ingenieur-informaticien-a/feed/ HTTP/1.1" 200 1207 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:47 -0800] "GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/feed/ HTTP/1.1" 200 1240 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -198.58.102.158 - - [07/Feb/2016:22:43:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -207.46.13.30 - - [07/Feb/2016:22:50:20 -0800] "GET /tagged/pinterest HTTP/1.1" 301 523 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:22:50:57 -0800] "GET /post/104056058258 HTTP/1.1" 301 524 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.102.95 - - [07/Feb/2016:22:58:57 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.142.23 - jez [07/Feb/2016:23:06:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.138 - - [07/Feb/2016:23:08:35 -0800] "GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1" 200 8763 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.158 - - [07/Feb/2016:23:15:42 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.93.235 - - [07/Feb/2016:23:18:01 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29379 "http://piter.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -180.76.15.137 - - [07/Feb/2016:23:19:28 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -207.46.13.30 - - [07/Feb/2016:23:25:38 -0800] "GET /category/portraits/page/2/ HTTP/1.1" 200 7583 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:23:25:41 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9700 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:23:25:46 -0800] "GET /les-francais-genies-de-la-silicon-valley/ HTTP/1.1" 200 8248 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:23:25:48 -0800] "GET /nicolas-hazard-en-tete-de-file-de/ HTTP/1.1" 200 9492 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:23:26:05 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9112 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:23:26:08 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 9439 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:23:26:10 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10488 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.103.115 - - [07/Feb/2016:23:39:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 7090 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 373 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 1186 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1" 200 18764 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32895 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:18 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:18 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -141.8.184.15 - - [07/Feb/2016:23:48:42 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -130.193.51.3 - - [07/Feb/2016:23:48:48 -0800] "GET /category/canada/ HTTP/1.1" 200 5229 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [07/Feb/2016:23:48:53 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [07/Feb/2016:23:48:59 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 6861 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [07/Feb/2016:23:49:04 -0800] "GET /category/how-to/ HTTP/1.1" 200 6081 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [07/Feb/2016:23:49:09 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1" 200 2351 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -141.8.132.38 - - [07/Feb/2016:23:49:14 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -199.16.156.126 - - [07/Feb/2016:23:49:15 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -5.255.253.78 - - [07/Feb/2016:23:49:17 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 6861 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -62.210.250.66 - - [07/Feb/2016:23:51:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -193.49.247.169 - - [07/Feb/2016:23:57:31 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -193.49.247.169 - - [07/Feb/2016:23:57:31 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -198.58.102.158 - - [08/Feb/2016:00:03:50 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -2.1.72.179 - - [08/Feb/2016:00:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -91.103.43.50 - - [08/Feb/2016:00:17:05 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 212 "-" "Mozilla/4.0 (compatible;)" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:08 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:08 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -80.13.10.184 - - [08/Feb/2016:00:26:40 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15483 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:00:26:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.13.10.184 - - [08/Feb/2016:00:26:54 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.103.102 - - [08/Feb/2016:00:36:08 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.49 - - [08/Feb/2016:00:44:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.194.84.106 - - [08/Feb/2016:00:49:31 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -199.119.124.44 - - [08/Feb/2016:00:49:42 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=cab69af8d42b04c85d91e979)" -122.169.127.89 - - [08/Feb/2016:00:50:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -88.187.8.139 - - [08/Feb/2016:00:51:18 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9317 "https://www.google.fr" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1" 200 2773 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:20 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:21 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:29 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9912 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -122.169.127.89 - - [08/Feb/2016:00:51:42 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:00 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:14 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:41 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:57 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:23 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:38 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:52 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:17 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:30 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:01 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:17 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:32 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:56:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:56:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:56:29 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -66.249.64.132 - - [08/Feb/2016:00:56:44 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1" 200 10049 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -122.169.127.89 - - [08/Feb/2016:00:56:54 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:57:11 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:57:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -62.210.142.23 - jez [08/Feb/2016:01:06:19 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [08/Feb/2016:01:10:14 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -91.103.43.50 - - [08/Feb/2016:01:16:29 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -148.66.108.167 - - [08/Feb/2016:01:24:01 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.108.167 - - [08/Feb/2016:01:24:14 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -146.185.234.48 - - [08/Feb/2016:01:26:53 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1" 200 31264 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:00 -0800] "GET /category/how-to/ HTTP/1.1" 200 25303 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:06 -0800] "GET /category/canada/ HTTP/1.1" 200 16838 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:20 -0800] "GET /2015/01/ HTTP/1.1" 200 19821 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:29 -0800] "GET /2014/09/ HTTP/1.1" 200 21675 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:49 -0800] "GET /2014/05/ HTTP/1.1" 200 23145 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -144.76.80.55 - - [08/Feb/2016:01:31:15 -0800] "HEAD /site.zip HTTP/1.1" 404 348 "-" "Go-http-client/1.1" -50.116.30.23 - - [08/Feb/2016:01:33:31 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.82.148.10 - - [08/Feb/2016:01:40:59 -0800] "GET /feed/ HTTP/1.1" 200 63896 "-" "Scoop" -195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1" 200 2073 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:00 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803659 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2457 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:03 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 9688 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9099 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1" 200 2115 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z.jpg HTTP/1.1" 200 44181 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1" 200 768386 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-50x50.jpg HTTP/1.1" 200 1825 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -198.58.103.92 - - [08/Feb/2016:01:41:37 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:38 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:01:48:32 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15476 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:01:48:46 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:01:49:06 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:10 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:10 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:11 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:12 -0800] "GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1" 200 2745 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1" 200 2074 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:49 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -193.164.197.233 - - [08/Feb/2016:01:56:16 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.180.206.196 - - [08/Feb/2016:01:56:22 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01g.yandex.ru)" -193.164.197.233 - - [08/Feb/2016:01:56:30 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:43 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:43 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:46 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:02:06:31 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -70.211.135.194 - - [08/Feb/2016:02:08:20 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1" 200 20280 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:22 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:22 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -77.34.218.205 - - [08/Feb/2016:02:14:34 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Linux; Android 4.1.2; GT-I8552 Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.00 Yowser/2.5.3 Mobile Safari/537.36" -42.156.136.53 - - [08/Feb/2016:02:24:08 -0800] "GET / HTTP/1.1" 200 7274 "-" "YisouSpider" -206.214.15.241 - - [08/Feb/2016:02:33:02 -0800] "GET /wp-login.php HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0" -2.1.72.179 - - [08/Feb/2016:02:36:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.138 - - [08/Feb/2016:02:49:14 -0800] "GET /2015/01/ HTTP/1.1" 200 5314 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -89.251.61.141 - - [08/Feb/2016:02:52:17 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.58.99.82 - - [08/Feb/2016:02:54:04 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:14 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:14 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:15 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n5su4nS9Fe1sa6hof-50x50.jpg HTTP/1.1" 200 1897 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:22 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -193.48.4.6 - - [08/Feb/2016:02:55:52 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.246.217.7 - - [08/Feb/2016:02:56:17 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 36582 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 14285 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 7529 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 788 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-50x50.jpg HTTP/1.1" 200 2376 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:41 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:03:01:14 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15528 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:03:01:27 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:03:01:45 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -207.46.13.30 - - [08/Feb/2016:03:05:23 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -202.39.169.163 - - [08/Feb/2016:03:06:02 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -202.39.169.163 - - [08/Feb/2016:03:06:16 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 446 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -62.210.142.23 - jez [08/Feb/2016:03:06:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -162.243.175.194 - - [08/Feb/2016:03:11:42 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -180.76.15.144 - - [08/Feb/2016:03:19:23 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -46.118.116.135 - - [08/Feb/2016:03:20:11 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29314 "http://owohho.com/" "Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0 ; .NET CLR 2.0.50215; SL Commerce Client v1.0; Tablet PC 2.0" -192.99.150.96 - - [08/Feb/2016:03:34:40 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -198.58.102.95 - - [08/Feb/2016:03:42:45 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -188.165.224.104 - - [08/Feb/2016:03:47:44 -0800] "GET /?author=2 HTTP/1.0" 200 31297 "-" "-" -198.58.103.115 - - [08/Feb/2016:03:50:46 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -54.158.4.90 - - [08/Feb/2016:04:03:14 -0800] "GET /category/how-to/feed/ HTTP/1.1" 200 25451 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:17 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.158 - - [08/Feb/2016:04:06:56 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.151.86.197 - - [08/Feb/2016:04:14:02 -0800] "GET /florent-crivello-ingenieur-ios-a-kwarter/ HTTP/1.1" 200 8644 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:04 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb0xb4FLj01sygmpd-50x50.jpg HTTP/1.1" 200 2535 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:08 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -79.143.142.234 - - [08/Feb/2016:04:24:34 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -79.143.142.234 - - [08/Feb/2016:04:24:35 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.16.156.126 - - [08/Feb/2016:04:27:21 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9305 "https://www.google.fr" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:34 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:34 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -2.1.72.179 - - [08/Feb/2016:04:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:37 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2457 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:37 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:38:03 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -68.180.228.42 - - [08/Feb/2016:04:42:56 -0800] "GET /marketing-pour-developpeurs-partie-2 HTTP/1.1" 301 377 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -77.34.17.95 - - [08/Feb/2016:04:56:07 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.1.6475 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:04:56:33 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:04:56:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -176.189.254.114 - - [08/Feb/2016:04:59:43 -0800] "GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/ HTTP/1.1" 200 8898 "https://www.google.fr" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:46 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:46 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:47 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -203.162.15.233 - - [08/Feb/2016:05:03:20 -0800] "POST /cgi-bin/php-cgi?%2D%64+%61%6C%6C%6F%77%5F%75%72%6C%5F%69%6E%63%6C%75%64%65%3D%6F%6E+%2D%64+%73%61%66%65%5F%6D%6F%64%65%3D%6F%66%66+%2D%64+%73%75%68%6F%73%69%6E%2E%73%69%6D%75%6C%61%74%69%6F%6E%3D%6F%6E+%2D%64+%64%69%73%61%62%6C%65%5F%66%75%6E%63%74%69%6F%6E%73%3D%22%22+%2D%64+%6F%70%65%6E%5F%62%61%73%65%64%69%72%3D%6E%6F%6E%65+%2D%64+%61%75%74%6F%5F%70%72%65%70%65%6E%64%5F%66%69%6C%65%3D%70%68%70%3A%2F%2F%69%6E%70%75%74+%2D%64+%63%67%69%2E%66%6F%72%63%65%5F%72%65%64%69%72%65%63%74%3D%30+%2D%64+%63%67%69%2E%72%65%64%69%72%65%63%74%5F%73%74%61%74%75%73%5F%65%6E%76%3D%30+%2D%6E HTTP/1.1" 404 15457 "-" "Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26(KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25" -109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 304 211 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 304 211 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 187 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:13 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 212 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:13 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 304 188 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:15 -0800] "GET /welcome-phil-jeudy/ HTTP/1.1" 200 7850 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:17 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1" 200 2463 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:19 -0800] "GET /welcome-phil-jeudy/ HTTP/1.1" 200 7902 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -62.210.142.23 - jez [08/Feb/2016:05:06:19 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.96.215 - - [08/Feb/2016:05:14:59 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -193.201.227.130 - - [08/Feb/2016:05:19:28 -0800] "GET /wp-admin/admin-ajax.php?action=revolution-slider_show_image&img=../wp-config.php HTTP/1.1" 200 448 "http://techmeup.co/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:30 -0800] "GET /wp-content/themes/echelon/lib/scripts/dl-skin.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/awake/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:33 -0800] "GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/elegance/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:36 -0800] "GET /wp-content/plugins/wp-filemanager/incl/libfile.php?&path=../../&filename=wp-config.php&action=download HTTP/1.1" 301 552 "http://techmeup.co/wp-content/themes/method/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:38 -0800] "GET /wp-content/themes/myriad/lib/scripts/dl-skin.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/modular/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:45 -0800] "GET /wp-content/themes/lote27/download.php?download=../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/parallelus-mingle/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:49 -0800] "GET /wp-content/themes/parallelus-salutation/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/fusion/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:52 -0800] "GET /wp-content/plugins/pica-photo-gallery/picadownload.php?imgname=../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-admin/admin-ajax.php?action=kbslider_show_image&img=../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:58 -0800] "GET /wp-content/themes/infocus2/lib/scripts/dl-skin.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:20:00 -0800] "GET /wp-content/themes/urbancity/lib/scripts/download.php?file=../../../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/epic/includes/download.php?file=../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:20:01 -0800] "GET /wp-content/plugins/simple-download-button-shortcode/simple-download-button_dl.php?file=../../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/plugins/plugin-newsletter/preview.php?data=../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -162.243.175.75 - - [08/Feb/2016:05:23:06 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:35 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -40.77.167.6 - - [08/Feb/2016:05:25:44 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1" 200 10008 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [08/Feb/2016:05:25:46 -0800] "GET /blake-haggerty-evangeliste-startups-developpeurs/ HTTP/1.1" 200 9957 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [08/Feb/2016:05:25:50 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8122 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [08/Feb/2016:05:25:53 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9306 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:05:25:57 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:05:26:00 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9752 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:05:26:06 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15506 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:05:26:09 -0800] "GET /marketing-pour-developpeurs-partie-2/ HTTP/1.1" 200 9429 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:05:26:11 -0800] "GET /category/portraits/page/4/ HTTP/1.1" 200 7296 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -5.39.17.245 - - [08/Feb/2016:05:27:45 -0800] "GET /rss HTTP/1.1" 301 418 "http://techmeup.co/rss" "SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914" -193.164.197.233 - - [08/Feb/2016:05:32:24 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [08/Feb/2016:05:32:35 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -37.9.118.28 - - [08/Feb/2016:05:36:10 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -83.193.62.96 - - [08/Feb/2016:05:36:56 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:37:08 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:38:22 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:38:34 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -51.255.65.60 - - [08/Feb/2016:05:39:30 -0800] "GET / HTTP/1.1" 200 7218 "-" "Mozilla/5.0 (compatible; AhrefsBot/5.0; +http://ahrefs.com/robot/)" -83.193.62.96 - - [08/Feb/2016:05:40:06 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:40:18 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:40:43 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:40:55 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -54.161.123.107 - - [08/Feb/2016:05:48:41 -0800] "GET /category/europe/feed/ HTTP/1.1" 200 27874 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -80.11.221.97 - - [08/Feb/2016:05:54:28 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1" 200 768387 "http://www.bing.com/images/search?q=suivez+nous+sur+facebook&view=detailv2&&id=CBBE7E8391E68472CA1923D98F6EFCE7709F8EF6&selectedIndex=0&ccid=k3%2bT1B3b&simid=607990219777050871&thid=OIP.M937f93d41ddbfa9fb7c4b9eafcbe1ce8o0" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb1bncXtIP1r792z4-50x50.jpg HTTP/1.1" 200 2531 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:02 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:08 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Dalvik/2.1.0 (Linux; U; Android 6.0.1; A0001 Build/MMB29T)" -199.16.156.124 - - [08/Feb/2016:05:58:07 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -80.13.10.184 - - [08/Feb/2016:06:03:20 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15507 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:06:03:33 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15543 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.13.10.184 - - [08/Feb/2016:06:03:39 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.72.179 - - [08/Feb/2016:06:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -202.39.169.163 - - [08/Feb/2016:06:11:35 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1" 200 11364 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -202.39.169.163 - - [08/Feb/2016:06:12:00 -0800] "GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 370 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -202.39.169.163 - - [08/Feb/2016:06:12:10 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -185.46.214.61 - - [08/Feb/2016:06:16:39 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/crowdfunding-kickstarter-startup/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -212.195.42.141 - - [08/Feb/2016:06:18:48 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -212.195.42.141 - - [08/Feb/2016:06:18:50 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9351 "http://www.google.be/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&ved=0ahUKEwijt5W3rejKAhXLuhoKHVPPDxMQFggtMAU&url=http%3A%2F%2Ftechmeup.co%2Frostom-cheikh-aissa-de-gdf-suez-complexity-is%2F&usg=AFQjCNEhzyKRXoeuskF6upCjq9-M-mi-kA&bvm=bv.113370389,d.d2s" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:15 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -176.31.67.99 - - [08/Feb/2016:06:22:56 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15528 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:58 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:23:00 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:23:01 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1" 200 2099 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -194.7.114.2 - - [08/Feb/2016:06:24:34 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9385 "http://www.google.be/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&ved=0ahUKEwijt5W3rejKAhXLuhoKHVPPDxMQFggtMAU&url=http%3A%2F%2Ftechmeup.co%2Frostom-cheikh-aissa-de-gdf-suez-complexity-is%2F&usg=AFQjCNEhzyKRXoeuskF6upCjq9-M-mi-kA&bvm=bv.113370389,d.d2s" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:24:42 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2458 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -198.58.102.155 - - [08/Feb/2016:06:27:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -207.241.237.221 - - [08/Feb/2016:06:32:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.0" 200 5107 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -86.199.111.82 - - [08/Feb/2016:06:36:48 -0800] "GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1" 301 356 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -46.218.58.106 - - [08/Feb/2016:06:38:58 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:43.0) Gecko/20100101 Firefox/43.0" -46.218.58.106 - - [08/Feb/2016:06:38:58 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:43.0) Gecko/20100101 Firefox/43.0" -52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] "GET /2014/04/ HTTP/1.1" 200 6114 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] "GET /2014/12/ HTTP/1.1" 200 5966 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] "GET /2015/02/ HTTP/1.1" 200 7127 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:13 -0800] "GET /category/portraits/ HTTP/1.1" 200 7285 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:14 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9902 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:15 -0800] "GET /category/usa/ HTTP/1.1" 200 7424 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:15 -0800] "GET /category/europe/ HTTP/1.1" 200 7313 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.91.89.233 - - [08/Feb/2016:06:42:00 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9041 "-" "-" -52.91.89.233 - - [08/Feb/2016:06:42:00 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9958 "-" "-" -50.116.28.209 - - [08/Feb/2016:06:47:22 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -66.249.64.132 - - [08/Feb/2016:07:00:00 -0800] "GET /2015/02/ HTTP/1.1" 200 7183 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -212.51.165.254 - - [08/Feb/2016:07:01:42 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4816 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -212.51.165.254 - - [08/Feb/2016:07:01:56 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4816 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.103.160 - - [08/Feb/2016:07:03:17 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 304 211 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 304 212 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -90.63.244.202 - - [08/Feb/2016:07:08:02 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15531 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:03 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:40 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10006 "https://www.google.nl/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:42 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -176.146.36.48 - - [08/Feb/2016:07:12:34 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -176.146.36.48 - - [08/Feb/2016:07:12:34 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:07:18:22 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:07:18:33 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:07:18:54 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -198.58.103.160 - - [08/Feb/2016:07:20:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.22.107.6 - - [08/Feb/2016:07:20:55 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -128.232.110.28 - - [08/Feb/2016:07:22:47 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 zgrab/0.x" -82.237.33.174 - - [08/Feb/2016:07:24:32 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [08/Feb/2016:07:24:44 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -198.58.102.49 - - [08/Feb/2016:07:28:09 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.164.197.233 - - [08/Feb/2016:07:34:16 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [08/Feb/2016:07:34:28 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.72.179 - - [08/Feb/2016:07:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -134.249.65.86 - - [08/Feb/2016:07:42:27 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29524 "http://akvamaster.dp.ua/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows XP)" -62.210.188.62 - - [08/Feb/2016:07:42:40 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.188.62 - - [08/Feb/2016:07:42:41 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.141.46 - - [08/Feb/2016:07:45:26 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.141.46 - - [08/Feb/2016:07:45:26 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -173.244.168.218 - - [08/Feb/2016:07:46:55 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "-" "Java/1.7.0_10" -54.93.47.160 - - [08/Feb/2016:07:47:45 -0800] "POST /wp-login.php HTTP/1.1" 200 1903 "https://duckduckgo.com/html+techmeup.co" "Mozilla/5.0 (Windows NT 6.0; WOW64; rv:28.0) techmeup.co/20100101 Firefox/28.0" -54.158.4.90 - - [08/Feb/2016:07:53:02 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 9519 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nga5swbqRY1sygmpd-50x50.jpg HTTP/1.1" 200 1983 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:11 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -66.249.64.138 - - [08/Feb/2016:07:55:20 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1" 200 11343 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.49 - - [08/Feb/2016:07:59:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.222.20.166 - - [08/Feb/2016:08:08:15 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -186.202.127.163 - - [08/Feb/2016:08:11:06 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -173.236.198.102 - - [08/Feb/2016:08:19:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -198.58.103.102 - - [08/Feb/2016:08:26:08 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -196.217.79.189 - - [08/Feb/2016:08:34:00 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:08:34:01 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -217.171.23.166 - - [08/Feb/2016:08:37:11 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:11 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:12 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:13 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:14 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1" 200 2400 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:20 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:08:39:19 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:08:39:41 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -206.214.0.122 - - [08/Feb/2016:08:40:08 -0800] "GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1" 200 504 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -193.54.67.93 - - [08/Feb/2016:08:41:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -142.137.49.90 - - [08/Feb/2016:08:46:01 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1" 200 2463 "http://techmeup.co/pierre-olivier-pod-dybman-le-tech-francais-de/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -162.243.175.218 - - [08/Feb/2016:08:50:24 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -176.128.106.15 - - [08/Feb/2016:08:50:25 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:50:37 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:48 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:48 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n636u5g0bD1sygmpd-50x50.jpg HTTP/1.1" 200 2371 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:49 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:55 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1" 200 309 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.142.23 - jez [08/Feb/2016:09:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.96.215 - - [08/Feb/2016:09:09:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1" 200 2055 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:34 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n8zzsrRyDF1sa6hof-50x50.jpg HTTP/1.1" 200 2181 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.64.132 - - [08/Feb/2016:09:11:59 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette HTTP/1.1" 301 442 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.250 - - [08/Feb/2016:09:18:09 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1" 200 10346 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -213.136.71.211 - - [08/Feb/2016:09:21:50 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -177.185.194.131 - - [08/Feb/2016:09:32:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -196.217.79.189 - - [08/Feb/2016:09:34:18 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:09:34:18 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:09:36:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -173.236.224.133 - - [08/Feb/2016:09:43:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 481 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -157.55.39.143 - - [08/Feb/2016:09:47:36 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.16.156.124 - - [08/Feb/2016:09:48:18 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -196.217.79.189 - - [08/Feb/2016:09:50:49 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:09:50:49 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfw3g9NCQc1r792z4-50x50.jpg HTTP/1.1" 200 2817 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:41 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:43 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?cf_action=sync_comments&post_id=27 HTTP/1.1" 200 308 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -92.139.71.249 - - [08/Feb/2016:09:55:08 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 366 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -92.139.71.249 - - [08/Feb/2016:09:55:11 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -92.139.71.249 - - [08/Feb/2016:09:55:23 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 442 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -92.139.71.249 - - [08/Feb/2016:09:55:29 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24078 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1" 200 2106 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_neyg93Sin01sa6hof-50x50.jpg HTTP/1.1" 200 2005 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:39 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9667 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1" 200 2351 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9062 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37377 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:44 -0800] "GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/ HTTP/1.1" 200 7034 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] "GET /wp-content/uploads/2015/02/photo-7-50x50.jpg HTTP/1.1" 200 2288 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1" 200 1964 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -41.188.5.237 - - [08/Feb/2016:09:56:37 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 21900 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -41.188.5.216 - - [08/Feb/2016:09:57:44 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 206 346 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -41.188.5.216 - - [08/Feb/2016:09:57:52 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 206 347 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -41.188.5.216 - - [08/Feb/2016:09:58:00 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 33580 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:01:55 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:10:01:56 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -41.188.5.216 - - [08/Feb/2016:09:57:54 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 51100 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -89.95.130.140 - - [08/Feb/2016:10:04:42 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw.png HTTP/1.1" 200 112061 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -46.118.116.135 - - [08/Feb/2016:10:07:47 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29442 "http://fealq.com/" "Mozilla/5.0 (Windows NT 5.1; U; en) Opera 8.01" -62.210.250.66 - - [08/Feb/2016:10:07:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -202.39.169.163 - - [08/Feb/2016:10:10:52 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -202.39.169.163 - - [08/Feb/2016:10:11:04 -0800] "GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 370 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -202.39.169.163 - - [08/Feb/2016:10:11:08 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -176.154.81.156 - - [08/Feb/2016:10:11:54 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.154.81.156 - - [08/Feb/2016:10:12:04 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:13:09 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:10:13:10 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -90.127.2.18 - - [08/Feb/2016:10:14:47 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36" -90.127.2.18 - - [08/Feb/2016:10:14:48 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115505 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:17:50 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:19:09 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:10:19:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.64.132 - - [08/Feb/2016:10:21:49 -0800] "GET /2014/07/ HTTP/1.1" 200 6200 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.250.66 - - [08/Feb/2016:10:29:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -54.166.254.145 - - [08/Feb/2016:10:34:12 -0800] "GET /post/82751586873/techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 360 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -217.66.157.77 - - [08/Feb/2016:10:35:06 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T355 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.01 Yowser/2.5.2 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:35:30 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:10:35:31 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:10:37:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.102.155 - - [08/Feb/2016:10:41:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:10:45:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:49:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:52:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:56:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:00:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:01:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -37.162.91.158 - - [08/Feb/2016:11:01:35 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -37.162.91.158 - - [08/Feb/2016:11:01:46 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 9489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -69.163.208.122 - - [08/Feb/2016:11:02:00 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -78.253.11.28 - - [08/Feb/2016:11:04:20 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.154.246.91 - - [08/Feb/2016:11:06:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -62.210.250.66 - - [08/Feb/2016:11:07:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:11:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -86.246.217.7 - - [08/Feb/2016:11:13:56 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -95.108.129.196 - - [08/Feb/2016:11:15:11 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01e.yandex.ru)" -192.99.107.206 - - [08/Feb/2016:11:18:20 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)" -82.220.38.35 - - [08/Feb/2016:11:19:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 481 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.99.82 - - [08/Feb/2016:11:20:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -142.137.49.90 - - [08/Feb/2016:11:22:43 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/pierre-olivier-pod-dybman-le-tech-francais-de/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:24:46 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.92 - - [08/Feb/2016:11:28:36 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:11:33:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [08/Feb/2016:11:36:17 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [08/Feb/2016:11:37:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:41:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:43:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:45:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.92 - - [08/Feb/2016:11:47:26 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:11:50:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -209.133.111.211 - - [08/Feb/2016:11:52:53 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" -213.245.234.126 - - [08/Feb/2016:11:55:37 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.245.234.126 - - [08/Feb/2016:11:55:50 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.245.234.126 - - [08/Feb/2016:11:55:52 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.15.155.77 - - [08/Feb/2016:11:58:00 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 304 187 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -80.15.155.77 - - [08/Feb/2016:11:58:11 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -80.15.155.77 - - [08/Feb/2016:11:58:13 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -155.56.68.218 - - [08/Feb/2016:11:59:49 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -155.56.68.218 - - [08/Feb/2016:11:59:49 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.235.177.32 - - [08/Feb/2016:12:01:04 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:06 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:06 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -198.58.102.155 - - [08/Feb/2016:12:09:27 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -37.59.46.141 - - [08/Feb/2016:12:16:45 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:49 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:00 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:02 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:05 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:11 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:13 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:20 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:22 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:25 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:29 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:31 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:33 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:35 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:37 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:39 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:41 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:38 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:39 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:44 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -51.255.65.84 - - [08/Feb/2016:12:20:48 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9903 "-" "Mozilla/5.0 (compatible; AhrefsBot/5.0; +http://ahrefs.com/robot/)" -104.236.110.18 - - [08/Feb/2016:12:30:51 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0" -104.236.110.18 - - [08/Feb/2016:12:31:13 -0800] "GET /category/europe/ HTTP/1.1" 200 7369 "http://alyaboom.com" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -104.236.110.18 - - [08/Feb/2016:12:31:13 -0800] "GET /category/usa/ HTTP/1.1" 200 7480 "http://alyaboom.com" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/537.75.14" -62.210.250.66 - - [08/Feb/2016:12:39:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.215.194.138 - - [08/Feb/2016:12:42:50 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -80.215.194.138 - - [08/Feb/2016:12:43:52 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -199.16.156.126 - - [08/Feb/2016:12:45:12 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au/ HTTP/1.1" 200 8188 "-" "Twitterbot/1.0" -80.215.194.138 - - [08/Feb/2016:12:45:44 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 206 347 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -80.215.194.138 - - [08/Feb/2016:12:45:45 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -66.249.64.138 - - [08/Feb/2016:12:50:44 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du HTTP/1.1" 301 439 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:56 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:56 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4brjxiiFb1sygmpd-50x50.jpg HTTP/1.1" 200 2491 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -66.249.64.250 - - [08/Feb/2016:12:53:44 -0800] "GET /post/93181549828/pierre-lacombe-de-parrot-a-la-poursuite-du HTTP/1.1" 301 362 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -213.136.69.163 - - [08/Feb/2016:12:55:16 -0800] "GET /HNAP1/ HTTP/1.1" 404 4816 "http://80.75.154.165/" "Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1" -198.58.103.36 - - [08/Feb/2016:13:05:05 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.199.68.116 - - [08/Feb/2016:13:09:47 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -69.171.230.112 - - [08/Feb/2016:13:14:43 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21481 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -85.25.197.18 - - [08/Feb/2016:13:19:50 -0800] "GET /category/think-different/ HTTP/1.1" 200 7150 "-" "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)" -85.25.197.18 - - [08/Feb/2016:13:19:52 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1" -87.231.195.241 - - [08/Feb/2016:13:26:25 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15556 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [08/Feb/2016:13:26:38 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15575 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -87.231.195.241 - - [08/Feb/2016:13:26:41 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [08/Feb/2016:13:26:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -68.180.228.42 - - [08/Feb/2016:13:29:09 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/feed/ HTTP/1.1" 200 883 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -2.1.201.36 - - [08/Feb/2016:13:36:13 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.137.93.235 - - [08/Feb/2016:13:42:09 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29419 "http://la-fa.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)" -178.137.93.235 - - [08/Feb/2016:13:43:16 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29414 "http://healbio.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01" -66.249.84.151 - - [08/Feb/2016:13:50:36 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -211.1.226.112 - - [08/Feb/2016:13:55:46 -0800] "GET /?author=1 HTTP/1.0" 301 329 "-" "-" -91.210.146.133 - - [08/Feb/2016:14:00:27 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -2.1.201.36 - - [08/Feb/2016:14:06:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:39 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_ngwo89J1MF1r1bjfi-50x50.jpg HTTP/1.1" 200 2412 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:40 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:39 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:45 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1" 200 308 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.155 - - [08/Feb/2016:14:15:09 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -162.243.175.68 - - [08/Feb/2016:14:19:53 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -185.82.148.10 - - [08/Feb/2016:14:30:05 -0800] "GET /rss HTTP/1.1" 301 373 "-" "Scoop" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-50x50.jpg HTTP/1.1" 200 1826 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1" 200 1592 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1" 200 2074 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:13 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8854 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8601 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1" 200 2099 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37377 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -91.210.146.69 - - [08/Feb/2016:14:43:10 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:43 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -66.249.64.229 - - [08/Feb/2016:14:47:45 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -91.210.146.69 - - [08/Feb/2016:14:54:26 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -198.58.102.158 - - [08/Feb/2016:15:00:36 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -2.1.201.36 - - [08/Feb/2016:15:06:24 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -91.210.146.69 - - [08/Feb/2016:15:09:18 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -198.58.99.82 - - [08/Feb/2016:15:16:37 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.199.68.116 - - [08/Feb/2016:15:20:56 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -198.58.99.82 - - [08/Feb/2016:15:24:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.210.146.69 - - [08/Feb/2016:15:32:04 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -66.249.64.196 - - [08/Feb/2016:15:33:46 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -54.162.152.165 - - [08/Feb/2016:15:38:22 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9933 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -91.210.146.69 - - [08/Feb/2016:15:43:29 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -182.160.163.131 - - [08/Feb/2016:15:49:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -192.121.158.156 - - [08/Feb/2016:15:54:13 -0800] "GET / HTTP/1.0" 200 7191 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -68.180.228.42 - - [08/Feb/2016:15:55:16 -0800] "GET /?p=47 HTTP/1.1" 301 388 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -198.58.102.117 - - [08/Feb/2016:15:56:16 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.121.157.40 - - [08/Feb/2016:15:57:18 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -192.121.71.65 - - [08/Feb/2016:15:57:29 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -192.121.71.139 - - [08/Feb/2016:15:58:01 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -66.249.64.138 - - [08/Feb/2016:16:04:55 -0800] "GET /post/101762362273/les-demi-verites-de-monsieur-xavier-niel HTTP/1.1" 301 360 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -2.1.201.36 - - [08/Feb/2016:16:06:28 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.250 - - [08/Feb/2016:16:10:10 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 301 374 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -87.231.195.241 - - [08/Feb/2016:16:11:29 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -87.231.195.241 - - [08/Feb/2016:16:11:30 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -87.231.195.241 - - [08/Feb/2016:16:11:41 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -87.231.195.241 - - [08/Feb/2016:16:11:42 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.103.102 - - [08/Feb/2016:16:12:23 -0800] "GET /feed/ HTTP/1.1" 200 20987 "http://techmeup.co/feed/" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.210.146.69 - - [08/Feb/2016:16:17:56 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -160.33.66.122 - - [08/Feb/2016:16:26:51 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 304 190 "-" "Mozilla/4.0 (compatible;)" -178.154.189.201 - - [08/Feb/2016:16:29:51 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -205.139.141.54 - - [08/Feb/2016:16:33:23 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1" 200 9585 "-" "Mozilla/5.0 (compatible; Sysomos/1.0; +http://www.sysomos.com/; Sysomos)" -91.210.146.69 - - [08/Feb/2016:16:40:27 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -54.67.52.9 - - [08/Feb/2016:16:43:59 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (Windows NT 6.3; rv:36.0 Gecko/20100101 Firefox/36.0" -198.58.103.28 - - [08/Feb/2016:16:52:08 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.210.146.69 - - [08/Feb/2016:17:03:20 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -50.116.30.23 - - [08/Feb/2016:17:08:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -83.166.234.6 - - [08/Feb/2016:17:13:10 -0800] "GET / HTTP/1.1" 200 7218 "-" "Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1" -91.210.146.69 - - [08/Feb/2016:17:15:07 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -192.99.107.236 - - [08/Feb/2016:17:18:09 -0800] "GET / HTTP/1.1" 200 7218 "-" "Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)" -207.46.13.30 - - [08/Feb/2016:17:26:18 -0800] "GET /tagged/pinterest HTTP/1.1" 301 523 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [08/Feb/2016:17:26:29 -0800] "GET /tagged/rockstar HTTP/1.1" 301 522 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -66.249.64.132 - - [08/Feb/2016:17:28:57 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en HTTP/1.1" 301 444 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -50.116.30.23 - - [08/Feb/2016:17:32:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.132 - - [08/Feb/2016:17:35:06 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/?route=%2Fpost%2F%3Aid%2F%3Asummary HTTP/1.1" 200 9183 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -207.46.13.30 - - [08/Feb/2016:17:40:07 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10049 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:17:40:10 -0800] "GET /michael-ferranti-responsable-marketing-a-mailgun/ HTTP/1.1" 200 10560 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:17:40:12 -0800] "GET /guillaume-decugis-le-monde-de-la-tech-sous-tous/ HTTP/1.1" 200 10001 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [08/Feb/2016:17:40:18 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1" 200 11342 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:17:40:23 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15471 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:17:40:25 -0800] "GET /marketing-pour-developpeurs-partie-2/ HTTP/1.1" 200 9527 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:17:40:28 -0800] "GET /category/portraits/page/4/ HTTP/1.1" 200 7296 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [08/Feb/2016:17:40:34 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9966 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -66.249.64.250 - - [08/Feb/2016:17:41:05 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9881 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.95 - - [08/Feb/2016:17:55:51 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.96 - - [08/Feb/2016:18:03:49 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -207.241.237.220 - - [08/Feb/2016:18:09:19 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.0" 200 1674 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -207.241.237.221 - - [08/Feb/2016:18:18:49 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -178.154.224.114 - - [08/Feb/2016:18:34:04 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtweb01t.yandex.ru)" -162.243.175.234 - - [08/Feb/2016:18:38:15 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -198.58.103.115 - - [08/Feb/2016:18:51:54 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.132 - - [08/Feb/2016:19:00:10 -0800] "GET /du-side-project-a-google-le-fabuleux-parcours/ HTTP/1.1" 200 11188 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -207.46.13.30 - - [08/Feb/2016:19:07:12 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.99.82 - - [08/Feb/2016:19:08:05 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -180.76.15.149 - - [08/Feb/2016:19:19:16 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -50.116.30.23 - - [08/Feb/2016:19:32:05 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.96 - - [08/Feb/2016:19:40:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -209.133.111.211 - - [08/Feb/2016:19:51:38 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -2.1.201.36 - - [08/Feb/2016:20:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.102.155 - - [08/Feb/2016:20:11:53 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.138 - - [08/Feb/2016:20:16:51 -0800] "GET /feed/ HTTP/1.1" 200 20987 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -212.193.117.227 - - [08/Feb/2016:20:20:56 -0800] "GET / HTTP/1.1" 200 7274 "" "Mozilla/5.0 (compatible; statdom.ru/Bot; +http://statdom.ru/bot.html)" -185.25.48.72 - - [08/Feb/2016:20:24:05 -0800] "GET / HTTP/1.0" 200 33325 "-" "-" -62.210.250.66 - - [08/Feb/2016:20:32:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:20:38:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -154.68.4.143 - - [08/Feb/2016:20:41:03 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:03 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:04 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:05 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:06 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:07 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:35 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -85.26.241.76 - - [08/Feb/2016:20:43:32 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:37 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-300x225.jpg HTTP/1.1" 200 13031 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 200 9484 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:39 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:20:44:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.102.95 - - [08/Feb/2016:20:51:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.138 - - [08/Feb/2016:20:58:45 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10473 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -185.25.48.72 - - [08/Feb/2016:21:02:12 -0800] "GET / HTTP/1.0" 200 33325 "-" "-" -62.210.142.23 - jez [08/Feb/2016:21:06:06 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.103.36 - - [08/Feb/2016:21:07:52 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.28 - - [08/Feb/2016:21:15:45 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:21:19:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -69.195.124.123 - - [08/Feb/2016:21:28:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -178.255.215.65 - - [08/Feb/2016:21:41:02 -0800] "GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1" 301 396 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [08/Feb/2016:21:41:48 -0800] "GET /comments/feed/ HTTP/1.1" 200 1442 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -198.58.102.95 - - [08/Feb/2016:21:51:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.160 - - [08/Feb/2016:21:59:35 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -77.75.76.168 - - [08/Feb/2016:22:08:09 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; SeznamBot/3.2; +http://fulltext.sblog.cz/)" -173.252.90.244 - - [08/Feb/2016:22:10:34 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9569 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -180.76.15.152 - - [08/Feb/2016:22:15:36 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9766 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -198.58.102.158 - - [08/Feb/2016:22:17:13 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -81.252.96.8 - - [08/Feb/2016:22:27:09 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 304 211 "-" "Mozilla/4.0 (compatible;)" -66.249.64.250 - - [08/Feb/2016:22:34:35 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9020 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -109.134.177.188 - - [08/Feb/2016:22:35:01 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -109.134.177.188 - - [08/Feb/2016:22:35:02 -0800] "HEAD /apple-touch-icon-precomposed.png HTTP/1.1" 404 447 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -134.249.65.86 - - [08/Feb/2016:22:36:45 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29530 "http://www.autowebmarket.com.ua/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322) NS8/0.9.6" -178.137.93.235 - - [08/Feb/2016:22:49:43 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29364 "http://confib.ifmo.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)" -185.82.148.10 - - [08/Feb/2016:22:59:31 -0800] "GET /rss HTTP/1.1" 301 373 "-" "Scoop" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1" 200 3414 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8920 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb0xb4FLj01sygmpd-50x50.jpg HTTP/1.1" 200 2535 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8593 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1" 200 1964 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34313 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -162.243.175.80 - - [08/Feb/2016:23:03:35 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -207.46.13.29 - - [08/Feb/2016:23:06:18 -0800] "GET /textme-cest-de-la-bombe/ HTTP/1.1" 200 8621 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:23:06:22 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9295 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:23:06:24 -0800] "GET /marketing-pour-developpeurs-partie-2/?sthash.oxRUpt6F.mjjo HTTP/1.1" 200 9426 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [08/Feb/2016:23:06:32 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [08/Feb/2016:23:06:34 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1" 200 9566 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [08/Feb/2016:23:06:37 -0800] "GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1" 200 8829 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [08/Feb/2016:23:06:39 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9090 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [08/Feb/2016:23:06:44 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1" 200 9989 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -92.222.20.166 - - [08/Feb/2016:23:06:46 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -62.210.250.66 - - [08/Feb/2016:23:09:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -188.116.16.45 - - [08/Feb/2016:23:17:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -62.210.250.66 - - [08/Feb/2016:23:20:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:14 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -180.76.15.13 - - [08/Feb/2016:23:22:35 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -198.58.102.158 - - [08/Feb/2016:23:28:36 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.17.196 - - [08/Feb/2016:23:31:18 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29381 "http://brothers-smaller.ru/" "Mozilla/4.76 [en] (Windows NT 5.0; U)" -192.134.4.82 - - [08/Feb/2016:23:34:20 -0800] "GET / HTTP/1.1" 200 33373 "-" "DNSdelve HTTP tester/0.1 (running with Python 2.7.5; http://www.dnsdelve.net; bortzmeyer@nic.fr)" -207.241.229.215 - - [08/Feb/2016:23:38:26 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.0" 200 18754 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.96.215 - - [08/Feb/2016:23:44:35 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -209.133.111.211 - - [08/Feb/2016:23:46:44 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -192.99.107.192 - - [08/Feb/2016:23:55:33 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)" -2.1.201.36 - - [09/Feb/2016:00:06:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -199.16.156.126 - - [09/Feb/2016:00:08:15 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -198.58.102.49 - - [09/Feb/2016:00:09:06 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -86.246.217.7 - - [09/Feb/2016:00:16:32 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -50.116.30.23 - - [09/Feb/2016:00:25:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:21 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 304 211 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [09/Feb/2016:00:28:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -85.168.56.140 - - [09/Feb/2016:00:29:38 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.2; SM-P600 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -66.249.64.138 - - [09/Feb/2016:00:30:00 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -80.13.10.184 - - [09/Feb/2016:00:30:05 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15523 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [09/Feb/2016:00:30:14 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.244.3.234 - - [09/Feb/2016:00:30:34 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 504 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:34:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:40:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -217.109.181.167 - - [09/Feb/2016:00:41:56 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -217.109.181.167 - - [09/Feb/2016:00:41:59 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -84.99.98.93 - - [09/Feb/2016:00:44:20 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:21 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:21 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_neyg93Sin01sa6hof-50x50.jpg HTTP/1.1" 200 2005 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:22 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 664 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:38 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:39 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:46:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:53:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:01:02:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:01:06:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [09/Feb/2016:01:12:52 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -66.249.64.250 - - [09/Feb/2016:01:14:39 -0800] "GET /textme-cest-de-la-bombe/ HTTP/1.1" 200 8565 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -72.167.131.132 - - [09/Feb/2016:01:17:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -89.89.157.49 - - [09/Feb/2016:01:19:41 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0" -89.89.157.49 - - [09/Feb/2016:01:19:44 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0" -62.210.250.66 - - [09/Feb/2016:01:23:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -193.164.197.233 - - [09/Feb/2016:01:25:37 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [09/Feb/2016:01:25:48 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -62.210.250.66 - - [09/Feb/2016:01:27:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -193.22.107.6 - - [09/Feb/2016:01:27:20 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:01:28:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.64.138 - - [09/Feb/2016:01:30:13 -0800] "GET /feed/ HTTP/1.1" 200 20987 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -109.2.229.51 - - [09/Feb/2016:01:30:52 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.3.144.122 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:54 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -66.249.64.141 - - [09/Feb/2016:01:33:07 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -37.187.162.183 - - [09/Feb/2016:01:34:36 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1" 200 9022 "-" "Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)" -2.1.201.36 - - [09/Feb/2016:01:36:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -207.241.237.221 - - [09/Feb/2016:01:41:02 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.0" 200 10080 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.102.158 - - [09/Feb/2016:01:45:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:31 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:33 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.63.153.205 - - [09/Feb/2016:01:47:36 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10121 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -66.249.64.250 - - [09/Feb/2016:01:48:38 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8834 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -80.13.10.184 - - [09/Feb/2016:01:52:22 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:01:52:44 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -198.58.99.82 - - [09/Feb/2016:01:53:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.90.17.113 - - [09/Feb/2016:01:55:12 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:13 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:14 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:14 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:21 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:21 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -62.210.250.66 - - [09/Feb/2016:01:58:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:02:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [09/Feb/2016:02:09:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -50.116.30.23 - - [09/Feb/2016:02:17:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [09/Feb/2016:02:24:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -178.137.93.235 - - [09/Feb/2016:02:26:06 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29352 "http://www.visa-china.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461)" -62.210.250.66 - - [09/Feb/2016:02:27:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -90.43.108.157 - - [09/Feb/2016:02:30:54 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko)" -90.43.108.157 - - [09/Feb/2016:02:31:05 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -90.43.108.157 - - [09/Feb/2016:02:31:07 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -193.164.197.233 - - [09/Feb/2016:02:35:33 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -193.164.197.233 - - [09/Feb/2016:02:35:46 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -2.1.201.36 - - [09/Feb/2016:02:36:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -199.16.156.126 - - [09/Feb/2016:02:46:33 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4483 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -198.58.102.96 - - [09/Feb/2016:02:50:49 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.132 - - [09/Feb/2016:02:56:07 -0800] "GET /post/103124816768/paul-duan-le-super-heros-de-la-data-science-pour HTTP/1.1" 301 368 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.93.116 - - [09/Feb/2016:02:57:48 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n773jlxJpN1sa6hof-50x50.jpg HTTP/1.1" 200 2114 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:53 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/?cf_action=sync_comments&post_id=325 HTTP/1.1" 200 308 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -66.249.64.11 - - [09/Feb/2016:02:59:07 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -80.13.10.184 - - [09/Feb/2016:03:02:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:03:02:28 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -31.13.102.108 - - [09/Feb/2016:03:02:29 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1" 206 2784 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -80.13.10.184 - - [09/Feb/2016:03:02:39 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -2.1.201.36 - - [09/Feb/2016:03:06:32 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.138 - - [09/Feb/2016:03:14:27 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15531 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.250 - - [09/Feb/2016:03:17:37 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10147 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -199.16.156.124 - - [09/Feb/2016:03:20:34 -0800] "GET /post/82763315244/florent-crivello-ingenieur-ios-a-kwarter HTTP/1.1" 301 304 "-" "Twitterbot/1.0" -141.8.132.38 - - [09/Feb/2016:03:22:54 -0800] "GET /favicon.ico HTTP/1.1" 200 238 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -66.249.64.250 - - [09/Feb/2016:03:26:47 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9249 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -193.48.136.254 - - [09/Feb/2016:03:34:47 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -193.48.136.254 - - [09/Feb/2016:03:34:49 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.48.136.254 - - [09/Feb/2016:03:35:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -66.249.64.132 - - [09/Feb/2016:03:38:56 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is HTTP/1.1" 301 442 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.138 - - [09/Feb/2016:03:41:57 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10059 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -199.16.156.124 - - [09/Feb/2016:03:42:10 -0800] "GET /5-questions-a-ilan-abehassera/ HTTP/1.1" 200 8477 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:11 -0800] "GET /post/98806539878/le-jour-ou-les-startups-tech-nauront-plus-de-sens HTTP/1.1" 301 313 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:11 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10474 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:12 -0800] "GET /post/86385064806/office-tour-de-rackspace-san-francisco-avec-blake HTTP/1.1" 301 313 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:13 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:15 -0800] "GET /post/85133972498/julie-foulon-de-betagroup-fait-swinguer-la-belgique HTTP/1.1" 301 315 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:14 -0800] "GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1" 200 8715 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:14 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1" 200 8831 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:16 -0800] "GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1" 301 287 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:17 -0800] "GET /julie-foulon-de-betagroup-fait-swinguer-la-belgique HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:16 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:16 -0800] "GET / HTTP/1.1" 200 7218 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:18 -0800] "GET /william-brendel-research-scientist-chez-amazon-le/ HTTP/1.1" 200 9659 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:22 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n773jlxJpN1sa6hof-300x298.jpg HTTP/1.1" 200 20477 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:19 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 381 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:23 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbn26ulwUH1sygmpd-200x300.jpg HTTP/1.1" 200 22021 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:21 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10070 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:29 -0800] "GET /textme-cest-de-la-bombe HTTP/1.1" 301 364 "-" "Twitterbot/1.0" -209.133.111.211 - - [09/Feb/2016:03:43:18 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -198.58.103.160 - - [09/Feb/2016:03:48:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.16.156.125 - - [09/Feb/2016:03:54:06 -0800] "GET /post/95372240798/pierre-olivier-pod-dybman-le-tech-francais-de HTTP/1.1" 301 309 "-" "Twitterbot/1.0" -180.76.15.31 - - [09/Feb/2016:03:55:08 -0800] "GET /category/how-to/ HTTP/1.1" 200 6045 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -178.255.215.65 - - [09/Feb/2016:03:57:50 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8038 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:37 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:37 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:39 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:48 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -198.58.102.49 - - [09/Feb/2016:04:04:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.59.148.209 - - [09/Feb/2016:04:06:22 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -2.1.201.36 - - [09/Feb/2016:04:06:38 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.102.158 - - [09/Feb/2016:04:12:19 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.162.19 - - [09/Feb/2016:04:14:23 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.46 - - [09/Feb/2016:04:18:06 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.46 - - [09/Feb/2016:04:18:06 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.47 - - [09/Feb/2016:04:22:13 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.47 - - [09/Feb/2016:04:22:13 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -173.244.168.194 - - [09/Feb/2016:04:23:41 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "-" "Java/1.7.0_10" -173.244.168.226 - - [09/Feb/2016:04:23:41 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "-" "Java/1.7.0_10" -80.13.10.184 - - [09/Feb/2016:04:26:00 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:04:26:11 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:04:26:32 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -198.58.103.28 - - [09/Feb/2016:04:38:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.139.71.249 - - [09/Feb/2016:04:39:12 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15513 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -92.139.71.249 - - [09/Feb/2016:04:39:24 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 366 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -92.139.71.249 - - [09/Feb/2016:04:39:26 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.102.95 - - [09/Feb/2016:04:46:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.164.197.233 - - [09/Feb/2016:04:52:59 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [09/Feb/2016:04:53:10 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:23 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -62.210.142.23 - jez [09/Feb/2016:05:06:06 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.96.215 - - [09/Feb/2016:05:13:58 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -31.130.135.67 - - [09/Feb/2016:05:23:13 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) YaBrowser/16.2.0.3537.10 Mobile/11D257 Safari/9537.53" -62.210.188.62 - - [09/Feb/2016:05:25:50 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.188.62 - - [09/Feb/2016:05:25:50 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -178.137.17.196 - - [09/Feb/2016:05:26:09 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29399 "http://smstraf.ru/" "Opera/9.0 (Windows NT 5.1; U; en)" -209.51.205.2 - - [09/Feb/2016:05:27:18 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "-" "Java/1.7.0_10" -5.39.17.245 - - [09/Feb/2016:05:29:22 -0800] "GET /feed/ HTTP/1.1" 200 20931 "http://techmeup.co/feed/" "SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914" -80.13.10.184 - - [09/Feb/2016:05:31:08 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:05:31:20 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:05:31:40 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -66.249.64.149 - - [09/Feb/2016:05:35:27 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -2.1.201.36 - - [09/Feb/2016:05:36:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -41.66.28.100 - - [09/Feb/2016:05:42:20 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 124528 "http://www.silicon-valley.fr/lentrepreneuriat-aventure-parsemee-echecs/" "Mozilla/5.0 (Linux; U; Android 4.0.4; fr-fr; GT-S7562 Build/IMM76I) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -92.151.95.5 - - [09/Feb/2016:05:53:09 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/interview-orny-impenge-silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -109.15.143.216 - - [09/Feb/2016:06:00:11 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:06:00:23 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -176.128.169.10 - - [09/Feb/2016:06:01:31 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/zone-confort-apprentissage/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -198.58.102.96 - - [09/Feb/2016:06:13:58 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -109.15.143.216 - - [09/Feb/2016:06:14:51 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:06:15:03 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.17.146.185 - - [09/Feb/2016:06:20:27 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.17.146.185 - - [09/Feb/2016:06:20:27 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.103.36 - - [09/Feb/2016:06:30:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:19 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9889 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -54.176.128.185 - - [09/Feb/2016:06:40:50 -0800] "GET /rss HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n636u5g0bD1sygmpd-50x50.jpg HTTP/1.1" 200 2371 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:26 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -80.13.10.184 - - [09/Feb/2016:06:45:49 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [09/Feb/2016:06:45:51 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:06:46:02 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -41.225.136.131 - - [09/Feb/2016:06:50:25 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10065 "https://www.google.tn/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:28 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:28 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -5.9.85.4 - - [09/Feb/2016:06:55:01 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.0" 200 11577 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -198.58.103.115 - - [09/Feb/2016:06:55:18 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.103.102 - - [09/Feb/2016:07:03:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -173.234.159.250 - - [09/Feb/2016:07:03:38 -0800] "GET /steve-marx-developer-advocate-dropbox HTTP/1.0" 301 352 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -173.234.159.250 - - [09/Feb/2016:07:03:44 -0800] "GET /office-tour-de-rackspace-san-francisco-avec HTTP/1.0" 301 358 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:07:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.154.189.201 - - [09/Feb/2016:07:11:01 -0800] "GET /category/portraits/ HTTP/1.1" 200 7341 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -81.252.96.8 - - [09/Feb/2016:07:14:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 212 "-" "Mozilla/4.0 (compatible;)" -180.76.15.138 - - [09/Feb/2016:07:19:03 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:05 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:07 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-50x50.jpg HTTP/1.1" 200 2609 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -198.58.103.160 - - [09/Feb/2016:07:20:35 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -82.226.78.218 - - [09/Feb/2016:07:21:27 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:30 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1" 200 2074 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:32 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:30 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-content/uploads/2014/05/Screen-Shot-2015-02-22-at-12.33.02-AM-50x50.png HTTP/1.1" 200 4803 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:32 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:48 -0800] "GET /guillaume-charmes-meilleur-developpeur-du-monde/ HTTP/1.1" 200 8246 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:52 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -157.55.39.161 - - [09/Feb/2016:07:26:32 -0800] "GET /tagged/rockstar HTTP/1.1" 301 522 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -54.193.210.75 - - [09/Feb/2016:07:29:21 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -130.0.236.153 - - [09/Feb/2016:07:31:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -199.16.156.125 - - [09/Feb/2016:07:35:22 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:22 -0800] "GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1" 301 287 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:23 -0800] "GET /post/99978147058/du-side-project-a-google-le-fabuleux-parcours-dhoa-v HTTP/1.1" 301 316 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:23 -0800] "GET /post/96006277128/xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1" 301 314 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:25 -0800] "GET /post/98806539878/le-jour-ou-les-startups-tech-nauront-plus-de-sens HTTP/1.1" 301 313 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:26 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:07:35:26 -0800] "GET /post/88351742277/michael-ferranti-responsable-marketing-a-mailgun-nous HTTP/1.1" 301 317 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:07:35:26 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour HTTP/1.1" 301 389 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:27 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique HTTP/1.1" 301 385 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:27 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:29 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre HTTP/1.1" 301 378 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:29 -0800] "GET /les-demi-verites-de-monsieur-xavier-niel/?utm_term=0_f60dad0472-746ae4d6a9-66832769&utm_content=bufferf9d3f&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer HTTP/1.1" 200 12943 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:32 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1" 200 12227 "-" "Twitterbot/1.0" -178.137.17.196 - - [09/Feb/2016:07:36:43 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29488 "http://xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; AMD64)" -93.174.93.241 - - [09/Feb/2016:07:36:53 -0800] "GET //phpmyadmin/scripts/setup.php HTTP/1.1" 403 478 "-" "-" -130.0.236.153 - - [09/Feb/2016:07:37:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -46.118.116.135 - - [09/Feb/2016:07:38:43 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29392 "http://ufa.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FREE; .NET CLR 1.1.4322)" -130.0.236.153 - - [09/Feb/2016:07:43:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:07:46:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.13.10.184 - - [09/Feb/2016:07:48:55 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:07:49:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:07:49:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.117 - - [09/Feb/2016:07:53:21 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.16.156.126 - - [09/Feb/2016:07:57:14 -0800] "GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 301 310 "-" "Twitterbot/1.0" -207.241.229.198 - - [09/Feb/2016:08:01:27 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.0" 200 8997 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -2.1.201.36 - - [09/Feb/2016:08:06:21 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -180.76.15.149 - - [09/Feb/2016:08:08:12 -0800] "GET /category/europe/ HTTP/1.1" 200 7332 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -207.241.229.215 - - [09/Feb/2016:08:11:42 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.0" 200 16220 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.103.160 - - [09/Feb/2016:08:18:16 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:08:25:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -86.246.217.7 - - [09/Feb/2016:08:32:16 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -68.180.228.42 - - [09/Feb/2016:08:35:44 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 9636 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -81.242.141.238 - - [09/Feb/2016:08:37:33 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:35 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:38 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:40 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.16.156.126 - - [09/Feb/2016:08:37:45 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21425 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:08:40:09 -0800] "GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -81.252.96.8 - - [09/Feb/2016:08:44:53 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 36583 "-" "Mozilla/4.0 (compatible;)" -51.254.131.246 - - [09/Feb/2016:08:48:52 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -130.0.236.153 - - [09/Feb/2016:08:51:45 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:08:57:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -109.15.143.216 - - [09/Feb/2016:09:00:44 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:09:00:56 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -81.252.96.8 - - [09/Feb/2016:09:02:13 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -217.195.28.157 - - [09/Feb/2016:09:04:34 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -217.195.28.157 - - [09/Feb/2016:09:04:34 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -2.1.201.36 - - [09/Feb/2016:09:06:21 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -199.119.124.43 - - [09/Feb/2016:09:07:35 -0800] "GET /rss HTTP/1.1" 301 418 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=e020a4234ced4329fa4063c1)" -130.0.236.153 - - [09/Feb/2016:09:09:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -92.222.20.166 - - [09/Feb/2016:09:12:46 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -130.0.236.153 - - [09/Feb/2016:09:15:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -176.147.244.57 - - [09/Feb/2016:09:17:05 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -176.147.244.57 - - [09/Feb/2016:09:17:17 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -111.248.98.33 - - [09/Feb/2016:09:19:04 -0800] "CONNECT vip163mx00.mxmail.netease.com:25 HTTP/1.0" 404 15416 "-" "-" -89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32895 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.155 - - [09/Feb/2016:09:23:22 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -157.55.39.231 - - [09/Feb/2016:09:28:39 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -50.62.176.163 - - [09/Feb/2016:09:31:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -130.0.236.153 - - [09/Feb/2016:09:36:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -185.82.148.10 - - [09/Feb/2016:09:40:39 -0800] "GET /feed/ HTTP/1.1" 200 63896 "-" "Scoop" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803659 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 9679 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1" 200 2073 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9085 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1" 200 2400 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37377 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1" 200 2472 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1" 200 768386 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1" 200 1964 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -130.0.236.153 - - [09/Feb/2016:09:42:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:09:48:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:50:00 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:50:03 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:50:04 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -193.54.23.146 - - [09/Feb/2016:09:53:01 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15536 "https://www.google.fr" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:04 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:05 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:06 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.58.102.96 - - [09/Feb/2016:09:55:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.241.154.80 - - [09/Feb/2016:10:01:35 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -130.0.236.153 - - [09/Feb/2016:10:03:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -41.207.202.240 - - [09/Feb/2016:10:03:29 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36" -198.58.102.95 - - [09/Feb/2016:10:03:32 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -41.207.202.240 - - [09/Feb/2016:10:05:23 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3; ms-office; MSOffice 14)" -2.1.201.36 - - [09/Feb/2016:10:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -109.15.143.216 - - [09/Feb/2016:10:07:27 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:10:07:39 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:10:12:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.215.158.236 - - [09/Feb/2016:10:15:58 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4" -198.58.103.160 - - [09/Feb/2016:10:20:26 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.69.137 - - [09/Feb/2016:10:24:28 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -2.12.177.82 - - [09/Feb/2016:10:27:38 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 442 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -2.12.177.82 - - [09/Feb/2016:10:27:41 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.12.177.82 - - [09/Feb/2016:10:27:53 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:10:30:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -90.32.186.33 - - [09/Feb/2016:10:33:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:32 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:33 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:36 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e11-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:38 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -2.1.201.36 - - [09/Feb/2016:10:36:29 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:10:44:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:10:50:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:10:55:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.103.92 - - [09/Feb/2016:11:03:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.142.23 - jez [09/Feb/2016:11:06:08 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.69.73 - - [09/Feb/2016:11:10:17 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -132.211.90.115 - - [09/Feb/2016:11:12:44 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8584 "https://www.facebook.com" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:47 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:47 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:49 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9687 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -66.249.69.73 - - [09/Feb/2016:11:16:28 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.69.57 - - [09/Feb/2016:11:19:37 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10107 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -160.33.66.122 - - [09/Feb/2016:11:20:02 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 304 189 "-" "Mozilla/4.0 (compatible;)" -130.0.236.153 - - [09/Feb/2016:11:23:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:11:28:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -88.185.95.106 - - [09/Feb/2016:11:30:54 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -88.185.95.106 - - [09/Feb/2016:11:30:56 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -207.46.13.29 - - [09/Feb/2016:11:34:16 -0800] "GET /tagged/robin-des-bois HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -192.99.150.96 - - [09/Feb/2016:11:36:02 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -141.8.132.98 - - [09/Feb/2016:11:36:40 -0800] "GET /category/how-to/ HTTP/1.1" 200 6081 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:36:45 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:36:50 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:36:55 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 6860 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:37:00 -0800] "GET /category/canada/ HTTP/1.1" 200 5228 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:11:37:05 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:11:37:08 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:11:37:13 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -62.210.250.66 - - [09/Feb/2016:11:40:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -209.133.111.211 - - [09/Feb/2016:11:46:49 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" -130.0.236.153 - - [09/Feb/2016:11:49:56 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -213.245.234.126 - - [09/Feb/2016:11:50:04 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.245.234.126 - - [09/Feb/2016:11:50:16 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -5.9.94.207 - - [09/Feb/2016:11:51:40 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1" -5.9.94.207 - - [09/Feb/2016:11:51:49 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 29344 "-" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36" -5.9.94.207 - - [09/Feb/2016:11:51:51 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1" 200 28401 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31" -5.9.94.207 - - [09/Feb/2016:11:51:52 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 30098 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:21.0) Gecko/20130331 Firefox/21.0" -5.9.94.207 - - [09/Feb/2016:11:51:53 -0800] "GET /2014/07/ HTTP/1.1" 200 23285 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:21.0) Gecko/20100101 Firefox/21.0" -5.9.94.207 - - [09/Feb/2016:11:51:54 -0800] "GET /2014/11/ HTTP/1.1" 200 22701 "-" "Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/ 20120405 Firefox/14.0.1" -5.9.94.207 - - [09/Feb/2016:11:52:03 -0800] "GET /impressum.htm HTTP/1.1" 404 15493 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.134 Safari/537.36" -5.9.94.207 - - [09/Feb/2016:11:52:04 -0800] "GET /imprint.htm HTTP/1.1" 404 15493 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20130331 Firefox/21.0" -198.58.103.36 - - [09/Feb/2016:11:53:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:11:55:48 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.117 - - [09/Feb/2016:12:00:54 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:12:04:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:12:07:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -141.212.122.177 - - [09/Feb/2016:12:11:19 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 zgrab/0.x" -130.0.236.153 - - [09/Feb/2016:12:13:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.241.229.148 - - [09/Feb/2016:12:17:21 -0800] "GET /comments/feed/ HTTP/1.0" 200 3020 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -62.210.250.66 - - [09/Feb/2016:12:17:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:22:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:12:27:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:28 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:28:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:12:31:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.241.237.220 - - [09/Feb/2016:12:33:56 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.0" 200 25153 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1" 200 2055 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:12:36:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:40:16 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.231.13.152 - - [09/Feb/2016:12:42:46 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:46 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -130.0.236.153 - - [09/Feb/2016:12:43:13 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -46.118.116.135 - - [09/Feb/2016:12:48:56 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29442 "http://pornodojd.ru/" "Opera/7.11 (Windows NT 5.1; U) [en]" -62.210.250.66 - - [09/Feb/2016:12:49:06 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -95.65.34.177 - - [09/Feb/2016:12:52:00 -0800] "GET / HTTP/1.0" 200 29209 "-" "Opera/9.80 (X11; Linux x86_64) Presto/2.12.388 Version/12.16" -82.243.21.14 - - [09/Feb/2016:12:53:56 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15494 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:54:00 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:54:00 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:54:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -83.141.182.197 - - [09/Feb/2016:12:55:47 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -144.76.12.78 - - [09/Feb/2016:12:58:32 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.250.66 - - [09/Feb/2016:12:58:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -144.76.12.78 - - [09/Feb/2016:12:58:45 -0800] "GET /search/%22%3E%3Ch2%3E%3Ca+href=%22http://com-smm.ru%22%3E%D1%82%D0%BE%D1%80%D1%80%D0%B5%D0%BD%D1%82+%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D0%B5+%D1%81%D0%B0%D0%B9%D1%82%D0%B0%3C/a%3E%3C/h2%3E/feed/rss2/ HTTP/1.0" 200 993 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.250.66 - - [09/Feb/2016:13:01:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -37.163.228.232 - - [09/Feb/2016:13:04:19 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 436 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -37.163.228.232 - - [09/Feb/2016:13:04:21 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -37.163.228.232 - - [09/Feb/2016:13:04:33 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.142.23 - jez [09/Feb/2016:13:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -40.77.167.6 - - [09/Feb/2016:13:07:56 -0800] "GET /archive/2015/1 HTTP/1.1" 404 4924 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:13:13:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:16:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:13:20:16 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:13:24:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.199.68.116 - - [09/Feb/2016:13:28:56 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -173.201.196.161 - - [09/Feb/2016:13:30:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -130.0.236.153 - - [09/Feb/2016:13:33:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -178.137.17.196 - - [09/Feb/2016:13:36:44 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 307 "http://tolyatti.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" -130.0.236.153 - - [09/Feb/2016:13:39:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:42:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:45:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:48:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.241.229.149 - - [09/Feb/2016:13:53:52 -0800] "GET /wp-content/themes/great/style.css HTTP/1.0" 200 36546 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.102.95 - - [09/Feb/2016:13:55:20 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -88.162.200.224 - - [09/Feb/2016:14:00:23 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-300x225.jpg HTTP/1.1" 200 17875 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4" -198.58.103.102 - - [09/Feb/2016:14:03:24 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.93.235 - - [09/Feb/2016:14:05:45 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29373 "http://piter.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 4.6 (build 01425); MRSPUTNIK 1, 5, 0, 19 SW)" -199.16.156.125 - - [09/Feb/2016:14:06:24 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -213.251.182.106 - - [09/Feb/2016:14:07:25 -0800] "HEAD /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 298 "http://www.les-aventures-de-la-famille-bourg.com" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.187.168.241 - - [09/Feb/2016:14:11:05 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*" -40.77.167.6 - - [09/Feb/2016:14:11:49 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:11 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25163 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:11 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1" 200 20280 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:13 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:15 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-300x225.jpg HTTP/1.1" 200 13168 "http://techmeup.co/category/how-to/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:15 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-300x225.jpg HTTP/1.1" 200 23924 "http://techmeup.co/category/how-to/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:23 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:33 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -68.180.228.42 - - [09/Feb/2016:14:14:19 -0800] "GET /xmlrpc.php HTTP/1.1" 200 277 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -141.8.132.98 - - [09/Feb/2016:14:15:19 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:14:15:25 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -198.58.103.36 - - [09/Feb/2016:14:19:31 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -87.231.195.241 - - [09/Feb/2016:14:23:59 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15456 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [09/Feb/2016:14:24:02 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [09/Feb/2016:14:24:11 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15494 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -87.231.195.241 - - [09/Feb/2016:14:24:13 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -62.210.250.66 - - [09/Feb/2016:14:25:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:14:26:45 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -162.243.175.84 - - [09/Feb/2016:14:29:39 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -86.246.217.7 - - [09/Feb/2016:14:32:15 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -207.46.13.35 - - [09/Feb/2016:14:32:32 -0800] "GET /category/how-to/ HTTP/1.1" 200 6082 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:14:32:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:14:35:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -89.89.153.231 - - [09/Feb/2016:14:38:23 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:28 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:29 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -40.77.167.6 - - [09/Feb/2016:14:41:18 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 437 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -41.228.167.4 - - [09/Feb/2016:14:43:56 -0800] "GET /wp-login.php HTTP/1.1" 200 3065 "-" "Mozilla/5.0 (X11; Linux i686; rv:2.0.1) Gecko/20100101 Firefox/4.0.1" -130.0.236.153 - - [09/Feb/2016:14:44:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.43.112 - - [09/Feb/2016:14:46:45 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -130.0.236.153 - - [09/Feb/2016:14:47:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10050 "https://www.google.fr" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n43vwqRZpY1r792z4-50x50.jpg HTTP/1.1" 200 2491 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:07 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.58.103.36 - - [09/Feb/2016:14:52:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -40.77.167.76 - - [09/Feb/2016:14:52:18 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:14:52:24 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [09/Feb/2016:14:52:43 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:14:52:58 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:14:52:59 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -78.154.190.29 - - [09/Feb/2016:14:54:48 -0800] "GET /?author=1 HTTP/1.1" 200 6136 "-" "Chilkat/1.0.0 (+http://www.chilkatsoft.com/ChilkatHttpUA.asp)" -78.154.190.29 - - [09/Feb/2016:14:54:51 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:53 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:55 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:56 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:58 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:00 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:02 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:03 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:05 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:07 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:08 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:10 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:12 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:13 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:15 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:17 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:18 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:20 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:22 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:23 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:25 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:27 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:28 -0800] "POST /wp-login.php HTTP/1.1" 200 1897 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:30 -0800] "POST /wp-login.php HTTP/1.1" 200 1897 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:32 -0800] "POST /wp-login.php HTTP/1.1" 200 1862 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:34 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:36 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:38 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:40 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:42 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:44 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:45 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:47 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:50 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:51 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:53 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:55 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:56 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:58 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:00 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:01 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:03 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:05 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:06 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:08 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:09 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:11 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -130.0.236.153 - - [09/Feb/2016:14:56:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.154.190.29 - - [09/Feb/2016:14:56:14 -0800] "POST /wp-login.php HTTP/1.1" 200 1903 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:15 -0800] "POST /wp-login.php HTTP/1.1" 200 1903 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:17 -0800] "GET /?author=3 HTTP/1.1" 200 6635 "-" "Chilkat/1.0.0 (+http://www.chilkatsoft.com/ChilkatHttpUA.asp)" -78.154.190.29 - - [09/Feb/2016:14:56:19 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:20 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:22 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:24 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:26 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:27 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:29 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:30 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:32 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -40.77.167.6 - - [09/Feb/2016:14:56:48 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 437 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.102.158 - - [09/Feb/2016:15:00:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [09/Feb/2016:15:05:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:15:08:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:15:11:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:15:14:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.55.39.231 - - [09/Feb/2016:15:17:14 -0800] "GET /tagged/MotionLead HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -90.79.192.180 - - [09/Feb/2016:15:17:16 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.79.192.180 - - [09/Feb/2016:15:17:27 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -180.76.15.15 - - [09/Feb/2016:15:19:18 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -90.79.192.180 - - [09/Feb/2016:15:19:50 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.79.192.180 - - [09/Feb/2016:15:20:02 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:15:23:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:15:26:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -88.171.181.51 - - [09/Feb/2016:15:28:16 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -88.171.181.51 - - [09/Feb/2016:15:28:16 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -62.210.250.66 - - [09/Feb/2016:15:29:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:15:34:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -162.243.175.172 - - [09/Feb/2016:15:35:44 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -2.1.201.36 - - [09/Feb/2016:15:36:22 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:15:40:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15527 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:04 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -46.127.16.228 - - [09/Feb/2016:15:43:19 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25164 "https://www.google.ch/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -62.210.250.66 - - [09/Feb/2016:15:45:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:15:48:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:15:51:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -199.30.24.94 - - [09/Feb/2016:15:53:22 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 382 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b" -130.0.236.153 - - [09/Feb/2016:15:55:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -66.249.69.143 - - [09/Feb/2016:15:59:48 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -130.0.236.153 - - [09/Feb/2016:16:01:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.158 - - [09/Feb/2016:16:06:15 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:16:07:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:16:10:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:16:13:23 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -91.121.65.46 - - [09/Feb/2016:16:15:27 -0800] "GET /category/usa HTTP/1.1" 301 408 "-" "Mozilla/5.0 (compatible; Dazoobot/1.0; http://dazoo.fr)" -198.58.103.28 - - [09/Feb/2016:16:16:39 -0800] "GET /rss HTTP/1.1" 301 474 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.16.156.125 - - [09/Feb/2016:16:17:03 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -62.210.250.66 - - [09/Feb/2016:16:18:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.75.194 - - [09/Feb/2016:16:24:18 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -74.91.28.58 - - [09/Feb/2016:16:21:19 -0800] "GET / HTTP/1.1" 200 20556 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)" -62.210.250.66 - - [09/Feb/2016:16:27:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:16:31:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.95 - - [09/Feb/2016:16:36:19 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -213.180.206.196 - - [09/Feb/2016:16:38:24 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01g.yandex.ru)" -130.0.236.153 - - [09/Feb/2016:16:40:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24078 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1684 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:08 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:08 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:09 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:09 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1684 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9633 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1" 200 2400 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1" 200 2351 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9021 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1" 200 2471 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/ HTTP/1.1" 200 7092 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1" 200 3414 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/uploads/2015/02/photo-7.jpg HTTP/1.1" 200 95455 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -198.199.68.128 - - [09/Feb/2016:16:43:09 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.250.66 - - [09/Feb/2016:16:45:48 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.69.57 - - [09/Feb/2016:16:52:08 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9229 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -38.98.70.179 - - [09/Feb/2016:16:53:29 -0800] "GET /wp-content/uploads/2015/03/4N8A4857.jpg HTTP/1.1" 200 2266560 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -38.98.70.179 - - [09/Feb/2016:16:53:47 -0800] "GET /wp-content/uploads/2015/03/4N8A4857.jpg HTTP/1.1" 200 2266560 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.103.102 - - [09/Feb/2016:16:55:16 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -159.203.3.31 - - [09/Feb/2016:17:00:09 -0800] "GET /wp-content/plugins/fast-image-adder/readme.txt HTTP/1.0" 404 15541 "-" "-" -159.203.3.31 - - [09/Feb/2016:17:00:17 -0800] "GET /wp-content/plugins/dzs-zoomsounds/style/style.css HTTP/1.0" 404 15541 "-" "-" -159.203.3.31 - - [09/Feb/2016:17:00:22 -0800] "GET /wp-content/plugins/videowhisper-video-conference-integration/readme.txt HTTP/1.0" 404 15541 "-" "-" -66.249.69.73 - - [09/Feb/2016:17:03:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 664 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.142.23 - jez [09/Feb/2016:17:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -40.77.167.6 - - [09/Feb/2016:17:07:22 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:17:07:28 -0800] "GET /julie-foulon-de-betagroup-fait-swinguer-la/ HTTP/1.1" 200 9867 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:17:07:30 -0800] "GET /author/phil/ HTTP/1.1" 200 6634 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:17:07:32 -0800] "GET /office-tour-de-rackspace-san-francisco-avec/ HTTP/1.1" 200 8566 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:00 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:01 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10081 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:02 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10137 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:04 -0800] "GET /category/usa/page/2/ HTTP/1.1" 200 7512 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [09/Feb/2016:17:08:06 -0800] "GET /category/nouvelles/ HTTP/1.1" 200 6136 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [09/Feb/2016:17:08:13 -0800] "GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/ HTTP/1.1" 200 8988 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:17:09:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:17:12:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:17:17:05 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -192.121.159.172 - - [09/Feb/2016:17:20:34 -0800] "GET /feed/ HTTP/1.0" 200 20950 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.158 - - [09/Feb/2016:17:24:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -87.90.19.196 - - [09/Feb/2016:17:26:01 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -62.210.250.66 - - [09/Feb/2016:17:25:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:17:32:19 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:17:35:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -68.180.228.42 - - [09/Feb/2016:17:40:09 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1" 404 4816 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -68.180.228.42 - - [09/Feb/2016:17:43:45 -0800] "GET /2014/07/ HTTP/1.1" 200 6144 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -66.249.69.57 - - [09/Feb/2016:17:47:00 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -50.116.30.23 - - [09/Feb/2016:17:49:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -162.243.175.221 - - [09/Feb/2016:17:52:14 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.250.66 - - [09/Feb/2016:17:56:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:18:01:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.55.39.231 - - [09/Feb/2016:18:06:33 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -2.1.201.36 - - [09/Feb/2016:18:07:17 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:18:10:38 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:18:13:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -66.249.83.104 - - [09/Feb/2016:18:16:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -62.210.250.66 - - [09/Feb/2016:18:18:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.69.73 - - [09/Feb/2016:18:24:24 -0800] "GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 370 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -207.241.237.222 - - [09/Feb/2016:18:24:37 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.0" 200 96102 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -62.210.250.66 - - [09/Feb/2016:18:27:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:18:31:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:18:36:18 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [09/Feb/2016:18:39:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:18:45:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -46.118.116.135 - - [09/Feb/2016:18:46:56 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29377 "http://wdfdocando.com/" "Mozilla/1.22 (compatible; MSIE 2.0d; Windows NT)" -37.9.118.28 - - [09/Feb/2016:18:47:35 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -206.214.3.187 - - [09/Feb/2016:18:50:05 -0800] "GET /wp-login.php HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0" -180.76.15.145 - - [09/Feb/2016:18:52:42 -0800] "GET /category/think-different/ HTTP/1.1" 200 7114 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -130.0.236.153 - - [09/Feb/2016:18:57:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -51.254.130.62 - - [09/Feb/2016:18:57:48 -0800] "GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.0" 200 33805 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -130.0.236.153 - - [09/Feb/2016:19:00:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:19:03:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:19:06:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:19:10:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:19:13:11 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.29 - - [09/Feb/2016:19:17:35 -0800] "GET /sitemap1.xml HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -180.76.15.154 - - [09/Feb/2016:19:19:20 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -62.210.250.66 - - [09/Feb/2016:19:22:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.28 - - [09/Feb/2016:19:26:46 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -85.25.201.224 - - [09/Feb/2016:19:26:51 -0800] "GET /?author=3 HTTP/1.0" 200 27687 "-" "-" -201.172.179.106 - - [09/Feb/2016:19:27:25 -0800] "GET / HTTP/1.1" 400 508 "-" "-" -130.0.236.153 - - [09/Feb/2016:19:32:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [09/Feb/2016:19:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [09/Feb/2016:19:41:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:19:44:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -209.133.111.211 - - [09/Feb/2016:19:49:33 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -207.46.13.64 - - [09/Feb/2016:19:52:21 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:19:56:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:20:02:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [09/Feb/2016:20:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:20:07:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:20:10:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -192.165.48.170 - - [09/Feb/2016:20:12:07 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -192.71.3.19 - - [09/Feb/2016:20:13:29 -0800] "GET / HTTP/1.0" 200 7191 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -62.210.250.66 - - [09/Feb/2016:20:14:38 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:20:19:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.103.160 - - [09/Feb/2016:20:23:44 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -157.55.39.231 - - [09/Feb/2016:20:27:30 -0800] "GET /category/portraits/ HTTP/1.1" 200 7341 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -90.31.168.87 - - [09/Feb/2016:20:29:56 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -90.31.168.87 - - [09/Feb/2016:20:29:57 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -66.249.69.65 - - [09/Feb/2016:20:33:26 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9079 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.250.66 - - [09/Feb/2016:20:36:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:20:40:05 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -82.117.234.105 - - [09/Feb/2016:20:43:43 -0800] "GET /?author=1 HTTP/1.1" 200 23313 "http://marryme-bridal.ru/?author=1" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:20:48:46 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -206.214.8.216 - - [09/Feb/2016:20:53:49 -0800] "GET /wp-login.php HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0" -185.82.148.10 - - [09/Feb/2016:20:57:09 -0800] "GET /rss HTTP/1.1" 301 373 "-" "Scoop" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1" 200 2055 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:21 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8926 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1" 200 2463 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:23 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8606 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_ne4zzxKVb01sa6hof-50x50.png HTTP/1.1" 200 4330 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34313 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wp-content/uploads/2015/02/photo-7.jpg HTTP/1.1" 200 95455 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -130.0.236.153 - - [09/Feb/2016:21:00:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -95.211.134.37 - - [09/Feb/2016:21:05:12 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -62.210.250.66 - - [09/Feb/2016:21:08:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:21:12:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -178.255.215.65 - - [09/Feb/2016:21:15:40 -0800] "GET / HTTP/1.1" 301 359 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -162.243.175.218 - - [09/Feb/2016:21:18:39 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -94.199.151.22 - - [09/Feb/2016:21:19:32 -0800] "GET / HTTP/1.1" 301 359 "-" "Wotbox/2.01 (+http://www.wotbox.com/bot/)" -62.210.250.66 - - [09/Feb/2016:21:22:59 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:21:23:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.103.160 - - [09/Feb/2016:21:28:09 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -45.55.229.91 - - [09/Feb/2016:21:32:10 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0" -45.55.229.91 - - [09/Feb/2016:21:32:16 -0800] "GET /category/usa/ HTTP/1.1" 200 7480 "http://marryme-bridal.ru" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -45.55.229.91 - - [09/Feb/2016:21:32:17 -0800] "GET /category/portraits/ HTTP/1.1" 200 7341 "http://marryme-bridal.ru" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36" -198.58.102.117 - - [09/Feb/2016:21:36:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:21:38:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -45.55.229.154 - - [09/Feb/2016:21:38:39 -0800] "GET /category/europe/ HTTP/1.1" 200 7369 "http://techmeup.co" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:29.0) Gecko/20100101 Firefox/29.0" -45.55.229.154 - - [09/Feb/2016:21:38:39 -0800] "GET /category/nouvelles/ HTTP/1.1" 200 6137 "http://techmeup.co" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0" -45.55.229.154 - - [09/Feb/2016:21:38:40 -0800] "GET /author/julienbarbier/ HTTP/1.1" 200 6856 "http://techmeup.co" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -45.55.229.154 - - [09/Feb/2016:21:38:42 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9071 "http://techmeup.co" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -45.55.229.154 - - [09/Feb/2016:21:38:42 -0800] "GET /author/laetitia/ HTTP/1.1" 200 7337 "http://techmeup.co" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9283 "http://images.google.fr/imgres?imgurl=https%3A%2F%2F31.media.tumblr.com%2F5dd4eb54ddb4773345909f4c689dcba9%2Ftumblr_inline_n7zuk0v8WY1sa6hof.jpg&imgrefurl=http%3A%2F%2Ftechmeup.co%2Fadrien-duermael-pixowl-et-lindustrie%2F&h=500&w=500&tbnid=Rr1UNiaOw3L2dM%3A&docid=rUfxw3nWObId4M&ei=Gsy6Vq6EHcaNav_LnsgJ&tbm=isch&iact=rc&uact=3&dur=663&page=1&start=0&ndsp=32&ved=0ahUKEwiu-fvmvOzKAhXGhhoKHf-lB5kQrQMIITAA" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zszkBuTQ1sa6hof-50x50.jpg HTTP/1.1" 200 2059 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:21:42:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:43:46 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:21:45:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:21:47:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:21:50:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.49 - - [09/Feb/2016:21:53:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -141.8.132.38 - - [09/Feb/2016:21:56:01 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:21:56:09 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -199.119.124.38 - - [09/Feb/2016:21:58:18 -0800] "GET /rss HTTP/1.1" 301 418 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=e020a4234ced4329fa4063c1)" -198.58.103.102 - - [09/Feb/2016:22:01:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:22:05:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:07:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:10:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:13:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -180.76.15.142 - - [09/Feb/2016:22:19:15 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -167.114.173.221 - - [09/Feb/2016:22:21:13 -0800] "GET /post/90455136503 HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -62.210.250.66 - - [09/Feb/2016:22:22:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:22:28:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:31:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:34:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:22:38:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:22:43:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:46:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.194.25.109 - - [09/Feb/2016:22:51:21 -0800] "GET / HTTP/1.1" 200 7274 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -78.194.25.109 - - [09/Feb/2016:22:51:21 -0800] "GET /favicon.ico HTTP/1.1" 200 238 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -198.58.102.155 - - [09/Feb/2016:22:53:20 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [09/Feb/2016:22:56:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:23:02:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.142.23 - jez [09/Feb/2016:23:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -67.169.93.143 - - [09/Feb/2016:23:08:51 -0800] "HEAD /apple-touch-icon.png HTTP/1.1" 404 448 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -92.222.20.166 - - [09/Feb/2016:23:10:37 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -130.0.236.153 - - [09/Feb/2016:23:13:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:23:15:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -81.67.77.161 - - [09/Feb/2016:23:16:23 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H321 Twitter for iPhone" -81.67.77.161 - - [09/Feb/2016:23:16:23 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H321 Twitter for iPhone" -180.76.15.158 - - [09/Feb/2016:23:19:40 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -207.46.13.153 - - [09/Feb/2016:23:23:57 -0800] "GET /index.php?controller=product&id_product=713 HTTP/1.1" 301 436 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:23:24:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.55.130 - - [09/Feb/2016:23:27:52 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15535 "-" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -199.16.156.125 - - [09/Feb/2016:23:27:56 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:23:27:59 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24023 "-" "Twitterbot/1.0" -80.12.55.130 - - [09/Feb/2016:23:28:16 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 436 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:28:21 -0800] "GET /les-francais-genies-de-la-silicon-valley/apple-touch-icon.png HTTP/1.1" 404 4871 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1" 200 18765 "http://techmeup.co/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 200 9485 "http://techmeup.co/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32895 "http://techmeup.co/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:30:10 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 200 2287 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:30:27 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4871 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -91.224.140.223 - - [09/Feb/2016:23:32:02 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -192.99.150.96 - - [09/Feb/2016:23:36:19 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -213.136.71.211 - - [09/Feb/2016:23:39:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -162.243.175.231 - - [09/Feb/2016:23:42:11 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -209.133.111.211 - - [09/Feb/2016:23:43:42 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -62.210.250.66 - - [09/Feb/2016:23:48:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:23:51:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.46.13.29 - - [09/Feb/2016:23:55:31 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9315 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:23:57:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:00:00:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.220.158.112 - - [10/Feb/2016:00:04:39 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16096 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -62.210.250.66 - - [10/Feb/2016:00:06:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -82.237.33.174 - - [10/Feb/2016:00:07:10 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [10/Feb/2016:00:07:23 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:00:09:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -199.16.156.124 - - [10/Feb/2016:00:12:03 -0800] "GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.124 - - [10/Feb/2016:00:15:11 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -91.247.252.110 - - [10/Feb/2016:00:18:47 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)" -91.247.252.110 - - [10/Feb/2016:00:18:48 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)" -89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3422 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:18 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:19 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:19 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1102 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:20 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:28 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -173.252.88.181 - - [10/Feb/2016:00:20:49 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q-225x300.jpeg HTTP/1.1" 200 23875 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -86.246.217.7 - - [10/Feb/2016:00:22:48 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -104.236.244.32 - - [10/Feb/2016:00:23:44 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://alyaboom.com/" "Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0" -104.236.244.32 - - [10/Feb/2016:00:23:44 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://alyaboom.com/" "Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0" -104.236.244.32 - - [10/Feb/2016:00:23:55 -0800] "GET /category/canada/ HTTP/1.1" 200 5229 "http://alyaboom.com" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -104.236.244.32 - - [10/Feb/2016:00:23:55 -0800] "GET /category/think-different/ HTTP/1.1" 200 7151 "http://alyaboom.com" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -66.249.69.57 - - [10/Feb/2016:00:25:28 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -91.224.140.223 - - [10/Feb/2016:00:26:07 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -62.210.250.66 - - [10/Feb/2016:00:29:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.13.10.184 - - [10/Feb/2016:00:32:38 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.13.10.184 - - [10/Feb/2016:00:32:44 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:00:33:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [10/Feb/2016:00:36:17 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.103.36 - - [10/Feb/2016:00:39:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -171.18.2.101 - - [10/Feb/2016:00:39:28 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/2015/12/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:00:39:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:00:43:16 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:56 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -162.243.175.23 - - [10/Feb/2016:00:45:58 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -82.145.220.154 - - [10/Feb/2016:00:46:21 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9227 "http://www.google.com/m?q=aminou%2C+il+y+&client=ms-opera-mini-android&channel=new" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:21 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 211 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 304 212 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:36 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9237 "-" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 304 211 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 304 209 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 304 213 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 187 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:07 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:29 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 304 211 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 304 209 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 304 213 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 187 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:31 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -198.58.102.96 - - [10/Feb/2016:00:47:33 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.164.197.233 - - [10/Feb/2016:00:48:05 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:00:48:17 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:00:51:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:00:53:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:01:00:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:01:03:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:54 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1" 200 11679 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:58 -0800] "GET /marketing-pour-developpeurs-partie-1/?cf_action=sync_comments&post_id=17 HTTP/1.1" 200 308 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:06:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -79.83.182.11 - - [10/Feb/2016:01:08:29 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; NP06; rv:11.0) like Gecko" -130.0.236.153 - - [10/Feb/2016:01:09:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:55 -0800] "GET /les-demi-verites-de-monsieur-xavier-niel/ HTTP/1.1" 200 406 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -46.118.114.111 - - [10/Feb/2016:01:10:08 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29454 "http://karusel-market.ru/" "Mozilla/4.7 (compatible; OffByOne; Windows 2000) Webster Pro V3.4" -82.229.67.53 - - [10/Feb/2016:01:10:37 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-50x50.jpg HTTP/1.1" 200 2072 "http://techmeup.co/marketing-pour-developpeurs-partie-2/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1" 200 18764 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:51 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:12:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:01:17:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:21:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:01:26:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.102 - - [10/Feb/2016:01:28:15 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:01:30:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -88.171.181.51 - - [10/Feb/2016:01:31:17 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 304 190 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -54.93.47.160 - - [10/Feb/2016:01:32:05 -0800] "GET /wp-login.php HTTP/1.1" 200 1593 "https://duckduckgo.com/html+techmeup.co" "Mozilla/5.0 (Windows NT 5.1; rv:31.0) techmeup.co/20100101 Firefox/31.0" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njgqqazNyf1sa6hof-1-50x50.png HTTP/1.1" 200 4836 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:33:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -194.199.7.22 - - [10/Feb/2016:01:35:42 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)" -194.199.7.22 - - [10/Feb/2016:01:36:16 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.0" 200 174694 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)" -194.199.7.22 - - [10/Feb/2016:01:36:42 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.0" 200 115469 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)" -199.16.156.125 - - [10/Feb/2016:01:36:54 -0800] "GET /post/96028023828/les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 304 "-" "Twitterbot/1.0" -130.0.236.153 - - [10/Feb/2016:01:39:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:01:42:50 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.13.10.184 - - [10/Feb/2016:01:43:23 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -157.55.39.111 - - [10/Feb/2016:01:43:42 -0800] "GET /sitemap-pt-post-2014-04.xml HTTP/1.1" 200 995 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -80.13.10.184 - - [10/Feb/2016:01:43:55 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -88.187.37.182 - - [10/Feb/2016:01:49:58 -0800] "GET /les-francais-genies-de-la-silicon-valley/http:// HTTP/1.1" 301 554 "http://www.lafabriquedunet.fr/blog/tarifs-freelances-web-developpeurs-graphistes-webmarketing/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:01 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -86.246.217.7 - - [10/Feb/2016:01:52:49 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -194.187.168.225 - - [10/Feb/2016:01:56:27 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*" -198.58.99.82 - - [10/Feb/2016:02:00:17 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -50.62.176.163 - - [10/Feb/2016:02:01:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.102.49 - - [10/Feb/2016:02:08:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:02:12:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -130.0.236.153 - - [10/Feb/2016:02:15:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -86.246.217.7 - - [10/Feb/2016:02:22:49 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -130.0.236.153 - - [10/Feb/2016:02:27:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -198.58.96.215 - - [10/Feb/2016:02:32:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:02:36:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9889 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:46 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.174.146.160 - - [10/Feb/2016:02:40:14 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36" -144.76.30.236 - - [10/Feb/2016:02:41:10 -0800] "GET /10-questions-a-arnaud-ruiz-le-plus-frenchie-des/ HTTP/1.0" 200 28471 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -80.13.10.184 - - [10/Feb/2016:02:43:17 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15521 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [10/Feb/2016:02:43:25 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:02:43:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.84.88 - - [10/Feb/2016:02:46:08 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -198.58.103.92 - - [10/Feb/2016:02:48:44 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [10/Feb/2016:02:52:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -151.80.100.107 - - [10/Feb/2016:02:54:50 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36" -151.80.100.107 - - [10/Feb/2016:02:54:51 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36" -199.19.249.196 - - [10/Feb/2016:02:57:42 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique HTTP/1.1" 301 452 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -62.210.250.66 - - [10/Feb/2016:02:58:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -178.137.93.235 - - [10/Feb/2016:03:02:45 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29380 "http://la-fa.ru/" "Opera/7.11 (Windows NT 5.1; U) [en]" -162.243.175.221 - - [10/Feb/2016:03:02:58 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -130.0.236.153 - - [10/Feb/2016:03:03:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [10/Feb/2016:03:06:18 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -80.12.51.74 - - [10/Feb/2016:03:06:30 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/11.1.66360 Mobile/13C75 Safari/600.1.4" -80.12.51.74 - - [10/Feb/2016:03:06:33 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/11.1.66360 Mobile/13C75 Safari/600.1.4" -130.0.236.153 - - [10/Feb/2016:03:12:13 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -66.249.69.57 - - [10/Feb/2016:03:18:02 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.69.57 - - [10/Feb/2016:03:18:04 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.69.57 - - [10/Feb/2016:03:18:06 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -180.76.15.10 - - [10/Feb/2016:03:19:26 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -86.246.217.7 - - [10/Feb/2016:03:22:56 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -77.135.123.159 - - [10/Feb/2016:03:26:20 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:22 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:24 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:22 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -94.23.9.215 - - [10/Feb/2016:03:28:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -193.164.197.233 - - [10/Feb/2016:03:30:08 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:03:30:19 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:03:33:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -192.99.150.96 - - [10/Feb/2016:03:36:30 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -130.0.236.153 - - [10/Feb/2016:03:39:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -82.240.200.45 - - [10/Feb/2016:03:41:45 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/category/bleu-blan-rouge/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.240.200.45 - - [10/Feb/2016:03:41:45 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/category/bleu-blan-rouge/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -209.133.111.211 - - [10/Feb/2016:03:45:31 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -66.249.69.73 - - [10/Feb/2016:03:52:37 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8909 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -178.154.189.201 - - [10/Feb/2016:03:55:18 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -178.154.189.201 - - [10/Feb/2016:03:55:23 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -178.154.189.201 - - [10/Feb/2016:03:55:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -178.154.189.201 - - [10/Feb/2016:03:55:36 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -82.145.220.154 - - [10/Feb/2016:03:56:36 -0800] "HEAD /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 285 "-" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -8.29.198.25 - - [10/Feb/2016:03:56:55 -0800] "GET /feed/ HTTP/1.1" 200 20950 "-" "Feedly/1.0 (+http://www.feedly.com/fetcher.html; like FeedFetcher-Google)" -72.167.183.56 - - [10/Feb/2016:04:00:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -2.1.201.36 - - [10/Feb/2016:04:06:32 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [10/Feb/2016:04:08:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -92.222.20.166 - - [10/Feb/2016:04:15:19 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -80.12.63.172 - - [10/Feb/2016:04:17:33 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -130.0.236.153 - - [10/Feb/2016:04:18:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -50.116.30.23 - - [10/Feb/2016:04:24:37 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:04:33:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:04:39:06 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -50.62.176.35 - - [10/Feb/2016:04:44:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.103.160 - - [10/Feb/2016:04:48:32 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -94.23.9.215 - - [10/Feb/2016:04:55:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -92.89.6.47 - - [10/Feb/2016:04:59:05 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.147.244.57 - - [10/Feb/2016:04:59:08 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -92.89.6.47 - - [10/Feb/2016:04:59:08 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.147.244.57 - - [10/Feb/2016:04:59:20 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -81.252.96.8 - - [10/Feb/2016:05:01:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 304 211 "-" "Mozilla/4.0 (compatible;)" -130.0.236.153 - - [10/Feb/2016:05:06:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25163 "http://techmeup.co/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1" 200 20280 "http://techmeup.co/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -130.0.236.153 - - [10/Feb/2016:05:09:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.55.39.27 - - [10/Feb/2016:05:10:52 -0800] "GET /page/2/ HTTP/1.1" 200 7150 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [10/Feb/2016:05:10:55 -0800] "GET /author/herve/ HTTP/1.1" 200 7394 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [10/Feb/2016:05:10:57 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9966 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.191 - - [10/Feb/2016:05:11:38 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en HTTP/1.1" 301 444 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.191 - - [10/Feb/2016:05:11:40 -0800] "GET /author/julienbarbier/ HTTP/1.1" 200 6855 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.160 - - [10/Feb/2016:05:11:43 -0800] "GET /2014/06/ HTTP/1.1" 200 6876 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.160 - - [10/Feb/2016:05:11:47 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1" 200 11663 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -90.37.150.94 - - [10/Feb/2016:05:11:50 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -130.0.236.153 - - [10/Feb/2016:05:12:00 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -207.46.13.140 - - [10/Feb/2016:05:16:20 -0800] "GET /cms.php?id_cms_category=1 HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [10/Feb/2016:05:17:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:03 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:05 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:06 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -80.13.10.184 - - [10/Feb/2016:05:18:12 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:05:18:34 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -199.19.249.196 - - [10/Feb/2016:05:19:30 -0800] "GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1" 301 388 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1" 200 2745 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:33 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -199.19.249.196 - - [10/Feb/2016:05:19:35 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a HTTP/1.1" 301 396 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -198.58.102.155 - - [10/Feb/2016:05:20:50 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -40.77.167.0 - - [10/Feb/2016:05:25:27 -0800] "GET /product.php?id_product=154 HTTP/1.1" 404 4872 "-" "msnbot-media/1.1 (+http://search.msn.com/msnbot.htm)" -5.39.17.245 - - [10/Feb/2016:05:28:17 -0800] "GET /feed/ HTTP/1.1" 200 20931 "http://techmeup.co/feed/" "SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914" -62.210.250.66 - - [10/Feb/2016:05:30:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:05:36:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -193.52.103.21 - - [10/Feb/2016:05:40:36 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/lentrepreneuriat-aventure-parsemee-echecs/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:12 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:12 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:18 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?cf_action=sync_comments&post_id=27 HTTP/1.1" 200 309 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -83.113.189.113 - - [10/Feb/2016:05:48:11 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/blog-actualite-silicon-valley/page/11/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:42.0) Gecko/20100101 Firefox/42.0" -37.187.151.111 - - [10/Feb/2016:05:53:14 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1" 200 28944 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -97.74.6.125 - - [10/Feb/2016:05:55:35 -0800] "GET /?author=1 HTTP/1.0" 301 329 "-" "-" -82.216.225.66 - - [10/Feb/2016:05:56:19 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:05:56:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:05:59:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.248.212.27 - - [10/Feb/2016:06:01:23 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)" -80.248.212.27 - - [10/Feb/2016:06:01:24 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)" -130.0.236.153 - - [10/Feb/2016:06:02:45 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -193.164.197.233 - - [10/Feb/2016:06:02:48 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:06:03:00 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.201.36 - - [10/Feb/2016:06:06:21 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -37.16.72.207 - - [10/Feb/2016:06:06:43 -0800] "GET /category/how-to/ HTTP/1.1" 200 25310 "-" "Mozilla/5.0 (compatible; memoryBot/1.21.14 +http://internetmemory.org/en/)" -37.16.72.207 - - [10/Feb/2016:06:07:24 -0800] "GET /category/think-different/ HTTP/1.1" 200 30470 "-" "Mozilla/5.0 (compatible; memoryBot/1.21.14 +http://internetmemory.org/en/)" -176.31.231.232 - - [10/Feb/2016:06:11:40 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -176.31.231.232 - - [10/Feb/2016:06:11:40 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -130.0.236.153 - - [10/Feb/2016:06:14:59 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -162.243.175.72 - - [10/Feb/2016:06:19:43 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -193.248.63.25 - - [10/Feb/2016:06:21:16 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -193.248.63.25 - - [10/Feb/2016:06:21:16 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.212.124.146 - - [10/Feb/2016:06:22:50 -0800] "POST /wp-login.php HTTP/1.1" 200 3733 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3" -46.149.69.243 - - [10/Feb/2016:06:28:29 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Linux; Android 4.4.2; GT-I9295 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.00 Yowser/2.5.3 Mobile Safari/537.36" -77.154.202.171 - - [10/Feb/2016:06:31:58 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2425 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -68.180.228.42 - - [10/Feb/2016:06:32:26 -0800] "GET /robots.txt HTTP/1.1" 200 327 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -91.103.43.50 - - [10/Feb/2016:06:35:07 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -80.13.10.184 - - [10/Feb/2016:06:38:03 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:06:38:17 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:06:38:39 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:06:44:55 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:06:50:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:06:53:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:06:59:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.160 - - [10/Feb/2016:07:02:31 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32896 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:04 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:04 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.142.23 - jez [10/Feb/2016:07:06:06 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] "GET /wp-content/uploads/2015/06/unnamed-50x50.jpg HTTP/1.1" 200 2395 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:11:15 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15537 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:11:25 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.222.20.166 - - [10/Feb/2016:07:12:31 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -66.249.69.73 - - [10/Feb/2016:07:15:03 -0800] "GET /sitemap-pt-post-2015-06.xml HTTP/1.1" 200 881 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.149.143.108 - - [10/Feb/2016:07:18:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -62.210.250.66 - - [10/Feb/2016:07:23:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:07:27:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.188.36 - - [10/Feb/2016:07:30:20 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.188.36 - - [10/Feb/2016:07:30:20 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -209.190.96.34 - - [10/Feb/2016:07:32:04 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "-" "Java/1.7.0_10" -209.190.95.66 - - [10/Feb/2016:07:32:04 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "-" "Java/1.7.0_10" -130.0.236.153 - - [10/Feb/2016:07:36:19 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -185.33.41.198 - - [10/Feb/2016:07:38:43 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:44.0) Gecko/20100101 Firefox/44.0" -185.33.41.198 - - [10/Feb/2016:07:38:43 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:44.0) Gecko/20100101 Firefox/44.0" -78.125.214.227 - - [10/Feb/2016:07:39:48 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko" -78.125.214.227 - - [10/Feb/2016:07:39:48 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko" -66.147.240.154 - - [10/Feb/2016:07:40:55 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -66.249.69.65 - - [10/Feb/2016:07:43:12 -0800] "GET /marketing-pour-developpeurs-partie-3-le-site/ HTTP/1.1" 200 10926 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -68.180.228.42 - - [10/Feb/2016:07:45:33 -0800] "GET /?p=325 HTTP/1.1" 301 394 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -193.164.197.233 - - [10/Feb/2016:07:46:58 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:07:47:10 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:07:48:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:28 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:28 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1" 200 2106 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:35 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -62.210.250.66 - - [10/Feb/2016:07:52:00 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:07:55:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:07:58:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -50.62.161.20 - - [10/Feb/2016:08:02:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -130.0.236.153 - - [10/Feb/2016:08:06:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -68.180.228.42 - - [10/Feb/2016:08:12:28 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10037 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -62.210.250.66 - - [10/Feb/2016:08:14:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -109.26.130.102 - - [10/Feb/2016:08:17:28 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.0" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.26.130.102 - - [10/Feb/2016:08:17:29 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.0" 200 115505 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.228.215.147 - - [10/Feb/2016:08:19:39 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.228.215.147 - - [10/Feb/2016:08:19:39 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10085 "http://rue89.nouvelobs.com/2015/09/29/petit-genie-francais-silicon-valley-a-legende-261418" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -207.46.13.29 - - [10/Feb/2016:08:22:19 -0800] "GET /post/96006277128/xavier-mouton-dubosc-le-developpeur-aux-mille HTTP/1.1" 301 365 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -62.210.250.66 - - [10/Feb/2016:08:24:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:08:27:48 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.96 - - [10/Feb/2016:08:32:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:27 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.16.156.124 - - [10/Feb/2016:08:36:12 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -80.13.10.184 - - [10/Feb/2016:08:37:01 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15492 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [10/Feb/2016:08:37:15 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:08:37:33 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -130.0.236.153 - - [10/Feb/2016:08:42:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.130.196.214 - - [10/Feb/2016:08:45:51 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -157.130.196.214 - - [10/Feb/2016:08:45:51 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -86.246.217.7 - - [10/Feb/2016:08:52:51 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -130.0.236.153 - - [10/Feb/2016:08:57:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -188.165.96.114 - - [10/Feb/2016:09:00:30 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.15.143.216 - - [10/Feb/2016:09:01:24 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [10/Feb/2016:09:01:37 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -157.55.39.72 - - [10/Feb/2016:09:05:25 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.16.156.125 - - [10/Feb/2016:09:05:51 -0800] "GET /post/88351742277/michael-ferranti-responsable-marketing-a-mailgun-nous HTTP/1.1" 301 317 "-" "Twitterbot/1.0" -62.210.142.23 - jez [10/Feb/2016:09:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -184.72.5.127 - - [10/Feb/2016:09:12:26 -0800] "GET /rss HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -160.33.66.122 - - [10/Feb/2016:09:16:02 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -207.46.13.174 - - [10/Feb/2016:09:19:31 -0800] "GET /sitemap-pt-post-2015-03.xml HTTP/1.1" 200 1082 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [10/Feb/2016:09:21:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:27 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -162.243.175.234 - - [10/Feb/2016:09:26:30 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -54.93.47.160 - - [10/Feb/2016:09:29:07 -0800] "GET /wp-login.php HTTP/1.1" 200 1593 "https://duckduckgo.com/html+alyaboom.com" "Mozilla/5.0 (Windows NT 6.1; rv:28.0) alyaboom.com/20100101 Firefox/28.0" -37.1.206.196 - - [10/Feb/2016:09:30:24 -0800] "POST /wp-login.php HTTP/1.1" 200 3779 "http://MARRYME-BRIDAL.RU/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:09:36:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njgqqazNyf1sa6hof-1-50x50.png HTTP/1.1" 200 4836 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:12 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:13 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -130.0.236.153 - - [10/Feb/2016:09:40:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:09:46:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.102 - - [10/Feb/2016:09:46:57 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [10/Feb/2016:09:50:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:09:53:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:18 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:18 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -207.46.13.174 - - [10/Feb/2016:09:58:25 -0800] "GET /post/109303483553/marketing-pour-developpeurs-partie-3-le-site HTTP/1.1" 301 364 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [10/Feb/2016:10:01:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -109.15.143.216 - - [10/Feb/2016:10:05:58 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [10/Feb/2016:10:06:10 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -86.235.136.133 - - [10/Feb/2016:10:06:41 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06)" -86.235.136.133 - - [10/Feb/2016:10:06:51 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06)" -198.58.103.28 - - [10/Feb/2016:10:08:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -157.55.39.245 - - [10/Feb/2016:10:19:19 -0800] "GET /sitemap1.xml HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:56 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:58 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:22:00 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -54.93.41.74 - - [10/Feb/2016:10:29:40 -0800] "GET /wp-login.php HTTP/1.1" 200 1593 "https://duckduckgo.com/html+hnwatcher.com" "Mozilla/5.0 (Windows NT 6.0; rv:29.0) hnwatcher.com/20120101 Firefox/29.0" -216.218.147.195 - - [10/Feb/2016:10:35:13 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36" -216.218.147.195 - - [10/Feb/2016:10:35:13 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:10:36:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.137.93.235 - - [10/Feb/2016:10:46:01 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29433 "http://autotop.com.ua/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)" -207.46.13.174 - - [10/Feb/2016:10:54:06 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -85.168.120.64 - - [10/Feb/2016:10:56:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:10:56:07 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:10:56:17 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -85.168.120.64 - - [10/Feb/2016:10:56:18 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -66.249.66.38 - - [10/Feb/2016:11:01:21 -0800] "GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.1" 200 11529 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nga5swbqRY1sygmpd-50x50.jpg HTTP/1.1" 200 1983 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -62.210.142.23 - jez [10/Feb/2016:11:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [10/Feb/2016:11:11:57 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -180.76.15.26 - - [10/Feb/2016:11:19:52 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -89.38.150.47 - - [10/Feb/2016:11:20:22 -0800] "GET /wp-login.php?registration=disabled HTTP/1.1" 200 1562 "-" "Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20100101 Firefox/32.0" -54.166.27.248 - - [10/Feb/2016:11:30:34 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)" -2.1.201.36 - - [10/Feb/2016:11:36:51 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -84.7.133.128 - - [10/Feb/2016:11:39:24 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1" 200 9023 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:27 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:28 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:32 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/?cf_action=sync_comments&post_id=21 HTTP/1.1" 200 308 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -162.243.175.24 - - [10/Feb/2016:11:41:05 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.250.66 - - [10/Feb/2016:11:45:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:11:48:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:11:52:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:11:55:59 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:12:02:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:12:03:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:12:06:18 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -31.165.24.46 - - [10/Feb/2016:12:09:36 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1" 200 8974 "https://www.google.ch/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1" 200 2471 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -62.210.250.66 - - [10/Feb/2016:12:11:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.115.133 - - [10/Feb/2016:12:12:16 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.0" 200 26506 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.115.133 - - [10/Feb/2016:12:12:39 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.0" 200 9840 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.250.66 - - [10/Feb/2016:12:14:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:12:19:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -86.246.217.7 - - [10/Feb/2016:12:22:53 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -85.168.120.64 - - [10/Feb/2016:12:25:36 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:25:39 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:25:47 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -85.168.120.64 - - [10/Feb/2016:12:25:51 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -85.168.120.64 - - [10/Feb/2016:12:26:48 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -85.168.120.64 - - [10/Feb/2016:12:26:50 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:26:55 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:27:03 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:27:07 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:12:31:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:12:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -85.168.120.64 - - [10/Feb/2016:12:37:50 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15541 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -85.168.120.64 - - [10/Feb/2016:12:37:51 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -85.168.120.64 - - [10/Feb/2016:12:37:51 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1" 200 2099 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -85.168.120.64 - - [10/Feb/2016:12:37:52 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -62.210.250.66 - - [10/Feb/2016:12:39:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -162.243.175.232 - - [10/Feb/2016:12:47:07 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -40.77.167.90 - - [10/Feb/2016:12:49:00 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -178.137.17.196 - - [10/Feb/2016:12:52:21 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29417 "http://purchasepillsnorx.com/" "Opera/9.00 (Windows NT 5.1; U; ru)" -86.246.217.7 - - [10/Feb/2016:12:52:51 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -66.249.66.38 - - [10/Feb/2016:12:55:52 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9699 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.96.215 - - [10/Feb/2016:13:04:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.222.20.166 - - [10/Feb/2016:13:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:34 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:39 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -66.249.93.120 - - [10/Feb/2016:13:18:19 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -68.180.228.42 - - [10/Feb/2016:13:26:50 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au HTTP/1.1" 301 389 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -37.1.206.196 - - [10/Feb/2016:13:35:09 -0800] "POST /wp-login.php HTTP/1.1" 200 3779 "http://MARRYME-BRIDAL.RU/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -86.167.117.121 - - [10/Feb/2016:13:35:21 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -37.9.118.28 - - [10/Feb/2016:13:35:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -178.255.215.65 - - [10/Feb/2016:13:41:35 -0800] "GET /robots.txt HTTP/1.1" 200 386 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -192.241.141.195 - - [10/Feb/2016:13:45:38 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -86.246.217.7 - - [10/Feb/2016:13:52:51 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -92.85.52.108 - - [10/Feb/2016:13:56:36 -0800] "GET / HTTP/1.1" 200 33403 "-" "Java/1.6.0_04" -62.210.250.66 - - [10/Feb/2016:13:56:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -92.85.52.108 - - [10/Feb/2016:13:56:43 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic HTTP/1.1" 301 406 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:46 -0800] "GET /feed HTTP/1.1" 301 428 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:48 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique HTTP/1.1" 301 451 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:50 -0800] "GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin HTTP/1.1" 301 406 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:53 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur HTTP/1.1" 301 404 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:54 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 392 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:58 -0800] "GET /wp-admin/admin-ajax.php HTTP/1.1" 200 247 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:00 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:02 -0800] "GET /de-la-nasa-a-checkr-comment-daniel-yanisse/ HTTP/1.1" 200 28410 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:05 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 391 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:07 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:10 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/apple-touch-icon.png HTTP/1.1" 404 15494 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:15 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29447 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:18 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:20 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 30509 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:22 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:25 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 25508 "-" "Java/1.6.0_04" -62.210.250.66 - - [10/Feb/2016:13:59:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -178.137.93.235 - - [10/Feb/2016:14:00:26 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29381 "http://mriyadh.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)" -62.210.250.66 - - [10/Feb/2016:14:02:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:14:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [10/Feb/2016:14:08:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3422 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -62.210.250.66 - - [10/Feb/2016:14:13:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.121 - - [10/Feb/2016:14:15:15 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -62.210.250.66 - - [10/Feb/2016:14:19:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:14:24:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:28 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/?cf_action=sync_comments&post_id=294 HTTP/1.1" 200 309 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -62.210.250.66 - - [10/Feb/2016:14:28:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:14:30:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.28 - - [10/Feb/2016:14:34:58 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [10/Feb/2016:14:38:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.121 - - [10/Feb/2016:14:44:46 -0800] "GET /adrien-duermael-pixowl-et-lindustrie-particuliere-du HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.103.36 - - [10/Feb/2016:14:52:45 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:11 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.199.87.229 - - [10/Feb/2016:14:55:40 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:26 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -207.46.13.121 - - [10/Feb/2016:15:00:07 -0800] "GET /adrien-duermael-pixowl-et-lindustrie-particuliere-du HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.121 - - [10/Feb/2016:15:02:42 -0800] "GET /guillaume-charmes-meilleur-developpeur-du-monde HTTP/1.1" 301 444 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -86.246.152.226 - - [10/Feb/2016:15:07:47 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Reeder/3000.09.01 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -82.237.33.174 - - [10/Feb/2016:15:10:42 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [10/Feb/2016:15:10:53 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -107.189.60.73 - - [10/Feb/2016:15:12:19 -0800] "HEAD / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (compatible; PrivacyAwareBot/1.1; +http://www.privacyaware.org)" -107.189.60.73 - - [10/Feb/2016:15:12:22 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://alyaboom.com/" "Mozilla/5.0 (X11;) Firefox/38.0" -107.189.60.73 - - [10/Feb/2016:15:12:22 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://alyaboom.com/" "Mozilla/5.0 (X11;) Firefox/38.0" -69.195.124.123 - - [10/Feb/2016:15:16:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -180.76.15.161 - - [10/Feb/2016:15:19:06 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -178.255.215.65 - - [10/Feb/2016:15:26:32 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au/ HTTP/1.1" 200 8242 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -62.149.143.108 - - [10/Feb/2016:15:27:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -195.154.172.59 - - [10/Feb/2016:15:32:45 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1" 200 8844 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-50x50.jpg HTTP/1.1" 200 2376 "http://hnwathcher.com/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://hnwathcher.com/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9987 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24078 "http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2457 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n8dyo0TSCJ1sygmpd-50x50.jpg HTTP/1.1" 200 2374 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] "GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1" 200 3414 "http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:00 -0800] "GET /adieu-tumblr/ HTTP/1.1" 200 7231 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://hnwathcher.com/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1" 200 2115 "http://hnwathcher.com/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -192.99.150.96 - - [10/Feb/2016:15:36:43 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -82.145.223.103 - - [10/Feb/2016:15:40:16 -0800] "GET /wp-content/uploads/2015/06/unnamed.jpg HTTP/1.1" 200 112056 "-" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -40.77.167.90 - - [10/Feb/2016:15:44:28 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10090 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.103.92 - - [10/Feb/2016:15:49:31 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -119.188.4.3 - - [10/Feb/2016:15:56:45 -0800] "GET /muieblackcat HTTP/1.1" 404 4835 "-" "-" -119.188.4.3 - - [10/Feb/2016:15:56:50 -0800] "GET //mysqladmin/scripts/setup.php HTTP/1.1" 301 500 "-" "-" -198.58.102.155 - - [10/Feb/2016:15:58:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -68.180.228.42 - - [10/Feb/2016:16:03:42 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/feed/ HTTP/1.1" 200 893 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -81.252.96.8 - - [10/Feb/2016:16:12:47 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 304 187 "-" "Mozilla/4.0 (compatible;)" -91.121.211.59 - - [10/Feb/2016:16:13:36 -0800] "GET /marketing-pour-developpeurs-partie-2/ HTTP/1.0" 200 9343 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -91.121.112.142 - - [10/Feb/2016:16:13:48 -0800] "GET /post/86170645883/steve-marx-developer-advocate-dropbox HTTP/1.0" 301 275 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -91.121.112.142 - - [10/Feb/2016:16:13:57 -0800] "GET /office-tour-de-rackspace-san-francisco-avec HTTP/1.0" 301 403 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:39 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -66.249.66.41 - - [10/Feb/2016:16:24:09 -0800] "GET /florent-crivello-ingenieur-ios-a-kwarter/ HTTP/1.1" 200 8618 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -176.151.29.143 - - [10/Feb/2016:16:31:55 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10144 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb1bncXtIP1r792z4-50x50.jpg HTTP/1.1" 200 2531 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:58 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:59 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:38:36 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 9503 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:40:50 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 9398 "http://hnwathcher.com/techmeup-le-monde-merveilleux-de-la-tech/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -198.58.96.215 - - [10/Feb/2016:16:43:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -176.151.29.143 - - [10/Feb/2016:16:45:42 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://hnwathcher.com/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -144.76.29.162 - - [10/Feb/2016:16:52:07 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -45.55.134.13 - - [10/Feb/2016:16:54:45 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36" -45.55.134.13 - - [10/Feb/2016:16:54:45 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36" -162.243.175.81 - - [10/Feb/2016:16:59:49 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.142.23 - jez [10/Feb/2016:17:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.66.44 - - [10/Feb/2016:17:08:22 -0800] "GET /2014/09/ HTTP/1.1" 200 6019 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.188.36 - - [10/Feb/2016:17:12:44 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.188.36 - - [10/Feb/2016:17:12:44 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -209.190.95.226 - - [10/Feb/2016:17:14:11 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "-" "Java/1.7.0_10" -23.23.19.184 - - [10/Feb/2016:17:15:28 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)" -94.73.142.106 - - [10/Feb/2016:17:16:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.102.155 - - [10/Feb/2016:17:28:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -5.9.85.4 - - [10/Feb/2016:17:38:46 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -199.119.124.45 - - [10/Feb/2016:17:41:32 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=cab69af8d42b04c85d91e979)" -157.55.39.82 - - [10/Feb/2016:17:42:44 -0800] "GET /index.php?controller=product&id_product=790 HTTP/1.1" 301 436 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.16.156.124 - - [10/Feb/2016:17:43:47 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10043 "-" "Twitterbot/1.0" -94.19.55.61 - - [10/Feb/2016:17:53:05 -0800] "GET / HTTP/1.1" 200 33403 "https://www.google.ru" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:18:06:19 -0800] "GET /rss HTTP/1.1" 304 163 "http://hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -162.243.175.176 - - [10/Feb/2016:18:10:53 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -149.254.250.232 - - [10/Feb/2016:18:13:39 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; U; Android 4.1.2; en-gb; SAMSUNG GT-I9100/I9100XWMS2 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -149.254.250.232 - - [10/Feb/2016:18:13:39 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; U; Android 4.1.2; en-gb; SAMSUNG GT-I9100/I9100XWMS2 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -198.58.102.49 - - [10/Feb/2016:18:17:24 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -54.197.178.93 - - [10/Feb/2016:18:33:46 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)" -178.137.17.196 - - [10/Feb/2016:18:39:53 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29485 "http://www.auto-moto-elektronika.cz/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; KKman2.0)" -157.55.39.218 - - [10/Feb/2016:18:45:55 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -185.130.5.207 - - [10/Feb/2016:18:49:13 -0800] "GET //admin/pma/scripts/setup.php HTTP/1.1" 301 499 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:15 -0800] "GET //myadmin/scripts/setup.php HTTP/1.1" 301 497 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:16 -0800] "GET //phpadmin/scripts/setup.php HTTP/1.1" 301 498 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:17 -0800] "GET //xampp/phpmyadmin/scripts/setup.php HTTP/1.1" 301 506 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:19 -0800] "GET //phpMyAdmin-2/scripts/setup.php HTTP/1.1" 301 502 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:20 -0800] "GET //blog/phpmyadmin/scripts/setup.php HTTP/1.1" 301 505 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:21 -0800] "GET //php/phpmyadmin/scripts/setup.php HTTP/1.1" 301 504 "-" "-" -91.224.140.223 - - [10/Feb/2016:18:54:41 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -62.210.142.23 - jez [10/Feb/2016:19:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [10/Feb/2016:19:12:06 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -180.76.15.19 - - [10/Feb/2016:19:19:22 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -2.1.201.36 - - [10/Feb/2016:19:36:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.99.82 - - [10/Feb/2016:19:37:15 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -50.116.30.23 - - [10/Feb/2016:19:45:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -209.133.111.211 - - [10/Feb/2016:19:53:16 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/0-what-is-my-pid b/alx-system_engineering-devops-main/0x05-processes_and_signals/0-what-is-my-pid deleted file mode 100755 index 9fa45bf..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/0-what-is-my-pid +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -# my pid - -sleep 5 & -echo "$!" diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/1-list_your_processes b/alx-system_engineering-devops-main/0x05-processes_and_signals/1-list_your_processes deleted file mode 100755 index cdf47d2..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/1-list_your_processes +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -# list all my currently running processes - -# source: https://linuxize.com/post/ps-command-in-linux/ -ps -auxf diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/100-process_and_pid_file b/alx-system_engineering-devops-main/0x05-processes_and_signals/100-process_and_pid_file deleted file mode 100755 index 73b30f0..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/100-process_and_pid_file +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash -# Process and PID file - -file="/var/run/myscript.pid" - -if [ ! -e "$file" ]; then - touch "$file" -fi - -sleep 2 & - -echo "$!" > "$file" - -# prints I hate the kill command, deletes the file and exits when receiving a SIGTERM or SIGQUIT signal -trap 'echo "I hate the kill command"; rm "$file"; exit' SIGTERM SIGQUIT - -# prints Y U no love me?! when receiving a SIGINT signal -trap "echo Y U no love me?!" SIGINT - -while true; do - echo "To infinity and beyond" - sleep 2 -done diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/101-manage_my_process b/alx-system_engineering-devops-main/0x05-processes_and_signals/101-manage_my_process deleted file mode 100755 index fb851f0..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/101-manage_my_process +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash -# manages manage_my_process by either starting it, stopping it or restarting it. - -command="$1" - -if [ -z "$command" ]; then - echo "Usage: manage_my_process {start|stop|restart}" - exit -fi - -if [ "$command" == "start" ]; then - - bash ./manage_my_process & - echo "$!" > /var/run/my_process.pid - echo "manage_my_process started" - -elif [ "$command" == "stop" ]; then - [ -e "/var/run/my_process.pid" ] && pkill -f './manage_my_process' && rm /var/run/my_process.pid - echo "manage_my_process stopped" - -elif [ "$command" == "restart" ]; then - - "$0" stop >& /dev/null - "$0" start >& /dev/null - echo "manage_my_process restarted" - -else - echo "Usage: manage_my_process {start|stop|restart}" -fi diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/102-zombie.c b/alx-system_engineering-devops-main/0x05-processes_and_signals/102-zombie.c deleted file mode 100644 index efb106b..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/102-zombie.c +++ /dev/null @@ -1,38 +0,0 @@ -#include "stdio.h" -#include "stdlib.h" -#include "unistd.h" - -/** - * infinite_while - a function that runs forever and returns nothing - * Return: 0 in the end -*/ -int infinite_while(void) -{ - while (1) - { - sleep(1); - } - return (0); -} - -/** - * main - the entry to a program that creats 5 zombie process - * Return: 0 on sucess -*/ -int main(void) -{ - int children_processes = 0; - pid_t pid; - - while (children_processes < 5) - { - pid = fork(); - if (!pid) - break; - printf("Zombie process created, PID: %i\n", (int)pid); - children_processes++; - } - if (pid != 0) - infinite_while(); - return (0); -} diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/2-show_your_bash_pid b/alx-system_engineering-devops-main/0x05-processes_and_signals/2-show_your_bash_pid deleted file mode 100755 index 9d6a2d1..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/2-show_your_bash_pid +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# list all bash processes -# shellcheck disable=SC2009 -ps -auxf | grep bash diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/3-show_your_bash_pid_made_easy b/alx-system_engineering-devops-main/0x05-processes_and_signals/3-show_your_bash_pid_made_easy deleted file mode 100755 index 7502fb9..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/3-show_your_bash_pid_made_easy +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# PID made easy - -pgrep -l bash diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/4-to_infinity_and_beyond b/alx-system_engineering-devops-main/0x05-processes_and_signals/4-to_infinity_and_beyond deleted file mode 100755 index bfbf626..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/4-to_infinity_and_beyond +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash -# To infinity and beyond - -while true; do - echo "To infinity and beyond" - sleep 2 -done diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/5-dont_stop_me_now b/alx-system_engineering-devops-main/0x05-processes_and_signals/5-dont_stop_me_now deleted file mode 100755 index 3325f54..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/5-dont_stop_me_now +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Don't stop me now - -pgrep -f 4-to_infinity_and_beyond | xargs kill diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/6-stop_me_if_you_can b/alx-system_engineering-devops-main/0x05-processes_and_signals/6-stop_me_if_you_can deleted file mode 100755 index 97a10bb..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/6-stop_me_if_you_can +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Stop me if you can - -pkill -f 4-to_infinity_and_beyond diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/67-stop_me_if_you_can b/alx-system_engineering-devops-main/0x05-processes_and_signals/67-stop_me_if_you_can deleted file mode 100755 index 9a463e2..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/67-stop_me_if_you_can +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Stop me if you can - -pkill -f 7-highlander diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/7-highlander b/alx-system_engineering-devops-main/0x05-processes_and_signals/7-highlander deleted file mode 100755 index fcf216b..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/7-highlander +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash -# Highlander - -# print I am invincible!!! when receiving a SIGTERM signal -trap "echo I am invincible!!!" SIGTERM - -while true; do - echo "To infinity and beyond" - sleep 2 -done; diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/8-beheaded_process b/alx-system_engineering-devops-main/0x05-processes_and_signals/8-beheaded_process deleted file mode 100755 index 50ee3d6..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/8-beheaded_process +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Beheaded process - -pgrep -f 7-highlander | xargs kill -9 diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/README.md b/alx-system_engineering-devops-main/0x05-processes_and_signals/README.md deleted file mode 100644 index 8df3a2e..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/README.md +++ /dev/null @@ -1,92 +0,0 @@ -# 0x05. Processes and signals - -## Resource - -- [Linux PID](http://www.linfo.org/pid.html) -- [Linux process](https://www.thegeekstuff.com/2012/03/linux-processes-environment/) -- [Linux signal](https://www.thegeekstuff.com/2012/03/linux-signals-fundamentals/) - -## Tasks - -
-0. What is my PID
-image -
- -
-1. List your processes
-image -
- -
-2. Show your Bash PID
-image -
- -
-3. Show your Bash PID made easy
-image -
- -
-4. To infinity and beyond
-image -
- -
-5. Don't stop me now!
-image -
- -
-6. Stop me if you can
-image -
- -
-7. Highlander
-image -
- -
-8. Beheaded process
-image -
- -
-9. Beheaded process
-image -
- -
-10. Process and PID file
-image -
- -
-11. Manage my process
-image - -
- -
-12. Zombie
-image - -
diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/manage_my_process b/alx-system_engineering-devops-main/0x05-processes_and_signals/manage_my_process deleted file mode 100755 index cff089d..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/manage_my_process +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash -# well well well - -file="/tmp/my_process" - -while true; do - echo "I am alive!" >> "$file" - sleep 2 -done diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/0-simply_match_school.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/0-simply_match_school.rb deleted file mode 100755 index a4b1aee..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/0-simply_match_school.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/School/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/1-repetition_token_0.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/1-repetition_token_0.rb deleted file mode 100755 index 7da99e3..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/1-repetition_token_0.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hbt{2,5}n/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/100-textme.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/100-textme.rb deleted file mode 100755 index 78dc1a0..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/100-textme.rb +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env ruby - -from = ARGV[0].scan(/from:(.*?)\]/) -to = ARGV[0].scan(/to:(.*?)\]/) -flags = ARGV[0].scan(/flags:(.*?)\]/) -puts [from, to, flags].join(',') diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/2-repetition_token_1.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/2-repetition_token_1.rb deleted file mode 100755 index 69431fa..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/2-repetition_token_1.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hb?tn/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/3-repetition_token_2.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/3-repetition_token_2.rb deleted file mode 100755 index c7144f2..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/3-repetition_token_2.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hbt+n/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/4-repetition_token_3.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/4-repetition_token_3.rb deleted file mode 100755 index 7028689..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/4-repetition_token_3.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hbt*n/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/5-beginning_and_end.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/5-beginning_and_end.rb deleted file mode 100755 index ed5ad3e..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/5-beginning_and_end.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/^h.n$/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/6-phone_number.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/6-phone_number.rb deleted file mode 100755 index 84a6cb1..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/6-phone_number.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/^\d{10}$/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb deleted file mode 100755 index f90788a..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/[A-Z]*/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/README.md b/alx-system_engineering-devops-main/0x06-regular_expressions/README.md deleted file mode 100644 index b3fe37f..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/README.md +++ /dev/null @@ -1,78 +0,0 @@ -# 0x06. Regular expression - -## Resource - -
-Regular Expression
-image - -
- -- [Regular expressions - basics](https://www.slideshare.net/neha_jain/introducing-regular-expressions) -- [Regular expressions - advanced](https://www.slideshare.net/neha_jain/advanced-regular-expressions-80296518) -- [Rubular is your best friend](https://rubular.com/) -- [Use a regular expression against a problem: now you have 2 problems](https://blog.codinghorror.com/regular-expressions-now-you-have-two-problems/) -- [Learn Regular Expressions with simple, interactive exercises](https://regexone.com/) - -## Tasks - -
-0. Simply matching School
-image -
- -
-1. Repetition Token #0
-image -
- -
-2. Repetition Token #1
-image -
- -
-3. Repetition Token #2
-image -
- -
-4. Repetition Token #3
-image -
- -
-5. Not quite HBTN yet
-image -
- -
-6. Call me maybe
-image -
- -
-7. OMG WHY ARE YOU SHOUTING?
-image -
- -
-8. Textme
-image - -
diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/text_messages.log b/alx-system_engineering-devops-main/0x06-regular_expressions/text_messages.log deleted file mode 100644 index 1074e1d..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/text_messages.log +++ /dev/null @@ -1,96279 +0,0 @@ -Feb 1 11:00:00 ip-10-0-0-11 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-10 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272713208] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:19148265919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862524] [to:+13479542463] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970624] [to:13479163186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303400233] [to:+12342314220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740488] [to:+18638557705] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428689] [to:19043309587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415301908] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403390931] [to:+13474863238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-20 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447919968938] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672614181] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064037189] [to:+13024002454] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507197] [to:14843533218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722134307] [to:16183351715] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022186518] [to:+17026747598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289325] [to:14136574237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404638755] [to:19545043366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-10 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737959548] [to:+13479977009] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-10 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-10 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298987] [to:18322863802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-10 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492198] [to:18632068741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678434280] [to:+13476762800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197192247] [to:+19027031529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-11 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158530] [to:19204181571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052980921] [to:+17027181096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12259066449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336170] [to:15207099023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-11 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0201] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301606] [to:17249544312] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:15065430827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736100222] [to:+19086597034] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:15065430827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092934625] [to:19097233282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031905] [to:19132750260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181259] [to:17753428813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:14048576556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17788558569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950423] [to:13045532810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748237935] [to:+19783231466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408390] [to:19377274909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042435069] [to:+16474912464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-21 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602050749] [to:+13234865496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185723417] [to:+15817009274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014058044] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164455361] [to:+19177731624] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047759407] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752762175] [to:+17027182733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816830217] [to:+12816034256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328489574] [to:+12816433955] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652479178] [to:+12606337306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043803536] [to:+12048181024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787016716] [to:+13476762800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707213250] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-20 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447834904898] [to:+447451223046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298888] [to:16614979238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077706] [to:12403380952] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024193366] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995997] [to:19084726225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488374] [to:19255704350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873551150] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327015] [to:17045247205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063042963] [to:+18678883833] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-10 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039186591] [to:+13478966204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400640] [to:14137770749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523750255] [to:+19199163958] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602656064] [to:+14406588866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077364] [to:15144099074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17022015982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-20 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223142] [to:+447581423589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777591] [to:12605192924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168164485] [to:+13475185759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500034C0201] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787996380] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095162] [to:15145940452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-21 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046745354] [to:+16049019170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18084681132] [to:18089377119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036179843] [to:+15874097968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168164485] [to:+13475185759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500034C0202] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086708949] [to:+12135296297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210951] [to:17346720555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017644] [to:18055393293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019170] [to:16046745354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142670324] [to:15135464525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294339] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13046202415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034593017] [to:+18133081488] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497317] [to:19174031599] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19024814189] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154233959] [to:+18133083192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-11 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602051375] [to:+13055018393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-21 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241130] [to:+447511097127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746450] [to:17854921034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322349483] [to:+17185049850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788329794] [to:+16025004726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654311604] [to:+12602755380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052980921] [to:+17027181096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097700643] [to:+17097004811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-11 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292515934] [to:+18508950587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:19148265919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314025] [to:18502418057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16122200837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437046] [to:15193796257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-21 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333864] [to:19312690959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242867536] [to:16204173218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:14437400936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617792028] [to:+15103354861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438559222] [to:+14156495279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546968651] [to:+19544594838] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927130] [to:17147707241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503073] [to:13372221292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159229807] [to:+16197324724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635930814] [to:+15635388332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18056288730] [to:17608586455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356148] [to:14237074995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545586508] [to:+13475188267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158482] [to:19209032554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424456] [to:+12342312505] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12542338287] [to:12547271979] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602656064] [to:+14406588866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18125300624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018425278] [to:19012681764] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064008711] [to:12538764327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044682501] [to:+14043411996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962387] [to:18605016706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313029671] [to:+17277679463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740475] [to:+13476762798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863127476] [to:+13233366395] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626099044] [to:+19015042554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485115] [to:12513756633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472363352] [to:+16474910817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995690] [to:19512922787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-21 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622725] [to:+447412913438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17807125668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068506474] [to:+15068034491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14699782274] [to:+19404634435] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437393446] [to:+14353391490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-10 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-10 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16138032854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873551150] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138032854] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-11 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212857] [to:17856402028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-20 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223142] [to:+447581423589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053581578] [to:+12497009418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048808779] [to:+16042593607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009274] [to:14185723417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384740] [to:13135443543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733160787] [to:+14692967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-21 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286768543] [to:+16783941572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605142786] [to:+16614024345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394256] [to:12169249469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-21 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447702313849] [to:+447451231785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403921386] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733160787] [to:+14692967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347528] [to:13143662488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034747763] [to:+19033076562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660626] [to:15026048035] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787553041] [to:+16788199560] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:16467919914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789659669] [to:+19785336100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:15099549046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049723990] [to:+14242835182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146255566] [to:+14387930985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:15099549046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577540991] [to:+13476908726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004388] [to:13062903749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867978887] [to:+17736668818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-20 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869369] [to:16073311514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735378602] [to:+17736668703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194290713] [to:+12262415982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086147] [to:16626034041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:13024193366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376187] [to:10015175740470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-11 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438455308] [to:+19172834783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555101] [to:19717709812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17607157532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-11 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:18066546577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-11 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108598113] [to:+19292009028] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:19 ip-10-0-64-11 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:19 ip-10-0-64-10 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:19 ip-10-0-64-10 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477535440] [to:+19172319370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-11 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-21 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451229455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479714194] [to:15732866969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-11 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-10 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122203538] [to:+12139359447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-10 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-11 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-10 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488228] [to:15415305654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-10 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-10 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400640] [to:14134892265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824547] [to:18622798079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208099800] [to:+17205852394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-11 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-11 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153024707] [to:+13126145548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-11 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:13128664683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652023296] [to:+18653473349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746450] [to:17854921034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491023] [to:15597956575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794776] [to:13179924369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444526] [to:13178280520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600434] [to:16626558035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077706] [to:12403380952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605188146] [to:+13479978408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17692747293] [to:+14242525522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026882572] [to:+17279987124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472459052] [to:+13479977968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17168616710] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145435] [to:13126149086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612909416] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145940452] [to:+14388095162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17162085991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618929040] [to:+18638553196] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605188146] [to:+13479978408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043628] [to:19022937419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063812902] [to:+17786541725] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567701926] [to:+19172592230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092295518] [to:+14086182127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323502] [to:19059283570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785421891] [to:+12139359065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360175] [to:15092022819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655090807] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-10 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437417093] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-10 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-10 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:17196408440] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-10 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-10 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803646879] [to:+13479372591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-10 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078202142] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354390] [to:17083100748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16823195544] [to:+18177559985] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875858901] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782344952] [to:+14144006681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17029294339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969338] [to:17043094768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042296848] [to:+15068040192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062918] [to:16157568446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13196016284] [to:+13199835188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778162] [to:19178613817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633216780] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735873231] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197796565] [to:+12262716744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18085905628] [to:+17027478360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-11 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174346580] [to:+13478020326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126290297] [to:+18326502986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179924369] [to:+19142794776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789334] [to:13047107464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+17207291099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266053] [to:17199941670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16138032854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233366395] [to:17863127476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609218157] [to:+18609710122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384740] [to:13135443543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173895833] [to:+14243363147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000661] [to:15875886289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032240942] [to:+12138223746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EA0201] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096680939] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:18199624525] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764410] [to:15133701126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345641232] [to:+13477690201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:12369935860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-10 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242867536] [to:16206551691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563573481] [to:+18328042553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474445610] [to:+13479471092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146394489] [to:+14146005237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-20 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508026174] [to:+18192011543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384740] [to:13135443543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045532810] [to:+12132950423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17855778436] [to:+13478968975] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-20 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-20 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447596412172] [to:+447418331764] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097697477] [to:+16474951899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084068641] [to:+13479801427] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235722569] [to:+12135876044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044682501] [to:+14043411996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079528788] [to:+18108528715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19032130535] [to:19403374507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786531033] [to:16048807093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467677629] [to:15182904332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613762791] [to:+19093431018] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109101459] [to:16105045041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19899922646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605016706] [to:+13477962387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587211] [to:14403811886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862153] [to:13479093157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003EA0202] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910817] [to:16472363352] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046374094] [to:+19047587490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243520] [to:15406340517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868437] [to:13469003900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-10 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:16018743313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-11 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908726] [to:17577540991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-11 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784065] [to:18032872293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:34 ip-10-0-0-10 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-11 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:34 ip-10-0-0-11 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212857] [to:17856402028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:34 ip-10-0-0-11 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-11 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249469] [to:+12162394256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-10 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-11 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-10 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-10 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691522] [to:15177409389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-21 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949885001] [to:+447451232943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-20 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447914394989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-10 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032240942] [to:+12138223746] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612469761] [to:+12139298888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-10 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703746136] [to:+16783941417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-10 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123633247] [to:+12134785638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086468961] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065400032] [to:+15068008860] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065568323] [to:+12069469067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126290297] [to:+18326502986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137688053] [to:+14158532808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185723417] [to:+15817009274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757032084] [to:+19172610625] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:12345641232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634993] [to:16085673250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873389595] [to:+15874097949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945342] [to:14384984686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:17163787914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209068120] [to:+15204333433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19137250312] [to:+18653209476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756595] [to:19286144764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-20 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:17163787914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026073889] [to:+13024398480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376229] [to:18645254496] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046202415] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018334001] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18063335900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889733] [to:13175137664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413007] [to:19564381260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596458992] [to:+17077502912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592884245] [to:+12138221916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197796565] [to:+12262716744] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18473430471] [to:+18477568669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316559780] [to:+19018422448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958964] [to:14025781979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995116] [to:13238344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597956575] [to:+14156491023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127920003] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995116] [to:13238344617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14383451357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320060] [to:13236499521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156170394] [to:+12627774077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-21 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581423589] [to:+447451223142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783679326] [to:+13479067898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447855724128] [to:+14158539777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137822018] [to:+12482068388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768700153] [to:+13476677111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-11 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546816679] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-10 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024923084] [to:+15028041159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558280] [to:16514449100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16148153992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799595] [to:16623867708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472842626] [to:+13658001519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-20 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330519] [to:+447919968938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082549] [to:15169670421] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097490452] [to:+17097019101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19737278708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233710239] [to:+16125021182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506179735] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019519532] [to:+12016215365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488471] [to:15416137779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691756] [to:15074004283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077389282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198102] [to:+19172751143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024155115] [to:+12136349038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805912999] [to:+13103470120] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198102] [to:+19172751143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173296833] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875858901] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168289822] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005055] [to:14044472216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613762791] [to:+19093431018] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12165133728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-10 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153850435] [to:+14843977201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846149] [to:17329840777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-21 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447746878103] [to:+447451249229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265040857] [to:+12267983065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065705339] [to:+13479805404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873231799] [to:14035932706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19899922646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154590297] [to:+12679232812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527193] [to:18102921711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733039] [to:13659491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778162] [to:19735341343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315959] [to:18437438342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078104] [to:14388036635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062294043] [to:+15068029604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079379280] [to:+13479789293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:15053850718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040626] [to:+16692223797] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028302162] [to:+16475567404] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065070] [to:13606705514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233366111] [to:16613707095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470888] [to:19104746974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478499438] [to:+19177370309] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17655090807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258364] [to:18188241344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125455480] [to:+18126709273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427504] [to:10636425552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008854] [to:13478220308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024266722] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605402] [to:19283495865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144177218] [to:+16692223797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092934224] [to:+15817008413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:16477610874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-20 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232859] [to:+447401128232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16477924552] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:15633216780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477097922] [to:+16474941589] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927989] [to:14384961763] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419613103] [to:+18629551706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849036254] [to:+16465136354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079470430] [to:+19172592230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525522] [to:17692747293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-10 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162675984] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-10 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127920003] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297550] [to:17609051394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075511] [to:15148870342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009274] [to:14185723417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-11 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996178] [to:19704249476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941417] [to:17703746136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348515175] [to:+13479319365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133718614] [to:+16467691379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-21 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212925] [to:+447985120559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968975] [to:17855778436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18085905628] [to:+17027478360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452757515] [to:+18453632660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367451587] [to:+13366452036] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407355180] [to:+18173637168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158482] [to:19209032554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187071863] [to:+13476673110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320060] [to:13236499521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508005618] [to:+16475567182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339112] [to:19168036093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523421211] [to:+13524150282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549606] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093310629] [to:+15108244250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127628] [to:+19142060462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284858964] [to:+19172834340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082057171] [to:+19086597273] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152765043] [to:+13476969338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-11 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258479] [to:12092513137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838988] [to:14235448688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018877470] [to:+15513336948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-11 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:15133485878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147707241] [to:+17145927130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538764327] [to:+12064008711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635388332] [to:15635930814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082057171] [to:+19086597273] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028403124] [to:+16139092407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:18325312919] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000661] [to:15875886289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412261797] [to:+19703158825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013384523] [to:+14044811503] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251509] [to:19724087808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812048] [to:18327282815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559335] [to:16467631400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595130421] [to:+18639492018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067268430] [to:+12138228203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477163730] [to:+16474963947] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353661] [to:18133602452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083919856] [to:+15099550816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364647] [to:+12048086978] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312238837] [to:+18312188963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587493] [to:12154397156] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387930985] [to:15146255566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491023] [to:15597956575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-11 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032C0301] -Feb 1 11:00:54 ip-10-0-0-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043043035] [to:+18046246508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412105] [to:19786756713] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040113] [to:+17028158270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158009272] [to:+12138223823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434091720] [to:+17727740686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0202] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753127257] [to:+15754483723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512531145] [to:+16317705442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886921] [to:+18133208530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086468961] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808439036] [to:+13072138974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024193366] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412105] [to:19786756713] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785536558] [to:+14706731871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263763030] [to:+12267793908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562529460] [to:+12138733039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19419200036] [to:+19418705362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189029993] [to:+19177320539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13196016284] [to:+13193837253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023996838] [to:+14402528421] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603167982] [to:+13477690322] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513229544] [to:+19172659241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18154040763] [to:+18572193374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167695827] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009274] [to:14185723417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463849810] [to:+13478969385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15098443839] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032C0302] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:14055087677] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:14055087677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025793496] [to:+19027004305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044682501] [to:+14043411996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474445610] [to:+13479471092] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470120] [to:15805912999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920788] [to:15174890318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-11 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-11 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-10 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054103417] [to:+13103470120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059283570] [to:+15873323502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415301908] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019101] [to:17097490452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750149] [to:14804004176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228135] [to:16147434325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-20 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875097527] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075511] [to:14388757916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555307] [to:12269274720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052980921] [to:+17027181096] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127753776] [to:+15129523446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173296833] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944904] [to:17735841900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032174414] [to:+12138619172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022295] [to:17632026361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-10 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605157309] [to:+12602327539] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005312] [to:17097644100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515624] [to:17869914898] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-11 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951899] [to:17097697477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-11 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041533] [to:15066087415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049723990] [to:+14242835182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488228] [to:15415305654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-11 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104767254] [to:+19175809802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-11 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042556737] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593607] [to:16048808779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-20 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232943] [to:+447949885001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19415254355] [to:+14074424055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:00 ip-10-0-64-11 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-10 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187215769] [to:+12243238942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-10 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602959] [to:18566858713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-21 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502997487] [to:+447520674063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:00 ip-10-0-64-11 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:00 ip-10-0-64-11 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-11 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-11 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106726718] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-11 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146191486] [to:+14387940492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-20 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751652158] [to:+447418327246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19798204215] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106726718] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:14698319662] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022015982] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732780] [to:14234431965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086724574] [to:+13072138974] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693537743] [to:14078790956] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092190] [to:18435425792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:14698319662] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004811] [to:17097700643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991277] [to:12504230244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317672927] [to:+15168302393] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470730] [to:18068911269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156170394] [to:+12627774077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035241402] [to:+13479544004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:18623730813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185049868] [to:16083326264] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396039853] [to:+18622278144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-10 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035932706] [to:+15873231799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-10 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597034] [to:19736100222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19029814189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345479] [to:19044088591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309539015] [to:+13309157320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12065568323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675368195] [to:+12138062922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075511] [to:14388757916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037250169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037250169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682263] [to:19033405093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786527764] [to:17783173075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015524] [to:18052330557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18154040763] [to:+18572193374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479967997] [to:+16474910367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032C0303] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102921711] [to:+18108527193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15418972188] [to:+15413257355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18154040763] [to:+18572193374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132851211] [to:+16139120973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837048] [to:16236339728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103618197] [to:+15103137377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060637] [to:18135631647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440259] [to:13369654758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13143093831] [to:13149144598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049723990] [to:+14242835182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618116] [to:19105542832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708459762] [to:+15103403586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12506179735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022368746] [to:+17278196489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500035D0202] -Feb 1 11:01:07 ip-10-0-0-21 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244958] [to:+447516694449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500035D0201] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269356] [to:14157860624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491516] [to:19568987036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794776] [to:13179924369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188056196] [to:+15817016485] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269865] [to:13126188929] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16309150363] [to:+16307555225] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603220526] [to:+16316141113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033684624] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193909] [to:18083438968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478762278] [to:+19173963257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315959] [to:18437438342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074324743] [to:+14072160013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015073039] [to:+17402017790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182733] [to:17752762175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194709235] [to:+17193561038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-21 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:13024193366] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148095] [to:+16822314077] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-21 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156401512] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004811] [to:17097700643] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142589] [to:18599828018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048085872] [to:+13478685892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039186591] [to:+13478966204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635622483] [to:14076247442] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-10 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15097397638] [to:13134045272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550991] [to:14109467326] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653466472] [to:+15169269582] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137788910] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105071348] [to:+12343867680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077358365] [to:+13479978618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13373084215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17163812202] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969288] [to:17174727839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025941] [to:19097136685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144342539] [to:+16825007349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-10 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082103492] [to:+15129526377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] Dallas Addie: Still have i can come p... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478220308] [to:+16102008854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163760249] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673428220] [to:+16464179308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:17163787914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-10 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587255] [to:14404205154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18434329860] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587493] [to:12672614181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046192519] [to:+16042652478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026040460] [to:+13024000586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306417725] [to:+14158909052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739075] [to:17403091504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18018334001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154291] [to:+13479131048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12504230244] [to:+16477991277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079673] [to:15146473843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137960651] [to:+16136047744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-21 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451243805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064556] [to:19094380210] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673682164] [to:+12677588756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168049080] [to:+16474954230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-20 mdr: 2016-02-01 11:01:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178280520] [to:+13176444526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673387033] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156972917] [to:+16149965978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19713036504] [to:+19715128671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403390931] [to:+13474863238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886793] [to:+19177248565] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610625] [to:15757032084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181083] [to:18455967349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133701126] [to:+13476764410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673387033] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833156] [to:19568217885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740469] [to:+14158916638] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745398] [to:14234916623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297733] [to:12765941664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388036635] [to:+14388078104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415301908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805397] [to:14234650830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347022] [to:18637096783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515996711] [to:+19148486395] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042556737] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-20 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209811] [to:+447960638118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459177] [to:14194630691] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768620] [to:14234944529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253109530] [to:19165195238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12154590297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005312] [to:17097644100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376187] [to:10015175740470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181083] [to:18455967349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082061490] [to:+13478967904] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307880583] [to:+16475037529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169724010] [to:+13476677218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137640] [to:16033414661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376187] [to:10012025533767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605402] [to:19283495865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-11 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269806097] [to:+12262431580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-10 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262534298] [to:+12132950236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677111] [to:12768700153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-10 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-10 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:17069790338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-10 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613762791] [to:+19093431018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-10 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505244540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269806097] [to:+12262431580] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18302200508] [to:+17279987517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064353655] [to:+15068040546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000587] [to:15143585167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102095923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597956575] [to:+14156491023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195372019] [to:+15103353130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060462] [to:19199127628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:12036310134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762459285] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056265642] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232166672] [to:+12133752629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125455480] [to:+18126709273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077730] [to:12409388865] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013496954] [to:+13012885452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-20 mdr: 2016-02-01 11:01:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-10 mdr: 2016-02-01 11:01:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298790] [to:19122379374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102156] [to:17057838614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162827967] [to:+13479066526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063143353] [to:+14064043400] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168286778] [to:+13134246526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-10 mdr: 2016-02-01 11:01:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:21 ip-10-0-0-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603011934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:21 ip-10-0-0-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17169986673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-10 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969338] [to:18152765043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18434329860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953783] [to:16474641191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370745] [to:12094221899] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-10 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-10 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-10 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314177211] [to:19203491496] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-10 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12136345718] [to:+13478084152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+12342315469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046401448] [to:+12136163060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096680939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802966969] [to:+15874101434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017729] [to:17402229596] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324724] [to:16159229807] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:17063294862] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068388] [to:13137822018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724185045] [to:+16122557827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802701641] [to:+16474913915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532985766] [to:+14073371857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753428813] [to:+17027181259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046778] [to:+13479979060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029803056] [to:+17145927134] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-20 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949885001] [to:+447451232943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920788] [to:15174890318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953475] [to:14163584473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14424000462] [to:+16465319148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709273] [to:18125455480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995690] [to:19512922787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918737] [to:16479987332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287301477] [to:+17029565380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626558035] [to:+17278600434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146475787] [to:+14388075531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105542832] [to:+17723618116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-10 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154916] [to:15874367573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-10 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-10 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-10 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698319662] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-11 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-11 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-11 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-11 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506179735] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-20 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672108] [to:+447443412752] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-11 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040521] [to:15063211497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18317075924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099864] [to:12109045694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192904203] [to:+14197767473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843977201] [to:12153850435] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:16146233123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604990974] [to:+12342313903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403983272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13373854539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011385953733038] [to:+19364174567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:13302755522] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:15106726718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069617838] [to:+15068045506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517065913] [to:+16125023518] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13143093831] [to:13149144598] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953475] [to:14163584473] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002988] [to:13023443856] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128664683] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157561] [to:12148607852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403269146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412261797] [to:+19703158825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17404855821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092190] [to:18033699534] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:13302755463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19729976481] [to:+14692057811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17408145515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403900827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:14165565382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415301908] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434563792] [to:+16233836442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C10202] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788092607] [to:+16042438369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101881] [to:19372052382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677773] [to:15619698550] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:17734031665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674756] [to:19134019235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384925370] [to:+14387943046] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-21 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520625379] [to:+447717477719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864395] [to:13232056122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747738130] [to:18025797462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958964] [to:18176157728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12546307338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362427473] [to:+19365878658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-21 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488536] [to:17703749498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-21 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18434329860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-11 mdr: 2016-02-01 11:01:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612909416] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-11 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419703] [to:19727402676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599799074] [to:+14243364291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183624] [to:19562520761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764410] [to:15133701126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137432] [to:12536666916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733044] [to:19522231264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-11 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029297440] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19034747763] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449054] [to:19019001329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801237] [to:12074596298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652561588] [to:+12135296614] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853313611] [to:+17162792534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097072] [to:16134137417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474941978] [to:16478647943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154087699] [to:+17572969390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719938] [to:18102930066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125201843] [to:+18572193275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146324159] [to:+14388071674] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173534994] [to:+16034132277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129730265] [to:+17089467128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066087415] [to:+15068041533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236439744] [to:+19093615226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096137647] [to:+14158530538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203943547] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032357326] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406890] [to:+13194507976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388036635] [to:+14388078104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816617] [to:12017138871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193766789] [to:+13479971508] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269806097] [to:+12262431580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059289050] [to:+12262417402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593484] [to:13128109255] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323502] [to:19059283570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023128882] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642304531] [to:+14703334933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986354] [to:17276449338] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-20 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232943] [to:+447949885001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-20 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697537] [to:12525924323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358244] [to:19193454714] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148949166] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-21 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411443500] [to:+447451226628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369940] [to:12533026790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808029257] [to:+15874100883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069790338] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13196936758] [to:+17278196873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889733] [to:13175137664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097072] [to:16134137417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-10 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19726665632] [to:12175027747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-20 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672108] [to:+447443412752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563283493] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037693] [to:19548160377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997185] [to:17169975095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625455587] [to:+17604748326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296356] [to:15742816635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643457452] [to:+17277053475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572381442] [to:+16172132950] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822326] [to:16077936587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158828259] [to:+12404077446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053941708] [to:18058637223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164282] [to:16787890796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:19056265642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-64-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991277] [to:12504230244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:38 ip-10-0-64-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692027278] [to:12148743227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838988] [to:14235448688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000587] [to:15143585167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043094768] [to:+13476969338] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123504297] [to:+12105718194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152765043] [to:+13476969338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419703] [to:19727402676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928479] [to:13069408167] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156170128] [to:+12677938310] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024208] [to:16614188581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:15148949166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:15312894745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-20 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447907640139] [to:+447520670376] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068544195] [to:+13214062781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132890733] [to:+18572193221] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479618849] [to:+16474912654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886843] [to:+13476504917] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-11 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375974182] [to:+19172668074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-20 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332325] [to:+447470020431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033405093] [to:+13478682263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166403118] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13374668692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857687791] [to:+12813066412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142149] [to:17732314829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18676895133] [to:+18678883719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300824] [to:18019804250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347070234] [to:+12139359912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-20 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165606849] [to:+12138025291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148247] [to:17405177729] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-20 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447984719981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233527018] [to:+16784345629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:16268244456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784074223] [to:+12133550262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765941664] [to:+12135297733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756713] [to:+19298412105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725347179] [to:17606983768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623730813] [to:+12134784359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567701926] [to:+19172592230] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047264411] [to:+19142066720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970624] [to:12815031165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-10 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612909416] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-10 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035568240] [to:+19177328563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:44 ip-10-0-0-11 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188145] [to:19104788784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:17742006083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:44 ip-10-0-0-10 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:17742006083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756713] [to:+19298412105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005442] [to:17092930408] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15147066380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005442] [to:17092930408] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478420787] [to:+16463496231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319148] [to:14424000462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124489643] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-21 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339938] [to:+447816850613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062503417] [to:+14256789365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-10 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784699041] [to:+16784338503] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604406865] [to:+12606355234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001937] [to:16813137897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15413212741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-20 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153850435] [to:+14843977201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918737] [to:16479987332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072186091] [to:+16125021426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-11 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073311514] [to:+19787869369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250777] [to:15179775650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071647] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-10 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-10 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314177211] [to:16312949683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-10 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996758] [to:17204292244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478654818] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474236790] [to:+16465688208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-10 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349038] [to:14024155115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-11 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317672927] [to:+15168302393] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-10 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647152845] [to:+16476937093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073783969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165195238] [to:+19253109530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048081863] [to:+17786530138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134892265] [to:+18572400640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703569033] [to:+13473797049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12154590297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168820658] [to:+13479138121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549371606] [to:+19543143634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504429] [to:17875088270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953042] [to:16474035639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246920] [to:13136295704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710479] [to:12404443155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478360] [to:18085905628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:16268244456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437046] [to:12493589987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793065244] [to:+12139297409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-10 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031469] [to:+12362373471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-10 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-20 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:18325312919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-20 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447455014197] [to:+447451207727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031A0202] -Feb 1 11:01:50 ip-10-0-64-10 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-10 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-10 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185271601] [to:+18572404039] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-21 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447455014197] [to:+447451207727] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031A0201] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016927120] [to:+17193437467] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-20 mdr: 2016-02-01 11:01:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520621972] [to:+447773775324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-10 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137770749] [to:+18572400640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767473] [to:14192904203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13378534520] [to:+14092205982] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857430874] [to:+15852823243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149798547] [to:15142982854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201587] [to:17174240009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604417264] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313003] [to:15857437698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12369935860] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17743570125] [to:15307126190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745936] [to:12073189901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-21 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805901364] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-10 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677737] [to:19094549604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-20 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198515] [to:19177240266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405137] [to:12486626886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491023] [to:15597956575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12104592979] [to:+18326506295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047457191] [to:+13606027089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472496796] [to:+14153408008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215365] [to:12019519532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702399379] [to:+19148208065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138614516] [to:13158167032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981199] [to:15196159269] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18507608820] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072138974] [to:16059419108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808859646] [to:+15874090821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00201] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021182] [to:14233710239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165804211] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064353655] [to:+15068040546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026040460] [to:+13024000586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477581058] [to:+13475188742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549606] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543308515] [to:+13054174113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C10201] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633216780] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032850195] [to:+12019955744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016602798] [to:+16463491978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647231321] [to:+16783941217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-20 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531386] [to:12054943645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166171795] [to:+13218329644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204317153] [to:+15207278540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419719535] [to:+15419182046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449905] [to:17316109658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042435069] [to:+16474912464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536666916] [to:+15103137432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035731372] [to:+19172660096] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076449] [to:15102820903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109045694] [to:+13125099864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879982866] [to:+16475037260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319148] [to:17602964805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054396181] [to:+12262401175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474941978] [to:16478647943] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00202] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609051394] [to:+12139297550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-10 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096655907] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18674458176] [to:+16474941383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606027398] [to:13604300048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:12762459285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077882844] [to:14185401216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234944529] [to:+14242768620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-10 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-20 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447535731524] [to:+447451235560] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342029966] [to:+17126428028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405090923] [to:+15617666160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786531090] [to:16472859979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-11 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:17169367983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176099885] [to:+13475808720] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18125300624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488536] [to:17703749498] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002515] [to:17209894553] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546816679] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18142186063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13378315582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047264411] [to:+19142066720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450618] [to:13363258942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093224073] [to:+15093182120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868437] [to:19125921795] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:17204515733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157773] [to:13068217201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537669290] [to:+12536422461] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-11 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058211434] [to:+13214068108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157773] [to:13068217201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969288] [to:17174727839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990309] [to:18723015797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092022293] [to:+18569429154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080471A60301] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12068412086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234916623] [to:+17604745398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735593927] [to:19738975185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735593927] [to:19738975185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137377] [to:15103618197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088993] [to:16134026855] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-21 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447917690081] [to:+447520627275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092022293] [to:+18569429154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080471A60302] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316463] [to:14042685755] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505171442] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778472] [to:14084306308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-10 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-11 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-21 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232943] [to:+447949885001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-11 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-10 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-10 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045099882] [to:+19164687656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-11 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-10 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-11 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042444631] [to:+18185401199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265017] [to:17196391930] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-21 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447717477719] [to:+447520625379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089570] [to:14356804262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-10 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-10 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671558] [to:18049391085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-21 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622725] [to:+447412913438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-10 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:18702752350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12563283493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049606722] [to:+19298410646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049606722] [to:+19298410646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102792063] [to:+19179797074] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16286001291] [to:+19172594650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018101476] [to:18016669354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-20 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231785] [to:+447702313849] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102792063] [to:+19179797074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206600706] [to:+19705481282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128109255] [to:+15635593484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324691452] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522252126] [to:+17865030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102792063] [to:+19179797074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852497736] [to:+18018907412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875088270] [to:+13476504429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255479] [to:19414474501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195905363] [to:+14149731423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597273] [to:19082057171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765941664] [to:+12135297733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033699534] [to:+19802092190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918737] [to:16479987332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19033737093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044139214] [to:+13369382977] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826378] [to:18643139818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472681821] [to:+16474955069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187757002] [to:+16476937314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500030E0201] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199941670] [to:+17194266053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500030E0202] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147049] [to:16155610682] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157568446] [to:+12138062918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015224] [to:12299778691] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996758] [to:17204292244] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502817] [to:12096966467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12285962407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044088591] [to:+18435345479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-20 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520626091] [to:+447764199955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725939] [to:12148748198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886857] [to:+13478683837] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-21 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015483] [to:12525253593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183614043] [to:+15817015342] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142682236] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976036] [to:19286374267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263498103] [to:+12267901959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037260] [to:15879982866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500838] [to:12136342247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18033684624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-11 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165298807] [to:+16139122415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733039] [to:12053659491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422090] [to:19183991084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19548379923] [to:17865870820] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:10 ip-10-0-0-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-10 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-10 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961023] [to:16105298570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535623] [to:16099549315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361035] [to:18596993321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-10 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:10 ip-10-0-0-10 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148949166] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-0-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877734290] [to:+15874090792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19026912260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148200] [to:+19082809027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075381175] [to:+15204337276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018588] [to:19027493918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342295] [to:16786409777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-21 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447796925333] [to:+447418337083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157099146] [to:+13473439794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879877226] [to:+15873175085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524401] [to:16169028250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-11 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138842736] [to:+16139092504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-11 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-11 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062647] [to:19022335074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887491] [to:16052094801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077097249] [to:+12362373368] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12259242559] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602959] [to:18566858713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405036424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:16143967060] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-10 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343039128] [to:+12342312118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-10 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0201] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403937194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-10 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436227369] [to:+12026609123] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:14194969629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405049570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17404858475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677604] [to:12034109337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866614611] [to:+18653473006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804432] [to:12704278506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032D0201] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041738] [to:15064674277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252264906] [to:+14694148456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479714194] [to:15732866969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245709977] [to:+14122302008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164955332] [to:+16466289454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147049] [to:16155610682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335314] [to:15202783039] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951824] [to:18482604663] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528926] [to:14402314991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109922961] [to:+12105718114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405074765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405074983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:13304735512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13373562975] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403993047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:16145617817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255479] [to:19414474501] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252264906] [to:+14694148456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025389] [to:13046422202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:13344218808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477638693] [to:+13478022410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14424000462] [to:+16465319148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168795408] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961023] [to:12152076645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18125281288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084443] [to:+13069928762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136680247] [to:+13478967643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157568446] [to:+12138062918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388752620] [to:+15817005447] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-21 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201674] [to:+447754816637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736100222] [to:+19086597034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049572286] [to:+15103222971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596458992] [to:+17077502912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:18134059382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873389595] [to:+15874097949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15852014807] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886979] [to:+15109486319] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049000550] [to:17789189073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003770201] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303572499] [to:+14402528629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-20 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166829810] [to:+12162394370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003770202] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252680022] [to:+14582023869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605400052] [to:+13476762356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032D0202] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645178606] [to:+17123826378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778352] [to:12312507479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778352] [to:12312507479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032E0202] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255479] [to:19414474501] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-20 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465955897] [to:+16465472212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094821] [to:13472583920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094821] [to:13472583920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720930] [to:12296995043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16694002550] [to:13194290073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-11 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148638899] [to:+12148148917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084443] [to:+13069928762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977968] [to:13472459052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035731372] [to:+19172660096] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862689] [to:+19148208532] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19034314102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:18028585558] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183624] [to:19562520761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583446] [to:+15614052910] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059199574] [to:+17053001713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496231] [to:13478420787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15818873117] [to:+14388095229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18085905628] [to:+17027478360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506304546] [to:+15102540241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053941708] [to:18058637223] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-21 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338903] [to:+447834465450] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887797390] [to:+447451223512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189529616] [to:+15817041298] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356196276] [to:+13145488977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304403409] [to:+13308503616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:19124232550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447736167892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033566] [to:18504911454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308747] [to:17728008416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201674] [to:+447754816637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597956575] [to:+14156491023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483723] [to:15753127257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447736167892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388752620] [to:+15817005447] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065568323] [to:+12069469067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726390745] [to:+19729470857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206867] [to:+17074097174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036519372] [to:+15873151984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14694224806] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14694224806] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138250] [to:213560434126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025363543] [to:+13867425958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149699379] [to:+19173963320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210439] [to:17325109289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252098762] [to:+13609727400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801409] [to:12522872360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885220] [to:12405156314] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474940982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:19165336541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14694224806] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-20 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520625379] [to:+447717477719] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-20 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:13302077387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772934] [to:+19149089954] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578423] [to:19049453385] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023777699] [to:+13024001317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772934] [to:+19149089954] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175148281] [to:+19292689673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742816635] [to:+12139296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447793063354] [to:+13476304546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003AA0201] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15676444540] [to:+14403594248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253701] [to:14062406843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062647] [to:19022335074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903713] [to:18455058888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333691] [to:14045635711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447793063354] [to:+13476304546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AA0202] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421913] [to:18323428517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496231] [to:13478420787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668818] [to:17867978887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174965420] [to:+16413165184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183624] [to:19562520761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921335] [to:14384982435] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:19089021138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987480] [to:16032196667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:12812173418] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921335] [to:14384982435] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006626] [to:12899680164] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563004245] [to:+18563125405] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632026361] [to:+16125022295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899390] [to:17042952985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236291702] [to:+15624162183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062849122] [to:+14703152718] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233420235] [to:+14155493749] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838381] [to:13235583113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12504230244] [to:+16477991277] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536422461] [to:12537669290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-10 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:15633216780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204475937] [to:+19703156436] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049391085] [to:+13476671558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074934983] [to:+17633015839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149163410] [to:+14387931246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17184518061] [to:+18133206148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12896544299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196391930] [to:+17194265017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041738] [to:15064674277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-11 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-10 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12285962407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:17866633112] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:17866633112] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:17866633112] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-10 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:32 ip-10-0-0-11 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:32 ip-10-0-0-10 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:32 ip-10-0-0-10 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143318250] [to:+17162790512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882294] [to:15304006125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476482654] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238942] [to:19187215769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645254496] [to:+13479376229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091817] [to:16134477368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12624704197] [to:+14132736961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-21 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447702313849] [to:+447451231785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049391085] [to:+13476671558] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142149] [to:17732314829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097794] [to:19252376075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987480] [to:16032196667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18016335145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032707871] [to:+13479788207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497350679] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040448] [to:14502303473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016901015] [to:+19015042089] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12158662938] [to:12674145867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488332] [to:15304430204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310588] [to:13364044171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:18028585558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-10 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13237629747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-10 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016901015] [to:+19015042089] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-20 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862153] [to:13479093157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-10 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553169] [to:18639908090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477020275] [to:+16463493084] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-10 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-11 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017428801] [to:19176207727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-21 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451219672] [to:+447708290007] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879982866] [to:+16475037260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193451] [to:14125135977] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033103] [to:17248825599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096394536] [to:+16465648975] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-11 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874079632] [to:+16474941331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916071] [to:16079689983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996437] [to:14807351320] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172033211] [to:+13477749835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:13433333265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995814] [to:13472903163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762459285] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142549606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024973940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796131] [to:19374511725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785510520] [to:+19785335083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17085410150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-0-11 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556651] [to:16167178408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:39 ip-10-0-0-10 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503067616] [to:+17784025167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:39 ip-10-0-0-11 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132848791] [to:+18133086866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768700153] [to:+13476677111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867978887] [to:+17736668818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295359] [to:15132003129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040417] [to:15146532399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803058] [to:13524404212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415301908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875088270] [to:+13476504429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398617] [to:12055777594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18437086718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223303] [to:18592001328] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149294] [to:13305416855] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504053230] [to:+14387924469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383455600] [to:+15146008089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014081073] [to:+12136946214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146207] [to:12542148625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046715170] [to:+18583605465] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-20 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465955897] [to:+16465472212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211781] [to:16125982359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043602573] [to:+17279353217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549440] [to:12507318176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023777699] [to:+13024001317] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969338] [to:17043094768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784698] [to:18283471157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324919] [to:18087417753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593075677] [to:+14153407827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233710239] [to:+16125021182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574496] [to:18174875564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960578] [to:14044537504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-11 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334443] [to:17575356129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-11 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039577662] [to:+15034868567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124489643] [to:+17072427827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082085243] [to:+16058887760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:12254394727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614808155] [to:+16612287472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18189614463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225987] [to:13047744681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134912028] [to:+15134567683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092229292] [to:+15874087595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017561753] [to:+17605896745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248415659] [to:+13479801185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604639534] [to:+13609494678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322779207] [to:+19086597519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838138] [to:12709220398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134058195] [to:+14158530364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:19173370838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-11 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638551721] [to:15185530957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175148281] [to:+19292689673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040125] [to:15874053138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:18325312919] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-11 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508486070] [to:+14502327788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-11 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262240865] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-11 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836266] [to:16232413848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258479] [to:12092513137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258479] [to:12092513137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391490] [to:14437393446] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315330] [to:19378299028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092694110] [to:+15107756141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037529] [to:16307880583] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286768543] [to:+16783941572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413982] [to:18083642485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391490] [to:14437393446] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13014423424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315330] [to:19378299028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046267895] [to:+19802097887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13174965420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:15148949166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477568669] [to:18473430471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635893196] [to:+16096144837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914413] [to:12892786061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462018749] [to:+19148485395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626099044] [to:+19015042554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-10 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-10 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479856453] [to:+16477997154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092190] [to:18033699534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-10 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038418700] [to:+17077502967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-10 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074978890] [to:+13219265443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203273679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203273679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238942] [to:19187215769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596936021] [to:+13479373310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040420] [to:+18133087963] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437400936] [to:+14434530428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927134] [to:17029803056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-21 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502912] [to:15596458992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472799185] [to:+16572076488] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192793415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062647] [to:19022335074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035223253] [to:+16783941312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074978890] [to:+13219265443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689673] [to:17175148281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-11 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608492253] [to:+17277679181] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-10 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15419182046] [to:15419719535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063816332] [to:+15068029945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638726] [to:14256584234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172604301] [to:+18572409641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:14403815097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-21 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520606018] [to:+447961321018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024973940] [to:+17053028393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001429] [to:19802982913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13617012865] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:18623730813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023091456] [to:+19027041247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750149] [to:17022650432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12048696571] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183991084] [to:+12819422090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:17622129412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052094801] [to:+16058887491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024973940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610519] [to:18047279355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074998890] [to:+19282976080] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16189218286] [to:+13867428541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13372901763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737145924] [to:+15733623306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401199] [to:18042444631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003710201] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567610] [to:18136506480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014569] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092022293] [to:+18569429154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080471A60303] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123041537] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786512403] [to:+15873323594] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073189901] [to:+14108745936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068318498] [to:+15107756786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094221899] [to:+12362370745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475496363] [to:+15164724390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016669354] [to:+18018101476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388752620] [to:+15817005447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647048424] [to:+19148818126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302077387] [to:+13477690201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373364082] [to:+13219993171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092930408] [to:+17097005442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726390745] [to:+19729470857] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852014807] [to:+15852823243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443856] [to:+13024002988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076943509] [to:+19599999401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752914623] [to:+15754497115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137776090] [to:+14132736765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497350679] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18122165469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136183787] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043767524] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14757770158] [to:+19142815051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000755] [to:12893850718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733039] [to:12053659491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319522] [to:16122135786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237424754] [to:+13108792193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132130894] [to:+18327772857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:12762459285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784005829] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-11 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-20 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447815512534] [to:+447451210408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134535339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169018] [to:18034604531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676237] [to:17577297298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749835] [to:17172033211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19209796006] [to:+12628884640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473510871] [to:+13479191462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899960503] [to:+12264557648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607197167] [to:+17184812199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178992133] [to:+19142816988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505171442] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-21 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201877] [to:+447783930972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-21 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239815] [to:+447508020511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17085399506] [to:+18724003564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488332] [to:15304430204] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019956298] [to:12012383267] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239570813] [to:+12135297521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-11 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473349] [to:18652023296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-11 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:19373057034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-20 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532328212] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-11 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612287472] [to:16614808155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063728205] [to:+14704446753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344766227] [to:+15862488189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473349] [to:18652023296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016214998] [to:584123584115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-10 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19128502855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432822] [to:16412028738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-10 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12164077291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-10 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004388] [to:13062903749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-11 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627124203] [to:+17474006569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-21 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797807] [to:18182313519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-10 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-11 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:13344218808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-21 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021557] [to:17056655362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170382] [to:18656609218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003710202] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058545] [to:12149942194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024155115] [to:+12136349038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609856432] [to:+19196504587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406675674] [to:+12162393053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836626] [to:16024913004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176827583] [to:+14696292862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835693] [to:19075659411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095419500] [to:+16095434148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221172] [to:13137403603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488969] [to:15412974725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176827583] [to:+14696292862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545043366] [to:+19404638755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137745] [to:17046122127] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416379705] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869206] [to:18436090492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198053477] [to:+13473439765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310588] [to:13364044171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024973940] [to:+17053028393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297550] [to:17609051394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-21 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344014113] [to:+14342340199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632026361] [to:+16125022295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087132397] [to:+16088568828] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156577262] [to:+12342315091] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525203336] [to:+14242865871] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105446503] [to:+12134788873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642304531] [to:+14703334933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627124203] [to:+17474006569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CC0201] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16478654818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16478654818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022181514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034747763] [to:+19033076562] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-11 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188753949] [to:18184043427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-20 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239815] [to:+447508020511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047744681] [to:+15103225987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223303] [to:18592001328] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-20 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447943814260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432261489] [to:+12138065759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14049027780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907745] [to:12253337739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789853182] [to:+19782384293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438677099] [to:+14437201268] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009418] [to:17053581578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-11 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047896893] [to:+19177329823] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862531] [to:+19142795374] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146532399] [to:+14388040417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542135644] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024557641] [to:+18639491812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148949166] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034737] [to:17248094416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465955897] [to:+16465472212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053692098] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997631] [to:16204742005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413982] [to:18083642485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872246094] [to:+15873322304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-20 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011923071000000] [to:+18077889753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016887766] [to:+17324447901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:15679983521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199098616] [to:+19199163763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+12606337174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347214] [to:16162503856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19497350679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637986] [to:17208391758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078500017] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049068698] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784238050] [to:+19789697267] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003210202] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438342751] [to:+14438550480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12253809672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203738022] [to:16614745420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603299199] [to:+17344366987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477420699] [to:14189286679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097893] [to:15878967775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15178623617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15852014807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-21 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332842] [to:+447946498815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148870342] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253701] [to:14062406843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046747206] [to:+19047584577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374511725] [to:+17408796131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911307] [to:16479956239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089377119] [to:+18084681132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15099454577] [to:+15097397079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152262404] [to:+19142793870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031C0201] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14436242954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14436242954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995585] [to:18644019980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477420699] [to:14189286679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14436242954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:15155050546] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165982435] [to:+15817005108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12065568323] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-21 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447736167892] [to:+447451210646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003EB0201] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038444009] [to:+16475566752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778352] [to:12314088183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17022734048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-10 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19542430749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699957] [to:14102314898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:16614337235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745398] [to:14234916623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160724] [to:15613074897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059419108] [to:+13072138974] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159716331] [to:+17125255732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325109289] [to:+17348210439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243255451] [to:+13476908375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172033211] [to:+13477749835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:15309050737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677111] [to:12768700153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16476482654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042444631] [to:+18185401199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060530] [to:12148545790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695990] [to:+12048086878] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003EB0202] -Feb 1 11:03:17 ip-10-0-0-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144792334] [to:+19529778850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757032084] [to:+19172610625] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126436972] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105297] [to:16098324737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513095201] [to:12196041310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15058181746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-21 mdr: 2016-02-01 11:03:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805633295] [to:+447451207602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-10 mdr: 2016-02-01 11:03:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126436972] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-10 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145414] [to:17604131920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-10 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513095201] [to:12196041310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13379458050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556651] [to:16167178408] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16193723930] [to:+19292146677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154590297] [to:+12679232812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12896544299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472459052] [to:+13479977968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085562715] [to:12012057683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:19024719124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046439667] [to:+14049001136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-21 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447405760391] [to:+447418320166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-21 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632026361] [to:+16125022295] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-10 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15878967775] [to:+15874097893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996487] [to:13076223181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-21 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-20 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235560] [to:+447535731524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-20 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235197] [to:+447754994523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732405] [to:13167061424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473510871] [to:+13479191462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976080] [to:17074998890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009418] [to:17053581578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-11 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146422] [to:18622769237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:14165804211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199098616] [to:+19199163763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149294] [to:13305416855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135464525] [to:+19142670324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-20 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548722] [to:16609734439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854447751] [to:+16193593551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049000550] [to:17789189073] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963675] [to:12109527901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:15083673216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063101] [to:19129773863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248825599] [to:+17248033103] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548722] [to:16609734439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725977208] [to:17706050548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455980444] [to:+19014449173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-11 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322783383] [to:+16096144458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152262404] [to:+19142793870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031C0202] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373310] [to:18596936021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:16107399605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698208206] [to:+12692207186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818895568] [to:+15129524048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:17784005829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364271] [to:13364703257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744844] [to:13025052122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:19174590451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175888] [to:19192227229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15019529950] [to:+12132950044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-11 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790512] [to:18143318250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155946831] [to:+12678444097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-10 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059469036] [to:+12132896519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-10 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159716331] [to:+17125255732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366473] [to:12694149384] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505860066] [to:+16025527271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-20 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805633295] [to:+447451207602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505244540] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855035329] [to:+15852824993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572076488] [to:13472799185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231888] [to:12045575508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073430202] [to:+14243360234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637096783] [to:+18637347022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-21 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142589] [to:18599828018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434035984] [to:12402893027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018220] [to:13864330312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477935938] [to:+16475039712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:13302077387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210439] [to:17325109289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307177302] [to:+19784896401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109047578] [to:+14155494874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073783969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-21 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269751208] [to:+12267982375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:14349648928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950423] [to:13045532810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785985] [to:15018588415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071647] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15169678493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785985] [to:15018588415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312034194] [to:+14155212597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439832454] [to:+14108884760] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748088496] [to:+15744850497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538764327] [to:+12064008711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364988] [to:+16125022027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] peiseubug injeungkodeu-ibnida] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014423424] [to:+12027179714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-10 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16034774307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014259] [to:+16139099320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896683] [to:12704731404] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202758505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202758505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195270020] [to:+18194140747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497000836] [to:17059783766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046734230] [to:+12405732311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365991] [to:15854107957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15122886373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12123005905] [to:+13392304790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-20 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224314] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-11 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:17248886890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135076732] [to:+12139213154] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869196] [to:17323061599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-11 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-11 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12267792777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-11 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-11 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-11 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16192004141] [to:+17027183470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-10 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786518544] [to:+16784123886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167178408] [to:+18638556651] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+12604076854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640613] [to:13232378047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163171627] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18084681132] [to:18089377119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16138887252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963675] [to:12109527901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537669290] [to:+12536422461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560716] [to:16127439881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622121652] [to:+14157879336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184309612] [to:+18572192181] [flags:-1:0:-1:0:-1] [msg:29:Just waking up.[CB]9184309612] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083438968] [to:+13479193909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17165487574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361513] [to:17743647932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262200567] [to:+12262717181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463442379] [to:+12138223230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472859979] [to:+17786531090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076354] [to:19144887787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083438968] [to:+13479193909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155946831] [to:+12678444097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16286002304] [to:+17145927203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213131374] [to:+19148740516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-11 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895129] [to:16825609286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:13344218808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18065179868] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051061] [to:14692032122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162503856] [to:+12488347214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463442379] [to:+12138223230] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185713597] [to:+14387941262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535340] [to:17062068160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-21 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461552] [to:12816162988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19042587588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579751676] [to:+13479130059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195270020] [to:+18194140747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930523] [to:15875016003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024596] [to:17786798072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463442379] [to:+12138223230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140137] [to:14502781333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250777] [to:19285803715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-20 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140137] [to:14502781333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560716] [to:16127439881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428541] [to:16189218286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019101] [to:17097490452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508572363] [to:+17784030979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702948301] [to:+15703977883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352263209] [to:+13475086088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201587] [to:17174240009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064780580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914413] [to:12892786061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138687161] [to:+16136047844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463054] [to:18328475042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109467326] [to:+14438550991] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15173033497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-11 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199098616] [to:+19199163763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109273566] [to:+12167990685] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587417] [to:19045343117] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470172] [to:18316656221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-10 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241425] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017202059] [to:+12139297761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202021097] [to:+19203956423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545045539] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398617] [to:12055777594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18567233333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136337873] [to:+16136047763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463493591] [to:13208155933] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182468] [to:17024234159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-11 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335314] [to:15202783039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-20 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053692098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19129773863] [to:+12138063101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199559248] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014723] [to:+18455797560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105297] [to:16098324737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-10 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144458] [to:17322783383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15164506767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427504] [to:10636425552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302077387] [to:+13477690201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082841] [to:13309036234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-10 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702948301] [to:+15703977883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123886] [to:16786518544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310588] [to:13364044171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+14153260444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743273240] [to:+15713273938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201016] [to:13529996275] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075163] [to:15146183636] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:12175086134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023323394] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19075215353] [to:+15092622894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:18182617837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034130852] [to:16038583572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041758] [to:16138647230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12065568323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-21 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606027398] [to:13604300048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175769268] [to:+16466288215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293967] [to:18507309661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293967] [to:18507309661] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613364145] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253337739] [to:+14158907745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784065] [to:18032872293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021557] [to:17056655362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176234307] [to:+15167349799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593517] [to:12508855334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436090492] [to:+14849869206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725977208] [to:17706050548] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:17819537123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:17802994107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663364] [to:12313503992] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470172] [to:18316656221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199022477] [to:+12819421616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12696356093] [to:12699938528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808769] [to:12769528500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609898540] [to:+12135874645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12896544299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815786] [to:14782463830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-20 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061839] [to:19102746612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-10 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027493918] [to:+19028018588] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164077291] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035591019] [to:+19298410384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-11 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763251340] [to:+12136324663] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505244540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-11 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074998890] [to:+19282976080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-11 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-11 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:15879204253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025941] [to:19097136685] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-11 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303932] [to:12542135644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154249614] [to:+19709996142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786372067] [to:+16784123602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265017] [to:17196391930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193437923] [to:15086856001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623674331] [to:+16692223660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623674331] [to:+16692223660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736322647] [to:+19734466359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137489717] [to:+15413635820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-20 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951299236] [to:+447451211156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015969616] [to:+19018428197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614808155] [to:+16612287472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252289830] [to:+12134785730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091817] [to:16134477368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604417264] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470172] [to:18316656221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:17819537123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564057439] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606342948] [to:+16467019957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15168598289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094380210] [to:+12138064556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365289] [to:17342058321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149157671] [to:+14388085955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168269534] [to:+13479805662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12484601120] [to:15865801307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303572499] [to:+14402528629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19797391037] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234916623] [to:+17604745398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053581578] [to:+12497009418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:19012100539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146133468] [to:+19729470750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528825] [to:13134821810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19109871259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:15083673216] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:17819537123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427786] [to:17073303759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411275] [to:14042548689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736961] [to:12624704197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786518544] [to:+16784123886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436714331] [to:+18653209476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856835990] [to:+14073373720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18329441253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074258094] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364220] [to:+13218329512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-11 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627545799] [to:+18053942075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172403440] [to:+15172585347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328418130] [to:+14022560635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CC0202] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035223253] [to:+14044811874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921034] [to:+17604746450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094221899] [to:+12362370745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784238050] [to:+19789697267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003210201] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196073418] [to:+19199162480] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066150420] [to:+17277053094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594309294] [to:+15592239429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103618197] [to:+15103137377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174062949] [to:+12134784739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307202009] [to:+12342312846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12539619852] [to:+13052037755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194293390] [to:+17194265351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609051394] [to:+12139297550] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195817250] [to:+12148148449] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197122328] [to:+18193035229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:15148258269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649389] [to:15673153015] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:12245186012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16694009950] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095575257] [to:+19093615805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178623617] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429154] [to:16092022293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202537787] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086961] [to:19316917175] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041758] [to:16138647230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402647966] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149699379] [to:+19173963320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0202] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149699379] [to:+19173963320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031B0201] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556651] [to:16167178408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040378] [to:+17277568507] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:16015668482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158778847] [to:+13479196773] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-20 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Parentmail] [to:+447520607439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-10 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14102791502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14102791502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-10 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532782819] [to:+18583605368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14102791502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18772178512] [to:+14437201512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-10 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182468] [to:17024234159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-10 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123008401] [to:14435343299] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-10 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:13302077387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039712] [to:16477935938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189286679] [to:+16477420699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732405] [to:13167061424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073418991] [to:12095529412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+15146137413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18159190910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392238495] [to:+17864804622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008399] [to:17097278456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19717709812] [to:+15034555101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-10 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177627] [to:12675715685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-11 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152076645] [to:+12155961023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605510850] [to:+18107725944] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-10 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-10 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-10 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-11 mdr: 2016-02-01 11:04:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019286259] [to:+13219269288] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059283570] [to:+15873323502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221172] [to:13137403603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-21 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868567] [to:15039577662] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334443] [to:17575356129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-11 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796943] [to:14693283011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188553102] [to:+16233838643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796943] [to:14693283011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209855132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19034747763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209855132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614188581] [to:+16614024208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-11 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558652] [to:13473536652] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-11 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179924369] [to:+19142794776] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349038] [to:14024155115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048086830] [to:12046204482] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-11 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338222] [to:15595190342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174039644] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081016] [to:18125254582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049187235] [to:+14243363679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+12602777543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084443] [to:+13069928762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169474627] [to:+16162390168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610616] [to:12036091110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046692439] [to:+19142671441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731039] [to:17067660461] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14312312817] [to:+12048087988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-20 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447952608084] [to:+447451247614] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735564] [to:17709122012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-20 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447547216310] [to:+447520670075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248886890] [to:+14125354593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572899] [to:15058042151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363147] [to:14173895833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024719124] [to:+19027062347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161490213594] [to:+15712103355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725977208] [to:17706050548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583605877] [to:19735254152] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203738022] [to:16614745420] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-11 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12154590297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364132] [to:+19142066091] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022370051] [to:+12133773242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15178623617] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-20 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451222968] [to:+447930208653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:08 ip-10-0-64-11 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036075265] [to:+17726175471] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:08 ip-10-0-64-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181259] [to:17753428813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804227] [to:12392001221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968775] [to:19312793969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-11 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003940201] -Feb 1 11:04:08 ip-10-0-64-10 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784699041] [to:+16784338503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003940202] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039186591] [to:+13478966204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159229807] [to:+16197324724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500037C0201] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298026] [to:19107291112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262406] [to:12022464931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195925834] [to:+18193070211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045343117] [to:+19047587417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-20 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058211434] [to:+13214068108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17164360916] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693158673] [to:+14694148583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047896893] [to:+19177329823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801715721959] [to:+14706734411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542148625] [to:+12148146207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572899] [to:15058042151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232166672] [to:+12133752629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022370051] [to:+12133773242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108588627] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383233079] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302070940] [to:+13309358133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024266722] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804227] [to:12392001221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625009805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796279] [to:17406180315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327539] [to:12605157309] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072656] [to:14389354434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432092962] [to:+14502334398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233366395] [to:17863127476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705768718] [to:+17204637964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156974070] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630210] [to:13473091600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12283836862] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024938] [to:19046355054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081016] [to:18125254582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130059] [to:17579751676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-11 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:18312782279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182468] [to:17024234159] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045532810] [to:+12132950423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016045593] [to:+13473899768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099864] [to:12109045694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18567233333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364238] [to:+17073009492] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103012499] [to:+14844188821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:13234332567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819019276] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-21 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451243805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572409981] [to:18572659206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202021097] [to:+19203956423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022370051] [to:+12133773242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102674] [to:12677765584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718731] [to:12107095588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18723015797] [to:+17199990309] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-20 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-10 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252185738] [to:+14253338198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-11 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252109810] [to:+19285992636] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572409981] [to:18572659206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-10 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095419500] [to:+16095434819] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16189218286] [to:+13867428541] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252289830] [to:+12134785730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073418991] [to:12095529412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583605877] [to:19735254152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-21 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372150741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033130171] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-10 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-10 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-10 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-10 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205571041] [to:+17206234819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242419101] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-10 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130059] [to:17579751676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12252298448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800594] [to:18043969681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058211434] [to:+13214068108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498603] [to:17708962908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-11 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607195459] [to:+15169268345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-10 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720119] [to:19124093094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-10 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572899] [to:15058042151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-10 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178623617] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942510] [to:14165202828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-10 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16472849131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867021510] [to:+17743570327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413635820] [to:15137489717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-11 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065400032] [to:+15068008860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187215769] [to:+12243238942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016799597] [to:+14044811418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071647] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583605877] [to:19735254152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573376925] [to:+19175995086] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695017669] [to:+12694611494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12032434660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746450] [to:17854921034] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016285016] [to:+12138064089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:19097467830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694149384] [to:+12693366473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796131] [to:19374511725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+18582568539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073783969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013349066] [to:+13479196778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18187441876] [to:+19252382389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802089806] [to:+17175909035] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16193723930] [to:+12064008800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012039515] [to:+14153260444] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016285016] [to:+12138064089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467690121] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041341] [to:19022193329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-10 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042602976] [to:+16043050899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124489643] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669450] [to:15854696598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669450] [to:15854696598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432942] [to:13046406097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133890711] [to:+18133244997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100883] [to:17808029257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993171] [to:19373364082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167061424] [to:+14706732405] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072449142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19026912260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895129] [to:16825609286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631944] [to:+16572071390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019957] [to:18606342948] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072656] [to:14389354434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019957] [to:18606342948] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:19024719124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196512] [to:19016443769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:19097467830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558280] [to:16514449100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555101] [to:19717709812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15038374109] [to:15036231976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777350] [to:18125890387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:17739628723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-11 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706050548] [to:+19725977208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335067] [to:16789494722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603515276] [to:+16606208954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990685] [to:13109273566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-10 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642304531] [to:+14703334933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002265] [to:17323378276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075163] [to:15145892486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735578] [to:17065534029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-10 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743844] [to:12512091151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:30 ip-10-0-0-20 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052330557] [to:+17029015524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126639631] [to:+12138225880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:30 ip-10-0-0-11 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634435] [to:14699782274] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16309250991] [to:12242381658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951899] [to:17097697477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694149384] [to:+12693366473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143316638] [to:+16465130037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-20 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514474300] [to:+12512068642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17167778792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474947023] [to:12896843199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614539] [to:+12133773846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049000550] [to:17789189073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322636740] [to:+16615334720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] Radames S Alvarez jr: Thanks ill alre... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178623617] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805662] [to:19168269534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029803056] [to:+17145927134] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193499658] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202920094] [to:+15094360132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025574938] [to:+17025085731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995997] [to:19084726225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803223826] [to:+18484824197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14026198246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749841] [to:19105450005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143173246] [to:+18312887941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16813137897] [to:+14429001937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202451740] [to:+13072758220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666176] [to:13372901649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028477811] [to:+12404357813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670514] [to:19015300821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196512] [to:19016443769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352263209] [to:+13475086088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301503] [to:14127080897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524573956] [to:+15072626584] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14789572751] [to:+17073009317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603062341] [to:+12405538727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-20 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850438] [to:12602022710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077997] [to:14388814299] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245186012] [to:+18729996768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406180315] [to:+17408796279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-11 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592271107] [to:+13123001808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-21 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337837] [to:+447762612255] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-11 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15019529950] [to:+12132950044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193855] [to:16192066161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527820] [to:15177635125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-10 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13473999095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343201036] [to:+18506315594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199941670] [to:+17194266053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-10 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094188843] [to:+15103131839] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844472727] [to:+14844124503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039216895] [to:+13473899791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048612126] [to:+12048135062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004238] [to:16783263516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193074771] [to:18195240204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764062] [to:18652784266] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333691] [to:14045635711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605344869] [to:+17605433115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876395260] [to:+19172660125] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049963] [to:14036176095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038583572] [to:+16034130852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107291112] [to:+12139298026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159667941] [to:+13478022586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-20 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447917411735] [to:+447451207485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044954029] [to:+17049700679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138884754] [to:+12488347168] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793259217] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059412778] [to:+16058887404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579751676] [to:+13479130059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249314792] [to:+17248032285] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650561] [to:18048960791] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650561] [to:18048960791] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:14044459094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248638] [to:17743867272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750739] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014245] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012412241] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044225762] [to:+18134302927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527820] [to:15177635125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233303648] [to:+13478969902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:19733425882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-10 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297733] [to:12765941664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064330431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144377652] [to:+14703336604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014512944] [to:+17408796622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614539] [to:+12133773846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-10 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:13185001379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-21 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240706] [to:+447444269905] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606851766] [to:+19142967154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19045081108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768063637] [to:+19292201926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:14152403374] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668496] [to:14798569307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039712] [to:16477935938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502912] [to:15596458992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203517582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561038] [to:17194709235] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048181623] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865401507] [to:+18572407590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203517582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040647] [to:+13476676135] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585347] [to:15172403440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738082663] [to:+12134783304] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12672069991] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-20 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244561] [to:+447946372146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-20 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244561] [to:+447946372146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-20 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244561] [to:+447946372146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16617480465] [to:18054150971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:19062414983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161769] [to:15173955279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17083773878] [to:+17608671748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18567233333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738082663] [to:+12134783304] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672278429] [to:+13477417192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185787976] [to:+13476191415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003980201] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009974] [to:12502997573] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-10 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738082663] [to:+12134783304] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-10 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874041064] [to:15877743282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083047] [to:15189296325] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026468] [to:17052098119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17167153224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201256] [to:13152723072] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-10 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676987] [to:13049010201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134791558] [to:+19173965659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-10 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196391930] [to:+17194265017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762459285] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297550] [to:17609051394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185787976] [to:+13476191415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003980202] -Feb 1 11:04:46 ip-10-0-0-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16617480465] [to:18054150971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873231799] [to:14035932706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-21 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456633238] [to:+18459997187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966489] [to:17248597856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194290073] [to:+16694002550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088279] [to:12042509763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-21 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082085243] [to:+16058887760] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19498728149] [to:+19498771748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-20 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-11 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12672069991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034603291] [to:+15172527212] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-11 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257736] [to:17752943876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-10 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-21 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796785] [to:16183836300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322136820] [to:+13479800919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073330] [to:12484606303] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046406097] [to:+16412432942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444526] [to:13178280520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-10 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:15188660195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:13479254927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092578186] [to:+14153407939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246920] [to:13136295704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502559211] [to:+16474951414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473536652] [to:+17182558652] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500110] [to:14344715385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612287472] [to:16614808155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022410530] [to:+13203073634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055983] [to:17705728818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077795] [to:16309996909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788558569] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201587] [to:17174240009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896519] [to:18059469036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15063243312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544991] [to:16784924815] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136022495] [to:+12133550701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538759] [to:12604315641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092578186] [to:+14153407939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609972638] [to:+13479713313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137776090] [to:+14132736765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+13069927274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082146] [to:18137661518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318390] [to:14092015121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747541] [to:14052744809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321477] [to:12502801609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:14035967294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:12399618172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402966737] [to:+13477981169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108943501] [to:+17279166398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-21 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451207602] [to:+447805633295] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159229807] [to:+16197324724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037C0202] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286768543] [to:+16783941572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862554] [to:+13216131516] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033699534] [to:+19802092190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184309612] [to:+18572192181] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476482654] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705717575] [to:+19703156742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404132899] [to:+14406588490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609318163] [to:+13607884901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162090582] [to:+16474947532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462716910] [to:+19292201905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003000201] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024938] [to:19046355054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053757240] [to:+16474980450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003000202] -Feb 1 11:04:55 ip-10-0-0-20 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+13069927274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012100539] [to:+17029960317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-20 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206691] [to:+447549569849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18069393309] [to:+14697516822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298026] [to:19107291112] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19498728149] [to:+19498771748] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407355180] [to:+18173637168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732170439] [to:+18722258499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13046202415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092331] [to:19803181549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485837] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786523] [to:19375039971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477829203] [to:+15817001041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228922] [to:13136037277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19709785382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-20 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783450633] [to:+447451212040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421642] [to:19522102585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740376] [to:+13218329561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537776026] [to:+12533361832] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634993] [to:16085673250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384088] [to:125827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19025992885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:12762459285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-10 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:14252109810] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369777086] [to:+13369440728] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+15817041558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:14035967294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-10 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463529] [to:14326615281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947873] [to:19043827693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-11 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297733] [to:12765941664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-11 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438774] [to:18122075909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-11 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:13174039644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023091456] [to:+19027041247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-11 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027658861] [to:+16465472999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-11 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053757240] [to:+16474980450] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195817250] [to:+12148148449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12257886659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105890777] [to:+18324815296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479842251] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-10 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123434787] [to:+12136309973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-10 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-10 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-10 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502418057] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990685] [to:12162534536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083047] [to:15184883636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137822018] [to:+12482068388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-10 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053003341] [to:17057309393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:14152403374] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053003341] [to:17057309393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631730] [to:15304205152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-11 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164891334] [to:+17162790284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384287] [to:16235234913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144069155] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-21 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364916] [to:+13476903595] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220744] [to:17152553345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948136] [to:19046808258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-10 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026040460] [to:+13024000586] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:13479254927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958855] [to:5511987373415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808861781] [to:+14804394796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165612245] [to:+16474952927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967267] [to:19317870955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14077152745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705768718] [to:+17204637964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058188849] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328330887] [to:+12133756047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603055806] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338869] [to:+15103222373] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037617] [to:13362668086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756282] [to:13106899802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-10 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-10 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101929] [to:19312175129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-10 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609313254] [to:+19177086890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-10 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850438] [to:12602022710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068033304] [to:15066541989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042160002] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:07 ip-10-0-64-10 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-20 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447494348310] [to:+447520606382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-10 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601672] [to:17729406961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:07 ip-10-0-64-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-10 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:07 ip-10-0-64-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-11 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069938075] [to:13062512017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123434787] [to:+12136309973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473563101] [to:+13479862071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-21 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-10 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069939166] [to:13062031766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-11 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039869154] [to:+15713262209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248638] [to:17743867272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505244540] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19403374507] [to:+19032130535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862153] [to:13479093157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12348044096] [to:+13476304511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16472095442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444570] [to:13176046683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144995353] [to:+16576668384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808852] [to:16168136030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034631006] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022799] [to:17095417302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-11 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144995353] [to:+16576668384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092578186] [to:+14153407939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159111] [to:13365142310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-11 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-21 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-10 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049015201] [to:16048667448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053757240] [to:+16474980450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-10 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063375] [to:13364588992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-10 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-10 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-10 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597859220] [to:+14122302907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-11 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707221459] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-21 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-10 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167103289] [to:+16602009774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473536652] [to:+17182558652] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455448] [to:19167069811] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475231173] [to:+17786533426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358133] [to:13302070940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-10 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033159981] [to:+19542719881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309937060] [to:+18133315970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001808] [to:18592271107] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488087] [to:16183142073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899960503] [to:+12264557648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221965] [to:+15103404060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:15627124203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-10 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990309] [to:18723015797] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016482244] [to:+19298413891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297707] [to:12563945108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18603067703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173791314] [to:+13234984345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056200829] [to:+15052572670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D50202] -Feb 1 11:05:14 ip-10-0-0-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122169380] [to:+14157879171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056200829] [to:+15052572670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D50201] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719881] [to:16032682588] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324724] [to:16159229807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-21 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447743897327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477420699] [to:15819994034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149812] [to:19312005754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040125] [to:15146008024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053003341] [to:17057309393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077730] [to:12409388865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:19085109352] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673637] [to:17862233980] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462286] [to:18457467928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803609] [to:19548220884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796279] [to:17406180315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172085324] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-21 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451207485] [to:+447917411735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19797391037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652784266] [to:+14357764062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863771] [to:16016425024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884795] [to:14434845678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068889] [to:584267321738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130324] [to:19123235330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13096608266] [to:+12342314592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067281292] [to:+12136324921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-11 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030979] [to:12508572363] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17168683943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-11 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-10 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096318761] [to:+12346507685] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-11 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436216] [to:19202540543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316316] [to:13127727214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-10 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125640729] [to:+15169080290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-11 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-11 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-11 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179652511] [to:+12136946508] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-11 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-10 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133490825] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854060914] [to:+15852823487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12169521938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003250201] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802225677] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659181] [to:15594626945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003250202] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19797391037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16478566154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568106] [to:12054058108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736068560] [to:+16304892449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570364] [to:16476258810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411171] [to:12034355422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-11 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024030385] [to:+19028019257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072286] [to:19106505359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327399785] [to:+19292009131] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186500283] [to:+13476067485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927950] [to:12294214940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18019531785] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292696963] [to:+19513387225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142292451] [to:+18193070435] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463231517] [to:+18629551042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677135026] [to:+12048086878] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058188849] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850951] [to:13024447549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132813] [to:12049519703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-10 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796923127] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-10 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129343564] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19259147121] [to:+19253109587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+19715122477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788455] [to:+12497009193] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-21 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447413800030] [to:+447451203039] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603587576] [to:+12604076546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233046352] [to:+14242863367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-21 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13468887942] [to:+18327439442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-20 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438774] [to:18129133072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488087] [to:16182370989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-20 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805633295] [to:+447451207602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485837] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084339231] [to:+17323624293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354942] [to:13043952594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594458] [to:14403961243] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966766] [to:14044166676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302163] [to:15165749150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043680502] [to:+16474947048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719881] [to:16032682588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12402858025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:15852852617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034491] [to:15068506474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142292451] [to:+18193070435] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512223423] [to:+19199162600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256584234] [to:+19175638726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046991977] [to:+19543235888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999094] [to:14164508574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068778145] [to:+13479378238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406185] [to:17708652161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734140] [to:16782785239] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13315516465] [to:18652535027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004220] [to:16162555961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521838] [to:+12069468729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274744636] [to:+19172669293] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063335900] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797737] [to:17407777346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068778145] [to:+13479378238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145570] [to:13023446813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864576921] [to:+17322582324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12032434660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394256] [to:12169249469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13023128882] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142292451] [to:+18193070435] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652389228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175200529] [to:+19148988512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336978] [to:17708668382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:5216672214763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477416052] [to:13478926587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432942] [to:13046406097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047693199] [to:+18638552006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993124] [to:14072670545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074334] [to:15403354403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125920] [to:18569569894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-11 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453910] [to:12024608006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-11 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800996] [to:12035359362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12283836862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856683] [to:16154745915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838624] [to:15034259508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155301009] [to:+12626482699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027944627] [to:+19172720072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034381170] [to:+16034132045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033130171] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124180619] [to:+13479803778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545261561] [to:+17329869175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927130] [to:17147707241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14139490272] [to:+14137289470] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807470546] [to:+16026339767] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478352412] [to:+19177229069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18084622202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165743919] [to:+16042595184] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514688952] [to:+16125023372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094821576] [to:+14155944365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759369111] [to:+15052572552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19034268436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-21 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337388] [to:+447805901364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19034268436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043827693] [to:+19046947873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678433] [to:18145167768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:15852852617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488332] [to:15304430204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-11 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393053] [to:14406675674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738496447] [to:+17736664280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785424202] [to:+13019094051] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779571] [to:13304884454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691903] [to:13602079800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488949079] [to:+13134247930] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042509763] [to:+12048088279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691603] [to:19512958384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691903] [to:13602079800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959468] [to:14844828542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17023323394] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053692098] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17023323394] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126047567] [to:+13477699760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478654818] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165133728] [to:+12169295373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049817859] [to:+12048093882] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035177233] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239429] [to:15594309294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453424] [to:12076942770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792571185] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-10 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558652] [to:13473536652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-11 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-10 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-20 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330689] [to:+447511751476] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-11 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-11 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-10 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022756844] [to:+13025958531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-11 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-11 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677703] [to:18144391701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-11 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833156] [to:19568217885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265017] [to:17196391930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-11 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046991977] [to:+19543235888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-10 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738657724] [to:+13866012372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-11 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193074771] [to:18195240204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178621294] [to:+18173632785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15612946950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156495423] [to:12538824418] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995997] [to:19084726225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097467830] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-21 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451243805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-10 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-11 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-10 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033289920] [to:+18046245741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18146618376] [to:+16466320532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12144377652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778745] [to:13476083067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802096587] [to:+19703156853] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778745] [to:13476083067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731505] [to:13157469269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363679] [to:13049187235] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333627] [to:16014900617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024193366] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363679] [to:13049187235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025908579] [to:+15612407256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165443501] [to:13163052688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577297298] [to:+13476676237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:19012100539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:13347334218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126101471] [to:+19148818648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233308744] [to:+15612400727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372901763] [to:+13479377116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245759] [to:16192743177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124180619] [to:+13479803778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136680247] [to:+13478967643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064506542] [to:+14062041954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563945108] [to:+12139297707] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097033443] [to:+19173965548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409636] [to:12267924047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124180619] [to:+13479803778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168203452] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604131920] [to:+17603145414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407355180] [to:+18173637168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19053208405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440408] [to:12522456167] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584577] [to:19046747206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383451357] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309973] [to:18123434787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497989595] [to:+18173988416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692005499] [to:18088540846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19015005522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126075846] [to:+19543143230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783969373] [to:+14045966754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196732071] [to:+12134784931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771522] [to:14094666050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17176860929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326159] [to:15129992159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672069991] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477792407] [to:+12262410259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408420] [to:15193891108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215192] [to:13042228844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602155] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546816679] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221172] [to:13137403603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-20 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142614] [to:17739604244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185679] [to:19174262447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404170] [to:16173066298] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-11 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168577397] [to:+16474980605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503007616] [to:19788477404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393436] [to:12694925648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188660195] [to:+14072162425] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024973940] [to:+17053028393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168269534] [to:+13479805662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024447549] [to:+13025850951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304403343] [to:+15308631910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538324] [to:13612310549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538324] [to:13612310549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285123] [to:16613044992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558652] [to:13473536652] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075961302] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732808] [to:16316368565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022458015] [to:+16475568982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323378276] [to:+13024002265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930523] [to:15875016003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165285161] [to:+16474982670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502817] [to:12096966467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:13129343564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:14132597798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048808779] [to:+16042593607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262404873] [to:15195048996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019517] [to:17099865021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-10 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873618054] [to:+18133244882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-10 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647048424] [to:+19148818126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-11 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406446840] [to:+17408796866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-10 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-20 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079379280] [to:+13479789293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328341182] [to:+12816436530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740528] [to:+18638555743] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122941702] [to:+14697239843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13097566017] [to:+13479190133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743273240] [to:+15713273938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461191] [to:18322328130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523483090] [to:+17863847953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485583536] [to:15172069671] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-20 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946034230] [to:+447451237139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863387] [to:13044949404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771748] [to:19498728149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083047] [to:15185308821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174039644] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177323129] [to:+19175995762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-21 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447704045859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246526] [to:16168286778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437912] [to:16783138251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485583536] [to:15172069671] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-21 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046406097] [to:+16412432942] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023487] [to:14107394591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026141400] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542135644] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176389563] [to:+14438550418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604774813] [to:+13473897561] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052465] [to:13183358506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13315516465] [to:18652535027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873389595] [to:+15874097949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865458267] [to:19188015118] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865458267] [to:19188015118] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857356305] [to:+17162791559] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107714559] [to:+14023874028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247873726] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:18502843155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143278819] [to:+15635497625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042435069] [to:+16474912464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064506542] [to:+14062041954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077497300] [to:+16178634425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187666898] [to:+13479808187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064780580] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137398137] [to:+14242797084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032405470] [to:+19523885066] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782786824] [to:+14783047044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043826794] [to:+14242796124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312189336] [to:+13479749127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856683] [to:16153518043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092502602] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064556] [to:19094380210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500035B0201] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783962752] [to:+12135295981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255653925] [to:+18638554440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621109] [to:15125211726] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293989] [to:18638453082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805160314] [to:+15874087083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-20 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212040] [to:+447783450633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500035B0202] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188781358] [to:+15184151535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965179] [to:16148175050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-21 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14424000462] [to:+16465319148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-21 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363679] [to:12162698308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143230] [to:14126075846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15802225677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837745] [to:14802802358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17139076064] [to:+13475808985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-11 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411727] [to:14164581616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134616] [to:+13658002738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707185] [to:13045315577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-21 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470524] [to:12523429438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-10 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058474] [to:18192085399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-10 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057920981] [to:+19014445438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064556] [to:19094380210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393436] [to:12694925648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405413755] [to:+14406587874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869175] [to:19545261561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-11 mdr: 2016-02-01 11:05:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603067703] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193909] [to:18083438968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043753] [to:14064710359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:14164320213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-11 mdr: 2016-02-01 11:06:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333532] [to:15515561470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175882739] [to:+13475188494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-11 mdr: 2016-02-01 11:06:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-11 mdr: 2016-02-01 11:06:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-11 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345245014] [to:+19172592622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-11 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462341878] [to:+13478084994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473729501] [to:+19178778486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464781] [to:15123004280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-10 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573899174] [to:+14132519324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863262] [to:16316714724] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:15176775147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778345] [to:12312010017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037260] [to:15879982866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057832670] [to:+16139097117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194409863] [to:+18193073745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:14164320213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531469] [to:15514045631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:14152403374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-11 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268940089] [to:+12262418520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609384432] [to:+15162526349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573899174] [to:+14132519324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238942] [to:19187215769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378238] [to:17068778145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106505359] [to:+19193072286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508598439] [to:+14502333956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023179784] [to:+19027021843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789431931] [to:+15612404628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393388889] [to:+17864107600] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614013146] [to:+18326509519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198172303] [to:+12262410082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252382662] [to:12092063332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408420] [to:12269230052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333532] [to:15515561470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234624893] [to:+13477970997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13372500007] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605747952] [to:+13477737824] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298987] [to:18322863802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298987] [to:18322863802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:12506823482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-21 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377186573] [to:+13214067376] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993774] [to:14849259387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134857831] [to:+15137259458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003260201] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-20 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447494348310] [to:+447520606382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003260202] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18644259017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076943509] [to:+19599999401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014900617] [to:+14076333627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18644259017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:16193999737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873618054] [to:+18133244882] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049068698] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:15148949166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15712103938] [to:15716456693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14254357380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14026198246] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024722644] [to:+14804393573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123924024] [to:+14028921220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003470201] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123924024] [to:+14028921220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003470202] -Feb 1 11:06:08 ip-10-0-0-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053692098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125850833] [to:+19709996270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612930246] [to:+16612705158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049013104] [to:+19148250121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784005829] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808506607] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856835990] [to:+14073373720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:19022935120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049187235] [to:+14243363679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752680824] [to:+14243361074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434736890] [to:+14437203706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752629] [to:16232166672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-10 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097490452] [to:+17097019101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067485] [to:17186500283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125281288] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515323] [to:17867404479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040573] [to:+13477865487] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063164194] [to:+14695326362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148456] [to:13252264906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745131] [to:19546078156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414163] [to:13212082405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-20 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-20 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068033304] [to:15066541989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257291] [to:12527171269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-20 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106275059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-0-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17742948934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:12 ip-10-0-0-11 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079537823] [to:+13212700642] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752762175] [to:+17027182733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:12 ip-10-0-0-11 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788477404] [to:+16503007616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003610301] -Feb 1 11:06:13 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-21 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003940201] -Feb 1 11:06:13 ip-10-0-64-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132597798] [to:+18133316673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095483101] [to:+17728004740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593604474] [to:+12484601442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14049027780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:12245186012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999572] [to:14163171627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166044767] [to:+15092040525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453424] [to:12076942770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-11 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132447] [to:14195611098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053927565] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-21 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226932] [to:+447443537472] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17637772545] [to:+16125021595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606814558] [to:+19725254623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220835] [to:12605034897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145414157] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167178408] [to:+18638556651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092120699] [to:+17474006932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455448] [to:19167069811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171740] [to:17085605022] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003610303] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202454] [to:14439865233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17172085324] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479859] [to:593939839420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857644029] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12483282192] [to:12482450822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606814558] [to:+19725254623] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154087699] [to:+17572969390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896519] [to:18054431005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:14388178485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805160314] [to:+15874087083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-20 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303932] [to:12542135644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735383877] [to:+19725254656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-20 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447734316773] [to:+447520620477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003ED0303] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606814558] [to:+19725254623] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472496796] [to:+14153408008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260046] [to:13479886769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568106] [to:12054058108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887491] [to:16052094801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784699041] [to:+16784338503] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:14437400936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-11 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023487] [to:14107394591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-11 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012387115] [to:+12019844781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-10 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263501580] [to:+12262410234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245759] [to:18317108853] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-21 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041948] [to:+18133202691] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136354] [to:14849036254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196715165] [to:+16233836262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-21 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331764] [to:+447596412172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316729174] [to:+15087884893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379164] [to:17575758005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-11 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062633057] [to:+18108528919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160088] [to:12072898740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-11 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107106795] [to:+15103226817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873618054] [to:+18133244882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-20 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212040] [to:+447783450633] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:21 ip-10-0-0-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336978] [to:16783655901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-10 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-10 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-10 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:21 ip-10-0-0-11 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062247718] [to:+13479372309] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:21 ip-10-0-0-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156495423] [to:12062805476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13182377462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13182377462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15614201809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19042587588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-10 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263501580] [to:+12262410234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-11 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-10 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-11 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13366937664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-11 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-11 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085109352] [to:+19175995418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-11 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614808155] [to:+16612287472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-11 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505126470] [to:+18506315531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-11 mdr: 2016-02-01 11:06:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-11 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-10 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-10 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493916679] [to:+12543347062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583444] [to:+12048133220] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744844] [to:13025052122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-10 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-10 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002988] [to:13023443856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042447] [to:14165710904] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048613] [to:13349910880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103409391] [to:+14437204895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997300] [to:17092800537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039216895] [to:+13473899791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970514] [to:13474444056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12099923532] [to:12094057552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623674331] [to:+16692223660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783340247] [to:+16784968653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877795548] [to:+17053027668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437393446] [to:+14353391490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470888] [to:19104746974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167103289] [to:+16602009774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490632] [to:19044050332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13192383414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278038] [to:13235721943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659181] [to:15594626945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:14233274562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-21 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163102] [to:12184109707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163102] [to:12184109707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192085399] [to:+19027058474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755371] [to:12196146247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-11 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18069393309] [to:+14697516822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-11 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514688952] [to:+16125023372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633216780] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184508961] [to:+13479977113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364054] [to:+16466320451] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17165637609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046808258] [to:+19046948136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13192383414] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865852128] [to:+13866015869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802225677] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048135062] [to:12048612126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163052688] [to:+15165443501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152023148] [to:+16158075682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022935120] [to:+15817008486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065646860] [to:+17027184709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099865021] [to:+17097019517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162187703] [to:15166397120] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132438240] [to:+16475567125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148139] [to:+16413165316] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18507608820] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14254069439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158828259] [to:+12404077446] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132758134] [to:+14132715476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182733] [to:17752762175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096137647] [to:+14158530538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:17144069155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324756768] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015269] [to:16512101913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176196596] [to:+16574008970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088478] [to:12043920989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618929008] [to:+13476672245] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143230] [to:13527923826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:13478478245] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:13478478245] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997300] [to:17092800537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455448] [to:19165856319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160088] [to:13047095049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147431629] [to:+17408797391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:14233274562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221916] [to:15592884245] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221916] [to:15592884245] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-10 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048837] [to:18052160397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005580] [to:16783400862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144571654] [to:+15107799229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019101] [to:17097490452] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755371] [to:16167063045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309973] [to:18123432637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16364399081] [to:+19149088024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19032130535] [to:19403374507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478394821] [to:+13477981266] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542135644] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967154] [to:17606851766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403354403] [to:+13203074334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091817] [to:16134477368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18603067703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817010013] [to:15814901127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681387] [to:14072808441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15514045631] [to:+14158531469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333956] [to:12508598439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788929344] [to:+18046245035] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045315577] [to:+16317707185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13468887942] [to:+18327439442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032934] [to:13184557124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13108782969] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736100222] [to:+19086597034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14045284033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167772174] [to:12162350401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195880023] [to:+14387922237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13109246184] [to:18189138140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989963] [to:17788478782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137640] [to:16033414661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339112] [to:19168036093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-20 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710282908] [to:+447451220294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026946127] [to:+18582568469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:16785358104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:16785358104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792510056] [to:+13852227423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062414983] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853780369] [to:+13473438496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502512295] [to:+18506313631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18125984441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176341698] [to:+19142815269] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444570] [to:13176046683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036206751] [to:+16034138578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064002420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139235] [to:12563939372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175269180] [to:+15103136559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-20 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12067458154] [to:12064291319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13525470075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015402028] [to:+16017148563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951581] [to:19192745383] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626957265] [to:+19018423679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167006779] [to:+12898047371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107797947] [to:+17077236927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420932] [to:18105030890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267792991] [to:19196340341] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-21 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200695] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407228] [to:12267928335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046401448] [to:+12136163060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-21 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200695] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865988] [to:13086242806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346605700] [to:+12486915512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177331114] [to:+15103353760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003310201] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177331114] [to:+15103353760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003310202] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12067458154] [to:12064291319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:15875012086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12152076477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167006779] [to:+12898047371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168577397] [to:+16474980605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617135476] [to:+16612705271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616359646] [to:+15612033112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464751] [to:18142548253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067278715] [to:+15068040563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863262] [to:18034560939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531469] [to:15514045631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167470337] [to:+19166370882] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:19052696097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196550074] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:19285144514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-20 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-20 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597034] [to:19736100222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615726431] [to:+15612576173] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-10 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10202] -Feb 1 11:06:44 ip-10-0-64-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406917104] [to:+15406286501] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623926480] [to:+17273332930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072428668] [to:+15703977874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472931439] [to:+18572404601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308052] [to:15163427811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308052] [to:15163427811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409462] [to:16473399353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173710401] [to:+18133316695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603249601] [to:+13609494673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545261561] [to:+17329869175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13104916037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13104916037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139178886] [to:+16137071367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420932] [to:18105030890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067278715] [to:+15068040563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-11 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167006779] [to:+12898047371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-21 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:16094835641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314069815] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-10 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-21 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447914832258] [to:+447451249307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18603067703] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404409475] [to:+12406858907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-10 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136864863] [to:+17344366505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764762] [to:16063045078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16478533996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075011] [to:18733765131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18505171442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157099146] [to:+13473439794] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003500401] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027683] [to:17059103740] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003500402] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195014404] [to:+12262431537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13476691367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003500403] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178719020] [to:+19492453534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-11 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-11 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139246] [to:12059568638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-11 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406675674] [to:+12162393053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186256895] [to:+16465479903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397009] [to:14786624508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-11 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606896290] [to:+18609351977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603055806] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12676839095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16474989963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314025] [to:14806005767] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623730813] [to:+12134784359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632320] [to:18458676989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732405] [to:13167061424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182905592] [to:+15817012463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302684515] [to:+19177730844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C30404] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C30403] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003C30401] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C30402] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19377081281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-10 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19377081281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-10 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-11 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475462387] [to:+16474954613] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-21 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930655511] [to:+447418333905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-11 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248389] [to:13475155913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-11 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:15633216780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-11 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921034] [to:+17604746450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176665184] [to:+19148486608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364868] [to:+18639492707] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063990074] [to:+12134788724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647048424] [to:+19148818126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139197800] [to:+18133244808] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003500404] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365121276] [to:+12134789324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:17809064949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023091388] [to:+16474983632] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:14388178485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003610302] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10201] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017970] [to:17404975367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-21 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631910] [to:15304403343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-21 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:14132597798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:15166036426] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863262] [to:17622150134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:15166036426] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-11 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-11 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:56 ip-10-0-64-11 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734719] [to:18436184418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-20 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-10 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252104201] [to:+12138225426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-10 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:56 ip-10-0-64-11 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049519703] [to:+12048132813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:56 ip-10-0-64-10 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681387] [to:14072808441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-10 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502843155] [to:+15103137779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779848898585] [to:+12134783363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-11 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066081374] [to:+15068036038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13174153137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13174153137] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973523] [to:13342094156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308747] [to:17728008416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13468887942] [to:+18327439442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625422549] [to:+12132953175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846169] [to:13238669693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087983089] [to:+12538787410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846169] [to:13238669693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-11 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734719] [to:18436184418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058474] [to:18192085399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-10 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163467524] [to:+19175630187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-10 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043680502] [to:+16474947048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:16052180670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554504] [to:17747668815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-11 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185656123] [to:+12343867706] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432942] [to:13046406097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147968154] [to:+14388095076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:17063809556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:17063809556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:18324756768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927052] [to:18649996255] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177397951] [to:+17073009934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653289] [to:16046988428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-10 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220875] [to:18643236457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-11 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095532416] [to:+17327068221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-10 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-10 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018805] [to:19029862165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:17722227080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707221459] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145847] [to:17608719881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996437] [to:14807984723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247599] [to:+14706732429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085058676] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-11 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170753] [to:+19027046085] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852593257] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472367463] [to:+16477999375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-21 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447702218728] [to:+447418320065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:17863124495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136183787] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057961583] [to:+17053003069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-21 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712177624] [to:+13017710530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-21 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342923] [to:13022429287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14252498374] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068033304] [to:15066541989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573865809] [to:+17572969729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18069393309] [to:+14697516822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842793] [to:14842410267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609351977] [to:18606896290] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16052318797] [to:16059063716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504256] [to:19196087712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102674] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-10 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475954797] [to:+13475186114] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-20 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447850461486] [to:+447451227237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003690201] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062249482] [to:+14703334224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058182552] [to:+16474982365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062610739] [to:+15874087354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107600] [to:12393388889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785986983] [to:+16784123733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854696598] [to:+19172669450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+14153161549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031246] [to:18164160829] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-21 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447850461486] [to:+447451227237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003690202] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-20 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534446889] [to:+447418330834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-20 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053151870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017970] [to:17407045131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326557185] [to:+17133896201] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073418991] [to:12095650093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778062] [to:12628086166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17135167180] [to:+17133526566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076942770] [to:+19492453424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-21 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447596412172] [to:+447418331764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266278260] [to:+12267982358] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506825893] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069928] [to:17075728077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055520] [to:16825522610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12399385133] [to:+13479808671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490451] [to:19178436051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:14695007485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:16789072168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954633] [to:12526655329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:14695007485] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407228] [to:15195046561] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232145] [to:14436767497] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274951981] [to:+17863539981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073634] [to:13022410530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495081] [to:19293237081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449730] [to:16198326720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015269] [to:16512101913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-10 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136762206] [to:+17344366467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19163701508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869110] [to:12158342479] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005720] [to:14146907367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095569268] [to:+17323058177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472237090] [to:19194366081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-21 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241208] [to:+447444350023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010386] [to:13365648193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487970011] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:19043156586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-0-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479859] [to:593939839420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010386] [to:13365648193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524159] [to:16168342717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-0-11 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:11 ip-10-0-0-11 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200921] [to:14439912313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786990] [to:13015731038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125455480] [to:+18126709273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138302109] [to:+17817864679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967363] [to:17408533757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000108] [to:13064205410] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:16056331155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-10 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103628401] [to:+12105718632] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797737] [to:17407777346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153133926] [to:+12678676608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293280148] [to:+13479198774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575758005] [to:+13479379164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059065303] [to:+12897809391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371656] [to:14178278193] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149840260] [to:+16149964377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15144636736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472727694] [to:+12897683579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170437] [to:15059778341] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731505] [to:13157469269] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18067738001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18067738001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593703] [to:16172711720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042299985] [to:+19084858857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18505171442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102674] [to:16109315398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13474211457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454898503] [to:+19177370408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787323762] [to:+17784032963] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568411] [to:15404700544] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787323762] [to:+17784032963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-21 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293280148] [to:+13479198774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981266] [to:13478394821] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17805074903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989578] [to:19054091256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491238] [to:18324913029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:15179141484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326833] [to:12017571093] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041906] [to:15066080971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:12267923909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603067703] [to:+13473898357] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411225] [to:19054494104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152723072] [to:+19292201256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139041880] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048091100] [to:+13203075440] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931246] [to:15149163410] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392001221] [to:+17864804227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056089] [to:19024018206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142309211] [to:+16144209380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192054315] [to:+15672057176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546938198] [to:12543178713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825532414] [to:+14692052149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592884245] [to:+12138221916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194696990] [to:+17193561038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965233] [to:13185040427] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132977316] [to:+17097000514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596458992] [to:+17077502912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17065705339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-10 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479471092] [to:13474445610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-10 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540818] [to:17324298999] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-10 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250121] [to:14049013104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-10 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508598439] [to:+14502333956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-11 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103404685] [to:+17256661271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165227786] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196293375] [to:17199949094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439264] [to:13469327057] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124366] [to:12674492223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373364082] [to:+13219993171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435671010] [to:+13019094299] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136559] [to:17175269180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188056196] [to:+15817041653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077890147] [to:12506671615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336978] [to:16783655901] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-20 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206691] [to:+447523247182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13143699583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-10 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188015118] [to:+17865458267] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218949] [to:16015967594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220420] [to:18135036892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784209299] [to:+19789697407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:15179141484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244808] [to:18139197800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12165133728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18063335900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15133490825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18563169953] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-11 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122350919] [to:+16466289454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187743860] [to:+15186500248] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592171684] [to:+14158256261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862526] [to:+18572401757] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15012566467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613364145] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022193329] [to:+19027041341] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040289] [to:+17348228504] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-21 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447914832258] [to:+447451249307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162059] [to:12523634701] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764062] [to:18652784266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804936] [to:12153785885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980210] [to:17805367977] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17579981615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16476482654] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072959464] [to:+17078685359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-11 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375970482] [to:+18133203325] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896519] [to:18059469036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513809880] [to:+19513640895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088024] [to:16364399081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194409863] [to:+18193073745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-10 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001937] [to:16813137897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704269537] [to:+13234865563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102213639] [to:+13475808131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-20 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609415] [to:+447874749593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327109376] [to:+18328042762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-11 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154481] [to:+13025852322] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14507529994] [to:+14387940664] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606896290] [to:+18609351977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411727] [to:14164581616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:15593056669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-10 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606027398] [to:13604300048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-20 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447825417792] [to:+447520605667] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500031D0202] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526929] [to:16304414810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-10 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19403374507] [to:+19032130535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503102] [to:50496921157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148150079] [to:+14146005645] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-11 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19163701508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12262418115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:17802004708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024390148] [to:+17029565018] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663353] [to:18023793196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157469269] [to:+19177731505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:17802004708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-21 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951299233] [to:+447451211156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035665838] [to:+18038519690] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-21 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614505168] [to:+16615334261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278038] [to:13235721943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093397242] [to:+16465470321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094477] [to:17868735852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005142] [to:15802306769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094477] [to:17868735852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138062687] [to:+15139008876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679704333] [to:+12679525484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043565] [to:19029564694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898160] [to:12158735808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635291008] [to:+18639493205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406025795] [to:+13477055047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406025795] [to:+13477055047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406025795] [to:+13477055047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202346644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202346644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-21 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14178256068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065233229] [to:+15128987335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368485952] [to:+12604070354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058223840] [to:+12312663035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062127] [to:13049525459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009273] [to:12077547037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882262] [to:15306804821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907600] [to:16317426172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:13187455297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091785] [to:16136988734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342521212] [to:+16475569634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164908720] [to:+16474993036] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18505171442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107655] [to:19044056851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514688952] [to:+16125023372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483723] [to:15753127257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075640] [to:14233052469] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783774] [to:13237425893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14192082439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14192082439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:17809320704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307498873] [to:+13479542804] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-10 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:13473619183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:19043156586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17185986524] [to:+13473898103] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168342717] [to:+16169524159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317075924] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019251] [to:17097257518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606851766] [to:+19142967154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137788910] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233137970] [to:+14804390547] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503488148] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-11 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148185] [to:+18572328102] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135193620] [to:+13072759524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931070] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19043925803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-20 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670739] [to:+447875783503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001235] [to:17088901385] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-10 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-10 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-10 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-10 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738265833] [to:+12694308101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-11 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14354015871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019485] [to:19024100570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-10 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-21 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789725273] [to:+13366452423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063364556] [to:+14097977834] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:18602068513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326833] [to:12017571093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150496088808] [to:+16783941549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233137970] [to:+14804390547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869175] [to:19545261561] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596122859] [to:+18583604710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671567] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080416FFFD44] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672900] [to:17066044017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671567] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080416FFFD31] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927950] [to:12294214940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999572] [to:12262241425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364534] [to:+14582015386] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144289] [to:15134171074] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013917879] [to:+14012038202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122752532] [to:18722813290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477876855] [to:+12264550486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479792812] [to:+13473437517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-11 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075450422] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-11 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608719881] [to:+17603145847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016129962] [to:+19014746878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-20 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326556] [to:+447979697576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-10 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490451] [to:19178436051] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-10 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528825] [to:13134821810] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792571185] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-10 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127920003] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690352] [to:12488184363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423261] [to:12532541621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476871881] [to:+16474992984] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:15593056669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:14698263532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692027278] [to:12148743227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610519] [to:18047279355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19252896218] [to:+17035423673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605940] [to:19283187733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-11 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142029995] [to:+12627775900] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18038007930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19163701508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16475448124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-21 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-10 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930523] [to:15875016003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-11 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234539515] [to:+18572402015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:48 ip-10-0-0-11 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:48 ip-10-0-0-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-11 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737393244] [to:+18477561977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:48 ip-10-0-0-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004908] [to:17097403110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186899394] [to:+15817008489] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017231] [to:16315758666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18108588627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-10 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037302418] [to:+13477055401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327569] [to:16824591903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269343] [to:15593046044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135152303] [to:+17278607009] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679704333] [to:+12679525484] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096137647] [to:+14158530538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691012] [to:16197910735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482699] [to:17155301009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366473] [to:12694149384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198000373] [to:15639290133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503924] [to:18327779454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406550055] [to:+14406588432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136012402] [to:+16136043246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215075251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12299475043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220486] [to:18453098876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504044] [to:13129185210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16475448124] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148845358] [to:+14387922913] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:16206442762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:18182617837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041341] [to:19022193329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316109658] [to:+19014449905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692027278] [to:12148743227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:17023545899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148845358] [to:+14387922913] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444570] [to:13176046683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134449776] [to:+13216137299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-11 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-10 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138189336] [to:+16136042956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396069] [to:12167677617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334443] [to:17575356129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-10 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178436051] [to:+16463490451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055153099] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742948934] [to:+15089874966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437393446] [to:+14353391490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612127194] [to:+17727740591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634953188] [to:+14153406075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16187311448] [to:+18724003266] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238615176] [to:+15625534645] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787323762] [to:+17784032963] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156010635] [to:+18729997882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228094] [to:12525489398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035665838] [to:+18038519690] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097422] [to:15877743355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653762904] [to:+13477963118] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:17702986140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:16475255245] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221916] [to:15592884245] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201680] [to:18282315831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292300351] [to:+19176635214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-21 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-10 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197177761] [to:+12264559758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427739] [to:16024516750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482669052] [to:+18328045183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572038117] [to:+13477866289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104723895] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572406107] [to:+12405538727] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963617] [to:16146648881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086913746] [to:+17739433687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:18658506144] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192085399] [to:+19027058474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205006686] [to:+14045966528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988488] [to:17179928698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-20 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235973] [to:+447956527123] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024155115] [to:+12136349038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-10 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604207373] [to:+19172592997] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-10 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198774] [to:12293280148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-20 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604417264] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-10 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106639675] [to:+12109986452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-10 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297707] [to:12563945108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-11 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-21 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-21 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447773775324] [to:+447520621972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-11 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-20 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-11 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228289] [to:16142040768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-20 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183351715] [to:+18722134307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-10 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-10 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104723895] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044440636] [to:+19046947869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:17155565863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-10 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:17155565863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-10 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364717] [to:+19142066588] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688833] [to:17096992574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-11 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-21 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451237769] [to:+447863129046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512101913] [to:+17633015269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024100570] [to:+19028019485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737393244] [to:+18477561977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13152883292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900233] [to:639499216091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076335293] [to:+16474934356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148845358] [to:+14387922913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19733422211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340738] [to:16063155756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068177579] [to:+12064297992] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162478082] [to:+13476675717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188332026] [to:+15183440224] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276988709] [to:+19148291328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356890913] [to:+19298413142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:060804C9430201] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862233980] [to:+17865673637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16364399081] [to:+19149088024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637986] [to:17208391758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-20 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134242598] [to:+13479191926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356890913] [to:+19298413142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:060804C9430202] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13474211457] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-10 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18285510261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-21 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229909] [to:+447930414143] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900743] [to:+15147003846] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009407] [to:13174809278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215075251] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-11 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-11 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920371] [to:17348121783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:12193319236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:12193319236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:17866719172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:14388178485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147279103] [to:+14845485445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18322594311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12896804561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203354] [to:18136249272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-10 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-10 mdr: 2016-02-01 11:08:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-21 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:17784005829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846169] [to:13238669693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244363638] [to:+13122753212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:12188383449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472681821] [to:+16474955069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12517869152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:17203911043] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019517] [to:17099865021] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12253807630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19162437681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756435] [to:18166794843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216655] [to:584143057266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791631] [to:17166047231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-20 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813280] [to:12405170716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18733765131] [to:+18193075011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19137546528] [to:+12405732922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333956] [to:12508598439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716867460] [to:+14158538753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067234] [to:13059726917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144837] [to:18635893196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106063796] [to:+15109486493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102746612] [to:+19142061839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172711720] [to:+19172593703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592271107] [to:+13123001808] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077547037] [to:+19784009273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062555247] [to:+14703335357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12044001503] [to:12042941567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-10 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076927208] [to:+14074424554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-11 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242553119] [to:+14072681974] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-10 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-21 mdr: 2016-02-01 11:08:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331764] [to:+447596412172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:13 ip-10-0-64-10 mdr: 2016-02-01 11:08:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13153728451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-20 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:13 ip-10-0-64-10 mdr: 2016-02-01 11:08:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152971965] [to:+13479803059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816162988] [to:+18322461552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18317075924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123886758] [to:+12243104096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17165238720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022793] [to:+12602220925] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384961763] [to:+14387927989] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649790321] [to:+13477736533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064559987] [to:+14703335046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942512] [to:+16079687191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-11 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163891028] [to:+12162396472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203698] [to:14439791216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052737112] [to:+16136043818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195716997] [to:+14388072722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035619] [to:12144295541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13025630339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16189218286] [to:+13867428541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13474211457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066080971] [to:+15068041906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017231] [to:16315758666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731505] [to:13157469269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-20 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668037] [to:15012660802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:15853078458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433687] [to:17086913746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856908542] [to:+15852821258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086961] [to:19316917175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565537257] [to:+16096144727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138559856] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102412] [to:13235229391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145847] [to:17608719881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691522] [to:15177409389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607756338] [to:+12536423739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098081560] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-21 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475497872] [to:+17185041137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:18502843155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272043026] [to:+14158253889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:19 ip-10-0-64-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049826038] [to:+13479787564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:19 ip-10-0-64-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607195459] [to:+15169268345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:19 ip-10-0-64-10 mdr: 2016-02-01 11:08:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15142682236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-11 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-11 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-20 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754328099] [to:+447451214092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022193329] [to:+19027041341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-10 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809572] [to:12293156677] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-10 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-10 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485395] [to:16462018749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029729619] [to:+12532446017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102834] [to:18629558557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609313254] [to:+19177086890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15139041880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364111] [to:+13867423723] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738368211] [to:+19738146232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18322594311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183662834] [to:+19175805189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016696727] [to:+13219265641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977545] [to:17178501979] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215766855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063381] [to:14012000660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443856] [to:+13024002988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072959464] [to:+17078685359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136325082] [to:18083047611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396069] [to:12166180458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029297440] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052064048] [to:+16465136810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431537] [to:15195014404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202303915] [to:+13039930624] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:16143273594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:19055153099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-11 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009131] [to:18327399785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927950] [to:12294214940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246592] [to:14344712987] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237463187] [to:+16269881712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201256] [to:13152723072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615430024] [to:+18173635141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:16197277278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982813] [to:13154093818] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245269] [to:18047200943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075087798] [to:+14073372472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:17854090455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024642] [to:14033579240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134787741] [to:14237089051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178719020] [to:+19492453534] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069408108] [to:+13069928142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798076] [to:14173101078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009529] [to:17326701599] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13364710040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474940657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-21 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447746878103] [to:+447451249229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069617838] [to:+15068045506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216655] [to:584143057266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042673230] [to:+14582025877] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192922137] [to:+15614591112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069617838] [to:+15068045506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:19283776421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057208000] [to:+17027794086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-11 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195786518] [to:+13479568066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602687863] [to:+12404668845] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165011221] [to:+17162791972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-10 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656583095] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123504297] [to:+13479787116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045913246] [to:+14242866278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364561] [to:+15873232525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602687863] [to:+12404668845] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897790235] [to:14168393655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328563] [to:12035568240] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036303819] [to:+16034138075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+13122756194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233316251] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159153148] [to:+17027476361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132939092] [to:+15137259441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-11 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286914] [to:16812228841] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043417988] [to:17708859041] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995957] [to:18648280377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-10 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066044017] [to:+13476672900] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068042016] [to:15068884669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789697] [to:12035265672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-20 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447734223555] [to:+447451201945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921547] [to:17742895333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921547] [to:17742895333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165298807] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075011] [to:18733765131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15626468153] [to:+16264604043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079491613] [to:+14072163514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17209894553] [to:+13024002515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233052469] [to:+16158075640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982358] [to:12266278260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215766855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18084622202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504267] [to:17657614834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072426412] [to:+14073374689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044050332] [to:+16463490632] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029565018] [to:17024390148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14794459699] [to:+18638556865] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-21 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500035B0202] -Feb 1 11:08:34 ip-10-0-0-21 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500035B0201] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793018216] [to:+14242796898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12153005744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109784707] [to:+19199162474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-11 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824618] [to:15855762871] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046462] [to:19028173641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785986983] [to:+16784123733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015880236] [to:+12136348066] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869110] [to:13474652538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674037543] [to:+12158662839] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594458] [to:14403961243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155301009] [to:+12626482699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173000411] [to:+17273629124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15195206869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702637030] [to:+19199164018] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109784707] [to:+13479804656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538018] [to:17077242836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155673869] [to:+15865748059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042160002] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058223840] [to:+12312663035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116285691283407] [to:+12138619555] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332704] [to:12052467843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701019] [to:13474993253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601411] [to:19058363883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502817] [to:12096966467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782384128] [to:12703129141] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317075924] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237288455] [to:+15102774106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125281288] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505019647] [to:+18506315244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649996255] [to:+12139927052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608719881] [to:+17603145847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133126720] [to:+18133208532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17085410150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532541621] [to:+12536423261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707550788] [to:+13126311474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414399] [to:19175888172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086866] [to:18132848791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809391] [to:19059065303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809572] [to:14786975018] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144636736] [to:+14388079688] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559041] [to:15199820824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133654321] [to:+18638554974] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-20 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940743341] [to:+447418320730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057600698] [to:+17053007417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036176095] [to:+15874049963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029565018] [to:17024390148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196104493] [to:+14197316236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14165298807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923909] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809572] [to:14786975018] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044025086] [to:+17745498340] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609384432] [to:+15162526349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262349240] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-10 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-10 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-10 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027689926] [to:+12408924122] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-10 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635893196] [to:+16096144837] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095190687] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-10 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-21 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202289] [to:+447577268007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816036484] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019485] [to:19024100570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+13122756194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020101] [to:14383466436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407939] [to:12092578186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796131] [to:19374511725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220502] [to:15183849215] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537223860] [to:+13478684528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035063] [to:16132621272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035063] [to:16132621272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032960] [to:17783174846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479842251] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14806664355] [to:16027059266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055276968] [to:+17059103166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305511] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034522] [to:17249490620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-21 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789470] [to:16066276855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324691056] [to:+14097771581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095162] [to:15145940452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784994486] [to:+14043900756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15208671000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-20 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337874] [to:+447470610016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064002420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-10 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167695827] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-11 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:13233316251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088643319] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412490847] [to:+15618197398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-11 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750349] [to:15099103959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304027367] [to:+15178615428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508598439] [to:+17784032263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365778927] [to:+15103358240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-11 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886884] [to:+12347556807] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18733765131] [to:+18193075011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000482] [to:13025315717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-10 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:13433649575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18328418222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485008] [to:16072262685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033684624] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407939] [to:12096497700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-10 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502819329] [to:+18503293238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603872129] [to:+16465648155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123886758] [to:+12243104096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538047] [to:19377187793] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253102] [to:13366577006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19164266104] [to:+14064042145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+18108528075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787545] [to:14842644207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-10 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-10 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097020594] [to:17096995643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942931] [to:18056219402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:18328976231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132379] [to:12132623792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148060398] [to:+14387922790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508815339] [to:+14502330675] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-11 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058474] [to:18192085399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234539515] [to:+18572402015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045549295] [to:+19047587551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994596] [to:17097718483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345174120] [to:+13025955970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19103663603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803059] [to:13152971965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193073188] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652389228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139125787] [to:14505025878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158008] [to:50378814384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622511499] [to:+19018427784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097020594] [to:17096995643] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13028039774] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360132] [to:17202920094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-20 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208035] [to:+447548544753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515388028] [to:+17142943447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095162] [to:15145940452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372150741] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476675630] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064488202] [to:+14692028046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241425] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235341914] [to:+19172720420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065802513] [to:+19172592622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365142310] [to:+19703159111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079491613] [to:+14072163514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475497872] [to:+17185041137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042956] [to:16138189336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372052382] [to:+17409101881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894935659] [to:+13219265797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635919] [to:18173745258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579751676] [to:+13479130059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099865021] [to:+17097019517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18033159556] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:17705979419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146035449] [to:+16467691245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148060398] [to:+14387922790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322411942] [to:+16095434819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885078] [to:19794847020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:12098179694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546400915] [to:+14706734969] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15058188849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894935659] [to:+13219265797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14789579714] [to:+14788455030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15612018684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001429] [to:17043522178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237288455] [to:+15102774106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326660674] [to:+19703159582] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-21 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703152718] [to:17062849122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326302626] [to:+15595001430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882262] [to:15306804821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622903] [to:18034908056] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:19082357944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-21 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234854] [to:+447729823648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044959] [to:14169992727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691603] [to:19515911317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987381] [to:15676869271] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987381] [to:15676869271] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-10 mdr: 2016-02-01 11:08:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043237165] [to:+14243360234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-21 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322261] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-21 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322261] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-11 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365648193] [to:+19706010386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-11 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248823325] [to:+14122301214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-10 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132813] [to:12049519703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734251] [to:14703306115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097020594] [to:17096995643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-10 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075011] [to:18733765131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221952] [to:16063026362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:18656583095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324921] [to:17067281292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220668] [to:14053616061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-10 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653762904] [to:+13477963118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086308] [to:17578057337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088024] [to:16364399081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416076] [to:15195321389] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-11 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-11 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039994816] [to:+12264552278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-11 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-11 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-11 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512611409] [to:+12136946083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401199] [to:18042444631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-10 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673313273] [to:+12679525181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404308] [to:16178177926] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:12816178951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-10 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-10 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834604] [to:15402449589] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-10 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834604] [to:15402449589] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18045061263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053734] [to:17086916819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332704] [to:12052467843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-10 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458214915] [to:+18456222278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133445896] [to:+19142063866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-10 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145940452] [to:+14388095162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12265051546] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942931] [to:18056219402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332704] [to:12052467843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712258236] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782729342] [to:18032090277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183244003] [to:+14506390673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525489398] [to:+15103228094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046492856] [to:+16043050764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-20 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404170] [to:16173066298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802782996] [to:+13479190910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-20 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746261] [to:17722044501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-20 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026976749] [to:+12406857149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613364145] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286476] [to:14173812290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087921489] [to:+12085012698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15104854211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188535089] [to:18185779104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223074] [to:16268483708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-10 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614591112] [to:12192922137] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-10 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-10 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575937930] [to:+17074031772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989540] [to:18507608677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039994816] [to:+12264552278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784001338] [to:+16042653604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144624467] [to:+14388095330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158668546] [to:+12678676167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206408882] [to:+19703158657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246613] [to:19124295356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675745767] [to:+12674862782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305511] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713309336] [to:+14242527220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503896] [to:17317276271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275058105] [to:+17277679533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411163] [to:14373445799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750349] [to:15099103959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163435728] [to:+15168302337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19048992774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101881] [to:19372052382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19702607392] [to:+19703006733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176456713] [to:+19177248697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126293278] [to:+18127777221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169840967] [to:+19298006220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406248417] [to:+17407853104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750903] [to:13176986493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784001338] [to:+16042653604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784001338] [to:+16042653604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-21 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447879025049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615438198] [to:+12138026880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392394] [to:19075219688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:18482309359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407939] [to:12097947286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720420] [to:14235341914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-20 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447985256746] [to:+447520628477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476482654] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085473] [to:17174493103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970836] [to:14014978613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:18014276425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005092] [to:13342121674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502843155] [to:+15103137779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657052076] [to:+18653471749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124419] [to:16107632993] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251200] [to:12145182051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-21 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:18602068513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852658005] [to:+14156887768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12165133728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036181796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:17705979419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364300] [to:+16465472530] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152924715] [to:+19142793856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130577] [to:12545348438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628229472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-10 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:12267923909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016696727] [to:+13219265641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048399] [to:+16476912831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074238840] [to:+13479542747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-11 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900756] [to:16784994486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15144636736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198000373] [to:15639290133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267901978] [to:12265040409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267901978] [to:12265040409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19026912260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235526043] [to:+17142943876] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034129] [to:12344141094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166930] [to:19194829253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364484] [to:+19172593672] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436210] [to:18128872510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-21 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447534446889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-10 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748562] [to:18594660319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-11 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202724406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:19087971873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462716910] [to:+19292201905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977968] [to:13472459052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065705339] [to:+13479805404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194920459] [to:+19199164629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18036623951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024303652] [to:+19027046345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313742] [to:18327744679] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034770227] [to:+16474946999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046330] [to:12893851681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848405332] [to:+16026384964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-10 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-10 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410722] [to:15192228980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000854] [to:13025690364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073947753] [to:+18133204450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023234488] [to:+16466320082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223074] [to:16268483708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134533416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507794665] [to:+17344365957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965640] [to:15859571137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12252887961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:18572444955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433974568] [to:+12676076547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162310] [to:14072808522] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058223840] [to:+12312663035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192085399] [to:+19027058474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-10 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13173977868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13173977868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-20 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447411409468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176456713] [to:+19177248697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+16139094439] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893031] [to:18188276463] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065415632] [to:+18134301736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401738] [to:16262486404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187127281] [to:+16465137449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-21 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384988068] [to:+14318003552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893460] [to:14846292550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082103492] [to:+12405457900] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] Adriel Shearwood: Hello good morning ... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166036426] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198080761] [to:+18583604128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-10 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012897257] [to:+15865748585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364703257] [to:+14243364271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026845060] [to:+19027043906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092063332] [to:+19252382662] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13072538769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045869938] [to:+18046246225] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344972673] [to:+13479803977] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759034] [to:14174380380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12535458675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183358506] [to:+17277052465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212700617] [to:17087173971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+15817041558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18065028969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:14075454042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17127908092] [to:+15152032232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543802897] [to:+19543543462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-10 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:19043156586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-10 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157469269] [to:+19177731505] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173000411] [to:+17273629124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-10 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705348] [to:18185706484] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-10 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-10 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412937] [to:18162139016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184508961] [to:+13479977113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-21 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384041529] [to:+14387940473] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014707] [to:+13477737828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392337244] [to:+17027182961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413742414] [to:+14073374971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009178] [to:12064209041] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326533] [to:19794464425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055519] [to:19036241741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404308] [to:18572109303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958138] [to:14435150780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19103746013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-20 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921212920] [to:+447418328425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:15034969702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062849122] [to:+14703152718] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238615176] [to:+15625534645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586719] [to:14013405335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735179935] [to:+18622278144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370980] [to:13065966136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:19162970810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292300351] [to:+19176635214] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173310077] [to:+18572190969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378171] [to:18637094731] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12262418115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-20 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-21 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332855] [to:+447555020510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046577337] [to:+19046946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603872129] [to:+16465648155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242397678] [to:14232770205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14128626350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311672] [to:17735364543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479748827] [to:18135256977] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197277278] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-21 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804004176] [to:+19172750149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415982] [to:15194290713] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300671] [to:12816852550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713309336] [to:+14242527220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797753] [to:18016046312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:14036164916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030573] [to:19024485713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-20 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048626418] [to:+17784030952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053927565] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:19097467830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-21 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217431] [to:+447546675679] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17073939139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139041880] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-21 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503165543] [to:+19046947238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122203538] [to:+12139359447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16364399081] [to:+19149088024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233316251] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605341900] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126290297] [to:+18326502986] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083414711] [to:+15084414047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319718441] [to:+16318127622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202083053] [to:+14806664326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:16318059792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123886758] [to:+12243104096] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:14783572402] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082357944] [to:+13477974357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995690] [to:19512922787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-11 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948136] [to:19046808258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128822789] [to:+17037750896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383451357] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577058] [to:18038572662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-20 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325218] [to:+447887053337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097520202] [to:+12092602389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14354011755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404700544] [to:+13479568411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987410] [to:19179390879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407196] [to:+16474955001] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987410] [to:19179390879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384041529] [to:+14387940473] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987410] [to:19179390879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033314503] [to:+14695325581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080400130201] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002988] [to:13023443856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476675630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787545] [to:16106536914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522072568] [to:+16503008157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065966136] [to:+12362370980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169992727] [to:+16136044959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-21 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447867673534] [to:+447451220294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-10 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366577006] [to:+14153253102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235563496] [to:+19282977004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415251029] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002980] [to:14705999521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077242836] [to:+14156538018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514911458] [to:+16466691017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048306173] [to:+19802097658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601650] [to:14025060785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191525] [to:17742833626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173618734] [to:+14156308435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038695681] [to:+15873231556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048306173] [to:+19802097658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-10 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-20 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447770777606] [to:+447451214985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:15098443839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752914623] [to:+15754497115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479800358] [to:+16474954408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613954] [to:16013341662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934356] [to:18076335293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008028] [to:16474535648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:15873579871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417309080] [to:+15419182046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155153] [to:15187066183] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-20 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447808077042] [to:+447451216986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092263032] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298888] [to:16612469761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479422330] [to:+19093405838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096411511] [to:+17097005196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175370310] [to:13179108187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053218098] [to:+17053028837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920788] [to:15174890318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452914] [to:13362633699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:18507977319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14352192242] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478922907] [to:+16474916412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178162101] [to:15863447820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997185] [to:17169975095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096995643] [to:+17097020594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:13474440278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642008011] [to:+13214062787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012698] [to:12087921489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995509] [to:18286061218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136582774] [to:+14152377326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390673] [to:14183244003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788477404] [to:+16503007616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495744] [to:14044381605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-11 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434710] [to:17322895241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:17249296153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066998976] [to:+14706730660] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406803773] [to:+19492814596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:12057372189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803059] [to:13152971965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464625688] [to:+17133894411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184508961] [to:+13479977113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-20 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447454000169] [to:+447451228935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985724] [to:13132298324] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-11 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132813] [to:12049519703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734251] [to:17703162755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13397884170] [to:+15089166209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-10 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088059823] [to:+12085010677] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-10 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094188843] [to:+15103131839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:17863585470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17074867332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:13183448882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821958] [to:15854513818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:17133969640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479422330] [to:+19093405838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:19702003239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470861] [to:13109715481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068042016] [to:15068884669] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16399998161] [to:+13069927681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294121612] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875962413] [to:+15874050147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102254569] [to:+13475088429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-10 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-10 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058489] [to:12687705491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623381821] [to:+14049002827] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124297] [to:15617138793] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095417302] [to:+17097022799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262607735] [to:+16269882643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202563796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665916] [to:14048896314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154090] [to:+15109480695] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378171] [to:18637094731] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-21 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13522553410] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449905] [to:17316109658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046705233] [to:+18638555117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594660319] [to:+17604748562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867689198] [to:+19543543811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-11 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085511] [to:12163249552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258724] [to:16186159540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065415632] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-20 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005469] [to:18159144915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883855] [to:15307395059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-10 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-20 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875783503] [to:+447520670739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-10 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769608] [to:19372101121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805267] [to:18606265442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14357901509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175888] [to:19192227229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-11 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15414089497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:17327893986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045176655] [to:+19047587847] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-11 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394796] [to:14808861781] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735564] [to:17709122012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223074] [to:18586342665] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479422330] [to:+19093405838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053616061] [to:+18139220668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036241741] [to:+14692055519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833157] [to:15133208285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12083394005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240575] [to:19195279700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713309336] [to:+14242527220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046705233] [to:+18638555117] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206805] [to:+13477416267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011584267296963] [to:+14073372925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378448053] [to:+17277679599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768700153] [to:+13476677111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040602] [to:+16513335609] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578057337] [to:+13475086308] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102794841] [to:+12026015056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293538599] [to:+13475186323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421616] [to:15199022477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:16477388731] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106654735] [to:+14028921088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146588] [to:19037300135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691367] [to:12602258893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326762] [to:17132918943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009131] [to:18327399785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106654735] [to:+14028921088] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784005829] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189448828] [to:+15182908720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502559211] [to:+16474951414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262700176] [to:+12264555694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596936021] [to:+13479373310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028173641] [to:+19027046462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525489304] [to:+15102547960] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432461639] [to:+17315744398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033314503] [to:+14695325581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400130202] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187712503] [to:+15104476417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166047231] [to:+17162791631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146244139] [to:+12138613753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075912320] [to:+13219996705] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039994816] [to:+12264552278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106654735] [to:+14028921088] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311672] [to:17735364543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046833761] [to:+17572969754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008276] [to:18156314455] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037529] [to:16307880583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145847] [to:17608719881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:15082325464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185991576] [to:+18724008819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17654070010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055865839] [to:+12135298456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:19054072337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145328599] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845488449] [to:+16107138898] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264551157] [to:15192772285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:58 ip-10-0-0-11 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372052382] [to:+17409101881] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:58 ip-10-0-0-11 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185389138] [to:+14073371001] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-11 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049963] [to:14036176095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:58 ip-10-0-0-20 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253102] [to:13366577006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077937455] [to:+16513337622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783962752] [to:+12135295981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327744679] [to:+18506313742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011966597106102] [to:+14158907880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174354065] [to:+19177229726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403213325] [to:+15204336132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366213] [to:12765947306] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068009005] [to:19025794532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366213] [to:12765947306] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19209032554] [to:+19202158482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852084175] [to:+17014122390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15406212855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093135409] [to:+15612319612] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532985766] [to:+14073371857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264412] [to:18285145827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095330] [to:15144624467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862649] [to:+16463490167] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245186012] [to:+18729996768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236506941] [to:+13478683708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532985766] [to:+14073371857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269230052] [to:+12262408420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576463] [to:15412368519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:17272713208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479618849] [to:+16474912654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522072568] [to:+16503008157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15204041616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14383451357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-11 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-10 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-10 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:447520620935] [to:18764721888] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-10 mdr: 2016-02-01 11:10:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-10 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-11 mdr: 2016-02-01 11:10:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-10 mdr: 2016-02-01 11:10:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-10 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144624467] [to:+14388095330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-11 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-11 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-10 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470035] [to:18655826536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:18317069406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-11 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136005697] [to:+16136048898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729476069] [to:12819086266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18033684624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063812861] [to:+13064003105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-21 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156401512] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195881114] [to:+18192011020] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282448967] [to:+13126311917] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314069815] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619932095] [to:+16612287943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378448053] [to:+17277679599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890201] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178501979] [to:+13479977545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866161419] [to:+13053405890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+18108528075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-11 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890202] -Feb 1 11:10:06 ip-10-0-0-20 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-11 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-11 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-10 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017219376] [to:+17012892696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-11 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139262959] [to:+17604743512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-21 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447951548439] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15185368226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045909645] [to:+14243361740] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033F0201] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307202009] [to:+12342312846] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338555] [to:+16475569061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327744679] [to:+18506313742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-20 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673834] [to:+447939056991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-11 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095369319] [to:+17636346693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-10 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434965824] [to:+19172833937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606318205] [to:+14256789384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069909] [to:19105569957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614591112] [to:14056833517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609909746] [to:+13479808250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608307067] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659695996] [to:+13475807505] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041906] [to:15066080971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178402600] [to:+17607014628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:13474529564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197192247] [to:+19027031529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742816635] [to:+12139296356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-21 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046462] [to:19028173641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946811] [to:19046577337] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068883634] [to:+16139098566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324013360] [to:+12815957550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137778130] [to:+18609710345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874055546] [to:14039195511] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069601776] [to:+13069930241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033F0202] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022754] [to:+16418632137] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262413387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:15042587791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144792334] [to:+19529778850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967679] [to:18303926859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576463] [to:15412368519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476675630] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163000259] [to:+12135296951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068759537] [to:+15068019637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:19542137444] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417354091] [to:+15415392535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202920094] [to:+15094360132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17805074903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128830471] [to:+13126311276] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853078458] [to:+15852824394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106536914] [to:+13479787545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675152897] [to:+12679525664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012100539] [to:+17029960317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17175909035] [to:14802089806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-10 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-11 mdr: 2016-02-01 11:10:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315330] [to:19378299028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-10 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498529] [to:15598059900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-10 mdr: 2016-02-01 11:10:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19209032554] [to:+19202158482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404170] [to:16173066298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-10 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157977] [to:18066622008] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-21 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447828999265] [to:+447418323585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079511430] [to:+18572190737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-10 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517964336] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-10 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555694] [to:12262700176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068759537] [to:+15068019637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-10 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12262013048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-10 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188622] [to:13477548985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:17722227080] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15053221895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889733] [to:13175137664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406362] [to:19136834345] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868286] [to:19712038853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087921489] [to:+12085012698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262413387] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198231] [to:17196616788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464625688] [to:+17133894411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17627280071] [to:+19027004352] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235563496] [to:+19282977004] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999375] [to:16472367463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:12245186012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035143] [to:18194730399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-10 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-20 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447830879497] [to:+447451230842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-11 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102834] [to:19089435156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158909438] [to:19048024561] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13033508877] [to:+12134789693] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099961] [to:17739936610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912440] [to:15062297878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470035] [to:18653846223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134912028] [to:+15134567683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108052594] [to:+13369382050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062048624] [to:+19148988160] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852247561] [to:+14153404745] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15099646061] [to:+15097397509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432897979] [to:+15169269229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134491206] [to:+12148567440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083414711] [to:+15084414047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15873787468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663098] [to:12313351186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003290302] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003290301] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799301] [to:19072445056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137822018] [to:+12482068388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003290303] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248843588] [to:+17249939081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159582] [to:18326660674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094057552] [to:+12099923532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-11 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183849215] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746358] [to:13152251945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084622202] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17088256564] [to:+13199835047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692005499] [to:18084645933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796923127] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12507318176] [to:+17786549440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702998655] [to:+19148988507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138121] [to:16035628899] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17165238720] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-11 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546526983] [to:13365211379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042924739] [to:+18046244510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D70201] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042924739] [to:+18046244510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D70202] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735668] [to:12036288413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568411] [to:15404700544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708821018] [to:+16784342890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13233601138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083414711] [to:+15084414047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173812290] [to:+19142286476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699722] [to:12029105420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012698] [to:12087921489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565302297] [to:+19177374380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565302297] [to:+19177374380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958138] [to:14435150780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739564] [to:+16042651693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-20 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392260766] [to:+17329869517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086913746] [to:+17739433687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:19082357944] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065312461] [to:+12048179630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534356] [to:19498133017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092800537] [to:+16477997300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500248] [to:15187743860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175074658] [to:+19142795528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845312024] [to:+14844124316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:19053927565] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729406961] [to:+17723601672] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12624704197] [to:+14132736961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730247] [to:16018317393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497276] [to:12294741638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448074] [to:12283657679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18146029430] [to:+17205852202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634435] [to:14699782274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677703] [to:18144391701] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148216] [to:+15082711281] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-11 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706050548] [to:+19725977208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463927582] [to:+17817863384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+16139094439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:16138595949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066381200] [to:+14064042730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194829253] [to:+19199166930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619320467] [to:+19252397684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12168203452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784854] [to:12602013170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784854] [to:12602013170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372591] [to:15803646879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240575] [to:19195279700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786636148] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256412] [to:18633262894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-20 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447411409468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:15875107256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163386913] [to:+15703974264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538018] [to:17077242836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-21 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-21 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447549569849] [to:+447451206691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-11 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743140029] [to:+17749921701] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707185] [to:13045315577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642099] [to:19415872209] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340566] [to:14349961449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243948926] [to:+17475001138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086913746] [to:+17739433687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684159] [to:19376949203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563466612] [to:+15124007062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163249552] [to:+17025085511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134533416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-21 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447764568511] [to:+447451207440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:17809350690] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-20 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447806095884] [to:+447520629899] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854513818] [to:+15852821958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537132] [to:12144669203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109045694] [to:+13125099864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132649410] [to:+15133860375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375092672] [to:+12162393747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059207367] [to:+17059102224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102834] [to:19089435156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537776026] [to:+12533361832] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:18502843155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771892] [to:14093383499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018601739] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443856] [to:+13024002988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:16179837600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13233595361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069909] [to:19105569957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373424] [to:13214398941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048095696] [to:+12048001059] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409798920] [to:+14243364095] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565203411] [to:+18133087918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407330] [to:12069811857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076943509] [to:+19599999401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157469269] [to:+19177731505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:14502881851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188622] [to:13477548985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:17605341900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849084641] [to:+17206232827] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138542447] [to:+15617051916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257763] [to:15418708500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046577337] [to:+19046946811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12262416285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049098746] [to:+18046245700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:19057465899] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-11 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384041529] [to:+14387940473] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017321] [to:13047856368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13474320212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087920] [to:13154361346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845826808] [to:14843624765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-11 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077389282] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13343330341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039260] [to:13065263861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-11 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476675630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-21 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710239125] [to:+447451207440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366577006] [to:+14153253102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-10 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183911425] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777028] [to:14197051972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018626] [to:19023290999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195880023] [to:+14387922237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:14156105110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479488909] [to:+16465641750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477610874] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135990] [to:18168253430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:15853078458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024973940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802089806] [to:+17175909035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722134307] [to:16183351715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585821] [to:15175888414] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-11 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077706] [to:12403380952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19012337442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565302297] [to:+19177374380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-10 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206820679] [to:+12137978314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-10 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144225] [to:15134623660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-10 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102095923] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-10 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755679] [to:18025829314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-10 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-10 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421616] [to:15199022477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067679] [to:18436151271] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017060296] [to:+12136946133] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486608] [to:17176665184] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614915633] [to:15618913338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:15752688237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608719881] [to:+17603145847] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439353] [to:15404485266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188753949] [to:18184043427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730660] [to:17066998976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076213892] [to:+16079655988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036176095] [to:+15874049963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-20 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153728451] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273206741] [to:+19415255342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849353] [to:12526196095] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743605405] [to:+18572195907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-21 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-20 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447555020510] [to:+447418332855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-20 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457646490] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188210436] [to:+18126709055] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605197010] [to:+14693537945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153601844] [to:+15154438476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999328] [to:14169394091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048229078] [to:+16785868047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:18646490434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217142] [to:19073786676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940051] [to:18123193425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807101] [to:13153989359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735474172] [to:19738511046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653846223] [to:+18653470035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793079] [to:12262353454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837283] [to:16033124162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777028] [to:14197051972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056089] [to:19024018206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147635257] [to:13145189201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896754628] [to:+16475039712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190737] [to:12079511430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995727] [to:16475309176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750761] [to:+19715128760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459599] [to:14199612327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13472328671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393053] [to:14406675674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336338] [to:15029024105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148250882] [to:+14387922431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703318501] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235799661] [to:+15103131428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-21 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708783522] [to:+16784338373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605197010] [to:+14693537945] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:19044130323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188559] [to:19174205426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869860197] [to:+13867423381] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16055154728] [to:+16058887912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15097397453] [to:15092512206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155324401] [to:+18508950377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146907367] [to:+14144005720] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14699782274] [to:+19404634435] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19403374507] [to:+19032130535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134533416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17807730490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652279096] [to:+18653470273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035438] [to:18199302907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360132] [to:17202920094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058363883] [to:+12894601411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077575834] [to:+19039004944] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479842251] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603718] [to:19197095515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787545] [to:16106536914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975949] [to:15204605952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005404] [to:12042715170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815611] [to:19178802674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097823854] [to:+12133550267] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148567264] [to:12145768009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19162437681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517964336] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568239] [to:18042057555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032192204] [to:15415300412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712499715] [to:+12029991541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703749498] [to:+13145488536] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107938] [to:18318695480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327642925] [to:+14706731635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383466436] [to:+15817020101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-20 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670739] [to:+447875783503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040338] [to:+18582568981] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027030573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874055546] [to:14039195511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034648394] [to:+15873299749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404878054] [to:+12026015612] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477561977] [to:17737393244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995727] [to:14134550853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159046] [to:13373715942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CB0202] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159046] [to:13373715942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-10 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058163158] [to:+19172668011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616702831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-20 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-10 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154589] [to:+17726175856] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:12674071467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13472328671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372101121] [to:+14242769608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250763] [to:17174141455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088024] [to:16364399081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063333924] [to:+15068036557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702735] [to:17407513485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036143604] [to:+14388042401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486909] [to:13079967773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522582461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018743313] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783138251] [to:+16418437912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793079] [to:12262353454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036192194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666068] [to:13012322004] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312997051] [to:+15163314785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676237] [to:17577297298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198095041] [to:+18193035129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:12135001067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142074869] [to:+12626481189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038A0201] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142074869] [to:+12626481189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038A0202] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453617] [to:14438446989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603055806] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204476094] [to:+15204336478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134912028] [to:+15134567683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706240153] [to:+16784342703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:15874474713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145815] [to:14422459755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999094] [to:18624143512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609313254] [to:+19177086890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833658] [to:17022018705] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012487671] [to:+17015872351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697342378] [to:+14692028216] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038018052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038018052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025175937] [to:+16157779040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015869] [to:13865852128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16177084809] [to:+16177065938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106899802] [to:+12133756282] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142605933] [to:+14387922060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645545912] [to:+19172834340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133445896] [to:+19142063866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013313349] [to:+13017786256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212171967] [to:+14692057146] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324728683] [to:+18328334412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658949269] [to:+19492453897] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12408382876] [to:+13012885260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003CB0201] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165798841] [to:+14242867321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179108187] [to:+13175370310] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225318] [to:14797474432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225318] [to:14797474432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993036] [to:17164908720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083290] [to:15025534883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375933] [to:12488182949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-20 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-20 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-21 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249745] [to:+447999815339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19146897163] [to:14698678725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12628088355] [to:+16167948124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159089022] [to:+14157879033] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003720201] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12525584844] [to:19197252445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-21 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463008] [to:18324176370] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19855100348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191525] [to:17742833626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844828542] [to:+17063959468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336983] [to:15204605938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597362075] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084645933] [to:+16692005499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788009776] [to:+16304892973] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428165] [to:19044709077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016421543] [to:+12405732485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057960896] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849861934] [to:14847534316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-21 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447773355590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774269] [to:18572444276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-11 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103005] [to:14144354370] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-11 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-10 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-10 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-11 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702998612] [to:+16139122924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-20 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-10 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263448875] [to:+19027031444] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-11 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-11 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13146964364] [to:+13145488416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-10 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-10 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-10 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139098258] [to:16133304980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298790] [to:18432712007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184040] [to:13524261959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184040] [to:13524261959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383449] [to:17047546005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857643603] [to:+12693366273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403835521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:14425009009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-10 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-11 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-11 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13104635365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808861781] [to:+14804394796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018682995] [to:+12135878646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500956] [to:13363012603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677135004] [to:+16136044017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335194] [to:16093358592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153299104] [to:+13217309392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336510] [to:17182001450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202486067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408776254] [to:+17408798355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178261075] [to:+15612318722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486608] [to:17176665184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016925243] [to:+14016489925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035143] [to:18194730399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:12402647966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328025406] [to:17132566795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154828] [to:+17474006434] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003720202] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-20 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452269] [to:12079749402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049963] [to:14036176095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328781232] [to:+18639491238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379164] [to:17575758005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262363127] [to:+12262410626] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611011] [to:12892704750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221030] [to:14847197736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786291743] [to:+14043900508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347546] [to:12485216648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347546] [to:12485216648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262363127] [to:+12262410626] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+18108528075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319034867] [to:+12679525339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328580] [to:13155423998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094868130] [to:+14502325412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223656] [to:17606766126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809205321] [to:+19726665581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173745258] [to:+18173635919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262363127] [to:+12262410626] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162069399] [to:+16477999177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809205321] [to:+19726665581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:17022658155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166400714] [to:+12167776786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572406107] [to:+12405538727] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153728451] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988167] [to:19292482933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361389] [to:18438581684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092895035] [to:+14088725919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179872924] [to:+15047027250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809205321] [to:+19726665581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:14133499023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17022018991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+14088778415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606685498] [to:+12604077170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176631266] [to:+18729995785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154361346] [to:+13475087920] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047352973] [to:+19172833260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411171] [to:12034355422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508572363] [to:+17784030979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677703] [to:18144391701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-10 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674080999] [to:+18084681029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-21 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404535152] [to:+14406587195] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122161143] [to:+15129523198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169394091] [to:+16477999328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603718] [to:19199221360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541773] [to:16042602976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286476] [to:14173812290] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475287773] [to:+14259845653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168369819] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644259017] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022896] [to:16124582231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16034774307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012487671] [to:+17015872351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018626] [to:19022983763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:12084254285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673222627] [to:+12674377094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083135773] [to:+12627775041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674080999] [to:+18084681029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525037735] [to:+18133086007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024782467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088970264] [to:+15094360062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010386] [to:13365648193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024018206] [to:+19027056089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793079] [to:12262353454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032791059] [to:+19039004572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647605123] [to:+17866079892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317304168] [to:+12313778176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-11 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-11 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-11 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-20 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326423] [to:+447834687641] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-21 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-20 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326423] [to:+447834687641] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-11 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182908458] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-10 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147173313] [to:+16149965901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-11 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-11 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312418432] [to:+12019480019] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102095923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381533] [to:13108696607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381533] [to:13108696607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:15077665234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-20 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003DD0301] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142620930] [to:+15817009445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030573] [to:19029510018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056370270] [to:+18054105987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462716910] [to:+19292201905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-21 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534446889] [to:+447418330834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-11 mdr: 2016-02-01 11:11:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-11 mdr: 2016-02-01 11:11:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19099158665] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-10 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165749150] [to:+15168302163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-11 mdr: 2016-02-01 11:11:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-11 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165749150] [to:+15168302163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-10 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-11 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-10 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183911425] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13108782969] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+18582568539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-10 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:16304421468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14794317446] [to:+14158539185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12628088355] [to:+16167948124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092534] [to:14059227067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859427] [to:14138134467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:16785129333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135298633] [to:17012159592] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-20 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163235373] [to:+16163266438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359862] [to:19375450582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063026362] [to:+12138221952] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17027580480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623867708] [to:+15107799595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003DD0302] -Feb 1 11:11:18 ip-10-0-0-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-21 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805901364] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043895] [to:12109201365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-21 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-11 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602155] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545152062] [to:+19546412951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843624765] [to:+14845826808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600762] [to:16478777787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704123718] [to:+17702005892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:17134234604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-20 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-21 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053927565] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178436051] [to:+16463490451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692427] [to:+18572406032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403608974] [to:+17408796736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082001960] [to:+17089467172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194534898] [to:+17199990152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809373976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018626] [to:19022983763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017034] [to:19105840891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034530] [to:12147858558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031452] [to:12249448557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425404] [to:12704042589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126981024] [to:+18328334252] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-20 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174141455] [to:+19148250763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860427] [to:15134357824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17075967787] [to:17073383290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482910] [to:13478694054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034562] [to:14074164423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:15707653473] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074563373] [to:+14072160331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-11 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003DD0303] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573865809] [to:+17572969729] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:17343291869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086705988] [to:+16465473544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-21 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447969961469] [to:+447520670729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EC0202] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020834] [to:16788866543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436530] [to:18328341182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136183787] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015056] [to:19102794841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003C20201] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-10 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403402] [to:18604360560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024782467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064209041] [to:+12064009178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787238751] [to:+13479067600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193195059] [to:+18193035025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-21 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184040] [to:13524261959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164908720] [to:+16474993036] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664648] [to:15207882230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287080342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503377268] [to:13864810091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:16785129333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203354] [to:18136249272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966915] [to:16785920399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269403927] [to:16262538738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077597] [to:15147587630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18575264401] [to:+13477869438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026900] [to:15875004660] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C20202] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376949203] [to:+13478684159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15208122711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19154006651] [to:+17736666773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402647966] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344712987] [to:+18046246592] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:17343291869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806969258] [to:+19282975489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993017] [to:14077054831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479491518] [to:+13473799260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286675] [to:12298054423] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147081003] [to:+14502336799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065336324] [to:+13069938137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174786833] [to:+17279986197] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769608] [to:19372101121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473047266] [to:+13478969758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174786833] [to:+17279986197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12083394005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223656] [to:17606766126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488182949] [to:+12485375933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102095923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027714396] [to:+17027184937] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473047266] [to:+13478969758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193195059] [to:+18193035025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185859] [to:13476363386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084645933] [to:+16692005499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-11 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892844] [to:13475439368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:16018743313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056089] [to:19024018206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-10 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-10 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014074112] [to:+17184169643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486608] [to:17176665184] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052067921] [to:+17053001751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:18654155357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-10 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732763] [to:16109062308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798943] [to:16072386906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285814658] [to:+19282977063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573899174] [to:+14132519324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704269537] [to:+13234865563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17075967787] [to:17073383290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160331] [to:14074563373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298547274] [to:+19292200778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142080] [to:16083339274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034716] [to:15156613178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13152883292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921699] [to:16023139998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743605405] [to:+18572195907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058163] [to:19028303615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569322] [to:17162086987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879321] [to:15754490479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778135] [to:14083759112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-21 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451230850] [to:+447591716567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-20 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134357824] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255884923] [to:+12139296253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863797] [to:12104607914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574700737] [to:+18046245122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093358592] [to:+15204335194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142027637] [to:+14692053070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715897111] [to:+15714454127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215121213] [to:+14076333744] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:15309688683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999328] [to:14169394091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179756] [to:17032002756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124724] [to:19712839670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862233980] [to:+17865673637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-11 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261729] [to:13477768847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164908720] [to:+16474993036] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-11 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154063] [to:+19172592726] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19163846952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367444133] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434616932] [to:+12138619382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073745] [to:15197032124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-21 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447546675679] [to:+447451217431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692005499] [to:18084645933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128449932] [to:+19122084463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777028] [to:14197051972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496231] [to:13478420787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13153728451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789728] [to:15519994216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-11 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12162355858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:12135071715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132621272] [to:+18193035063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:15874474713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132621272] [to:+18193035063] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-10 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-20 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077389282] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009178] [to:12064209041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15026001554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165419305] [to:+18722535141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929727] [to:12508994770] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169160] [to:16035932884] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020101] [to:14383466436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145866631] [to:+14198430599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16602009408] [to:16602810512] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436938] [to:15198172328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960783] [to:19173851973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17732402790] [to:+17604743810] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393061] [to:12165758972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16088510175] [to:+18133086789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053591570] [to:+17184812872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802810448] [to:+15873322555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189219751] [to:+18127816413] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970837] [to:15865225184] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17732402790] [to:+17604743810] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-21 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-21 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447852965335] [to:+447451231301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131428] [to:14235799661] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863252] [to:12525182529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12523750930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038703006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:12056718020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477605475] [to:+16475570260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062297878] [to:+16474912440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411271] [to:14706856747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997381] [to:14164198350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024722644] [to:+14804393573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18142186063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024018206] [to:+19027056089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410722] [to:15192228980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377251] [to:12679127698] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377251] [to:12679127698] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-10 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-21 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333539] [to:+447960680778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038703006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502186734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502186734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042023647] [to:+17607306797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286412] [to:15406760377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807428250] [to:+15874049911] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873258028] [to:+15873323073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632021363] [to:+15632597959] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004352] [to:17627280071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243870058] [to:16308065491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338575] [to:19177677985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802418999] [to:+19252397754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-21 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430611] [to:14195597915] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12197981544] [to:+12194408336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156401512] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064002420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683806] [to:17867128450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660626] [to:15026048035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572071390] [to:17542631944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17808918514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040521] [to:15067214345] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542137444] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393061] [to:12165758972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-11 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17256669121] [to:+17029565327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927735] [to:15142475823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16625796240] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-10 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-11 mdr: 2016-02-01 11:11:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17078202142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-11 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-10 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-11 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-10 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-10 mdr: 2016-02-01 11:11:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-11 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-11 mdr: 2016-02-01 11:11:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305220] [to:+15068039060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719950] [to:16303330914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16625796240] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884976] [to:12298601231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477391449] [to:+17053007506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975885] [to:16025033675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375450582] [to:+12139359862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15209755785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579278566] [to:+14697516983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925651] [to:15149961766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-21 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327653] [to:+447864995225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-21 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203352] [to:+447555750984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857149] [to:12026976749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:15707653473] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:18126798815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:17734254670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15039644132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15039644132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175086996] [to:+19142798542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288990] [to:18452820855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-10 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-20 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447914191789] [to:+447451231733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436159] [to:12817394544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024062763] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-21 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432610437] [to:+447418338190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293155] [to:18503488148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16514105056] [to:19062824454] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-11 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615883] [to:19899166116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843358578] [to:+14848164880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477385169] [to:+16474955950] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125927982] [to:+13866018901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895339164] [to:+19894986001] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142518834] [to:+17142153623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895339164] [to:+19894986001] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372052382] [to:+17409101881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-21 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579278566] [to:+14697516983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-21 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332855] [to:+447555020510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015880662] [to:+14243364069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:13132308199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956368] [to:13069404475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852202] [to:18146029430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059220380] [to:+14803008789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-10 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-20 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:MSFT] [to:+447451249192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-11 mdr: 2016-02-01 11:11:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-10 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153728451] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-11 mdr: 2016-02-01 11:11:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-10 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177896038] [to:+12135593041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-10 mdr: 2016-02-01 11:11:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15058188849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:15599170769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191525] [to:17742833626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168203452] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785757] [to:16099721415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13232910726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16514105056] [to:19062824454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927735] [to:15142475823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14699782274] [to:+19404634435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182908458] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406675674] [to:+12162393053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164180402] [to:+17166661125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144171121] [to:+18133203549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073827343] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168369819] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049899861] [to:+13217309524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593604474] [to:+12484601442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041563] [to:15134654128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047160707] [to:+13478086321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698746036] [to:12146723555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430804] [to:19133963319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308062733] [to:+12343077661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-21 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236463088] [to:+19802093921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960783] [to:17026192728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785175770] [to:+17702005161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477561977] [to:17737393244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349325] [to:19856873186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308062733] [to:+12343077661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349325] [to:19856873186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349325] [to:19856873186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:19062414983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862022122] [to:+15863315923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004352] [to:17627280071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563992481] [to:+16784338524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169394091] [to:+16477999328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724058] [to:15856257778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993036] [to:17164908720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824043] [to:15858990149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063362708] [to:+12136349946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086693700] [to:+12138063359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12175027747] [to:+19726665632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17162533907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559572] [to:16477190423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-10 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13153728451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572071390] [to:17542631944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-10 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107735] [to:13527923883] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137788910] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:59 ip-10-0-0-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:59 ip-10-0-64-11 mdr: 2016-02-01 11:11:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011966582710302] [to:+17324447796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:59 ip-10-0-64-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:59 ip-10-0-0-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805812] [to:17176760049] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:59 ip-10-0-64-10 mdr: 2016-02-01 11:11:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042998066] [to:+13479979945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049741164] [to:+14426007670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:19542137444] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:19739917984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075961302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027440] [to:15136962797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786641] [to:13345447365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-21 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455923] [to:18182177945] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-21 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:17047056257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785442523] [to:+17702005481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326476920] [to:+18484824223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052016729] [to:+17727667355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154217] [to:+18102218411] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632785] [to:18178621294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:15098443839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997381] [to:14164198350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-20 mdr: 2016-02-01 11:12:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208480] [to:+447710134432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853910850] [to:+13013578295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19154006651] [to:+17736666773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474898300] [to:+13478682310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-11 mdr: 2016-02-01 11:12:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:15593659085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967293] [to:17039450982] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-10 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:12084254285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-20 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451236390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:12673449847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082146] [to:18137661518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126648226] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293155] [to:18503488148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-10 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15676949713] [to:+14198430969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262431652] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506515198] [to:+19027021814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960669] [to:17272510803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084627728] [to:+18585199908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12294448073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242242160] [to:+17279986143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17085410150] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16055154728] [to:+16058887912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635855616] [to:+18639491369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313105964] [to:+17206235419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106389338] [to:+13866015178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040442] [to:+17122277800] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003190201] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13238411078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040442] [to:+17122277800] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003190202] -Feb 1 11:12:06 ip-10-0-0-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608307067] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037168222] [to:+16034133653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883373] [to:15307197163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073745] [to:15197032124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-11 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672968630] [to:+13866012068] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437086718] [to:+18638553437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-20 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766226951] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17808852759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:14164320213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001751] [to:17052067921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328818285] [to:+17325274074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15068011586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573382183] [to:+13479067456] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-20 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447563644828] [to:+447451241800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235348741] [to:+17074032311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:4915735990577] [to:14106903468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047371] [to:14167006779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207414717] [to:+17727740847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16014412506] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-20 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451219796] [to:+447572374537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017473] [to:17406415575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333691] [to:14045635711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13309517408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975489] [to:14806969258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493590799] [to:+16475038464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641094] [to:17174488910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143634] [to:19549371606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158694754] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19129966500] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:18317069406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237425893] [to:+12134783774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344259373] [to:+17187479689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138022948] [to:+18133206933] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018346488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083197] [to:13155762003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897790241] [to:12894402495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-20 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134242598] [to:+13479191926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025291370] [to:+19027058517] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404323224] [to:+19715123239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513809880] [to:+19513640895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:17758432110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262431652] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046492856] [to:+16043050764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434709] [to:16077612739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235799661] [to:+15103131428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-10 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073383290] [to:+17075967787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-11 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134654128] [to:+17185041563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505401287] [to:+17784024742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364031] [to:+13479714697] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024663442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083387018] [to:+15129525124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12163094777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055804069] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278038] [to:13235721943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043895] [to:12109201365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196778] [to:18149208126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:13174039644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149159598] [to:+14153260711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884976] [to:12298601231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037329] [to:13362259445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402430951] [to:+13479809244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13238758269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-20 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447411409468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235705] [to:14799357419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282168538] [to:+19725251516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782938898] [to:+17727668679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856878604] [to:+19542994820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266280] [to:13167128678] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0201] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377187793] [to:+15108538047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-10 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-10 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0202] -Feb 1 11:12:17 ip-10-0-64-10 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-10 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364319] [to:+19148250064] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-11 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144107977] [to:+19086597598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002147] [to:14043372897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16055154728] [to:+16058887912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-10 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436023123] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18188353670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024362] [to:16133609707] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041988] [to:16134072605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-10 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-11 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-11 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16194962840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097494] [to:16477932295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892844] [to:13475439368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015524] [to:18052330557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406212855] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149963091] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242395946] [to:18598038784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593776] [to:13092308164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141242] [to:16317802443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297304] [to:13855197675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338575] [to:19177677985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:17078806798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-20 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035770363] [to:+19802093495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12892755984] [to:19053218900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440408] [to:12522456167] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086141] [to:13473598272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921069] [to:15178178217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198000373] [to:15639290133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156314455] [to:+18724008276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684159] [to:19376949203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178080629] [to:+18724008896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-10 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-10 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-10 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-10 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-10 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145029184] [to:+16474965281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-10 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-11 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15332645162] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-21 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824887] [to:15023315178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:18324179270] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:13479518510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:13212458232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:13212458232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373310] [to:18596936021] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:19519731522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308344] [to:18509825638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058517] [to:19025291370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:18324179270] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148456] [to:13252264906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19032155434] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134737] [to:12035401024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-11 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-10 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13479289245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-10 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:19283776421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716880559] [to:+14693019991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808131] [to:18102213639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15014081073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632785] [to:18178621294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604710] [to:18596122859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-20 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:15102202516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487294] [to:18033108981] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487294] [to:18033108981] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768105] [to:18645296242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-10 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502912] [to:15596458992] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842522504] [to:14847979249] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174036646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739936610] [to:+13125099961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286289] [to:15406840843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696778] [to:15403928032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734029085] [to:+13203073491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546240178] [to:+12542338287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306139231] [to:+19164690442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068895953] [to:+19047581495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060488] [to:15402907358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695984] [to:+19787869253] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13024802232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732763] [to:16105630419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041563] [to:15134654128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042534] [to:14167167528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086321] [to:19047160707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528468] [to:14405918610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027030573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:15194949400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:15194949400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037269475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037269475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146579984] [to:+17607014068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17276660386] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15209882506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13038018052] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018346488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172129096] [to:+15088349360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502303473] [to:+14388040448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:15073297473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:15073297473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:18635328940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187827817] [to:+17702004807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086100] [to:15142139710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735668] [to:12036288413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652793234] [to:+18597777067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15068011586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034774307] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025291370] [to:+19027058517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102806324] [to:+19729478937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13479289245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066080971] [to:+15068041906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057681050] [to:+17059101813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030931] [to:18198160616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455931] [to:12094053678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048836130] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149963091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786380097] [to:+16043050556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146900483] [to:+14388042551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996437] [to:14807984723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195880023] [to:+14387922237] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132938070] [to:+16474913651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:19045548803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046606562] [to:+13369382199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975489] [to:14806969258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132938070] [to:+16474913651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646633004] [to:+18572329545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-20 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217431] [to:+447546675679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285814658] [to:+19282977063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-20 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577548219] [to:+19172593726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:16147876473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-20 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-10 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029896] [to:15133015153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784854] [to:12602013170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737913] [to:16109902891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19042587588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434709] [to:16077612739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015898] [to:17025331183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015898] [to:17025331183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967293] [to:17039450982] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19098336905] [to:+17142153854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101524] [to:14036146629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:18033486654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124366] [to:12674492223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373715942] [to:+19703159046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13462179877] [to:+13479787799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422090] [to:19183991084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135298633] [to:13202232286] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668957] [to:16362900303] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668957] [to:16362900303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896397] [to:16032048050] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:15157799017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:15157799017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265007219] [to:+12267984039] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133302274] [to:+13479978725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784577754] [to:+13477147420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319251] [to:+15852825057] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612310549] [to:+18326538324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594026107] [to:+15108838487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235705] [to:14799357419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154420] [to:+12343077889] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123235330] [to:+16465130324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034774307] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-11 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002651] [to:16476256627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147437] [to:19895289045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-21 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073745] [to:15194409863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128023289] [to:+14155944311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178178217] [to:+15174921069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143505038] [to:+19292689892] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048744207] [to:+18046244029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314090629] [to:+19312577585] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018346488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808635791] [to:+15874003161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036181796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089668809] [to:16179804678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159144915] [to:+18724005469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045499451] [to:+13475089646] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-20 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447852965335] [to:+447451231301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372101121] [to:+14242769608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800149] [to:19092386828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921952] [to:17063669656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163062] [to:12526704111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274828] [to:13184507554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15413212741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18507608677] [to:+13477989540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325606277] [to:+17278601946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276660386] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874054458] [to:17802215692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014074112] [to:+17184169643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364588992] [to:+12138063375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064501706] [to:+15873321634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475524525] [to:+16319802124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852079026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025829314] [to:+17186755679] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024608006] [to:+14433453910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139995124] [to:+13137690110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704936313] [to:+14025002634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-10 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-20 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322337938] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055380] [to:12146623179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174386591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719881] [to:16033159981] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16014412506] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502027] [to:15403132472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:16787647278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132566795] [to:+18328025406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668957] [to:13145328599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099961] [to:17739936610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220502] [to:15183849215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:18154146950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134654128] [to:+17185041563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-20 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039446622] [to:+12816032372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176293947] [to:+13476191142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176293947] [to:+13476191142] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805689287] [to:+16233837043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627155] [to:19193083262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852079026] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16615654944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522174672] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16615654944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:12533551786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228093] [to:15403795402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025908625] [to:+18127816046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023078] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031752] [to:12053787730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242746955] [to:+16474917197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262529498] [to:+12138613436] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-20 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13174904373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174488910] [to:+16465641094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-21 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451236390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792332] [to:13522564744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471528] [to:18657409049] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883373] [to:15307197163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888010] [to:19102294711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158190902] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-10 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696778] [to:13047638930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852992818] [to:+19142286477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474909953] [to:15062333037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-10 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:18154146950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852992818] [to:+19142286477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268207] [to:14015277688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997298] [to:50246907853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732886] [to:16314640288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605173147] [to:+17816138564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567014655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147286088] [to:+15204333895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501272] [to:18035568946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:19294210194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283836862] [to:+14426007907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019517] [to:17099865021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303540953] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041988] [to:16134132026] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194294556] [to:+15103223898] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888271] [to:17194641526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14087948034] [to:+14158594156] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067816] [to:13157097130] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797326] [to:17407043508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277849] [to:14035596019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272710067] [to:+12086202962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007518] [to:15147468961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852014807] [to:+15852823243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192603996] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:17753409761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19379037510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884976] [to:12298601231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999328] [to:14169394091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218284] [to:18433670586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:19053927565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026001554] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528754791] [to:+12138220752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478737617] [to:+16474993283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191984] [to:17086749441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053004606] [to:+13052038994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046101599] [to:+19784009599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106443540] [to:+13477696957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063362708] [to:+12136349946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19032130535] [to:19403374507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785103053] [to:+17747288291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092895035] [to:+14088725919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-21 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447704045859] [to:+447418322841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695563595] [to:+14697515424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694925648] [to:+12486393436] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296690599] [to:+17278196470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643478865] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477020275] [to:+16465470696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635855616] [to:+18639491369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085186970] [to:+12626482748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608307067] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025291370] [to:+19027058517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474810103] [to:+16467389556] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955297] [to:16475298995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277849] [to:14035596019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277849] [to:14035596019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:16787895763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702170671] [to:+18729996288] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196416348] [to:+19199162332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476243005] [to:+17053026200] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667825] [to:18565066304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15204650261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008276] [to:18156314455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13619067361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024878] [to:16134837170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086856001] [to:+17193437923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024878] [to:16134837170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024878] [to:16134837170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187298299] [to:+13473436340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086141] [to:13473598272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645088] [to:18058351676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946223] [to:13522017715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501272] [to:18035568946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013703925] [to:+15103222295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173031451] [to:+15413257773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605192924] [to:+12602777591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862916264] [to:+13059014557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-11 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:58 ip-10-0-0-11 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183351715] [to:+18722134307] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-11 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:58 ip-10-0-0-11 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364086] [to:+14153405797] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:58 ip-10-0-0-10 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-11 mdr: 2016-02-01 11:12:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-11 mdr: 2016-02-01 11:12:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-10 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-11 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-11 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462996248] [to:+13013552497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-10 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-11 mdr: 2016-02-01 11:12:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-10 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-11 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:15752688237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:15599170769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17276660386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19284043460] [to:+19285992681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782384288] [to:19072503472] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174386591] [to:+15178615956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404282] [to:12093272892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034530] [to:12147858558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302084983] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266330] [to:+12497009278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242395946] [to:18598038784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099961] [to:17739936610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-10 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-10 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860427] [to:15134357824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17732363818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326660674] [to:+19703159582] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750903] [to:13176986493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036361809] [to:+12134017673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206468] [to:+16474951948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501272] [to:18035568946] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527779] [to:17408177168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433670586] [to:+14242218284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065263861] [to:+16475039260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:19052696097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603300745] [to:+17813862903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-11 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921699] [to:16023139998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-11 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-10 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:18634307477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030979] [to:12508572363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124786734] [to:+13123009388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:18634307477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959468] [to:13463133527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018499127] [to:18016388071] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730906] [to:18159045338] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872246] [to:17019343278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601664] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087918] [to:12565203411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041563] [to:15134654128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:14045791261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027382085] [to:+17027478596] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087918] [to:12565203411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154156] [to:+19172593386] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328341182] [to:+12816436530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024266722] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-21 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-20 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041988] [to:16139860676] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434709] [to:16077612739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147876473] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833352] [to:14092218878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027382085] [to:+17027478596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292696963] [to:+19513387225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653846403] [to:+16164200064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-10 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073474632] [to:+19149088695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089668809] [to:16179804678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-11 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-21 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234854] [to:+447729823648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:18034141371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-10 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027382085] [to:+17027478596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995785] [to:12176635529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039712] [to:12896754628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473100] [to:18659190013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029569920] [to:+15028049458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852992818] [to:+19142286477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403132472] [to:+17077502027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183991084] [to:+12819422090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864818986] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032007055] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-21 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17023323394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148124] [to:+17727668264] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076189549] [to:+16465136310] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159144915] [to:+18724005469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432461639] [to:+17315744398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253889] [to:17272043026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327740] [to:19152135955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315153083] [to:+17786540587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053941845] [to:18059465006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794849943] [to:+16465137877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477022556] [to:+16474947170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-11 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254021179] [to:+19362616158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-21 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737393244] [to:+18477561977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106628845] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931246] [to:15149163410] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378967683] [to:+19047587257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127360] [to:13018734672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245035368] [to:+17248035417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165804211] [to:+16474993092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:12143037349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478937] [to:19102806324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088478] [to:12043920989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049805080] [to:+17748554194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136718484] [to:+12482833181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18126648226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134654128] [to:+17185041563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676839095] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666398] [to:17736191807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14799357419] [to:+19543235705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105386] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675599103] [to:+17185040237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-21 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502187526] [to:+17784020235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137015633] [to:+16139093236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549440] [to:12507318176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738814306] [to:+12138228892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946811] [to:19046577337] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641094] [to:17174488910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582203] [to:19045015157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463927582] [to:+17817863384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146244139] [to:+15169260561] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-21 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451219796] [to:+447708727733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-20 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-10 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-21 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:MSFT] [to:+447451249192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233040541] [to:+14156498163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-20 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233040541] [to:+14156498163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007908] [to:14146986415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477022556] [to:+16474947170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364710040] [to:+19783231437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16419036269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:16042834501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057793728] [to:+15103278225] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13255143437] [to:+15754483986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375439920] [to:+12488347187] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-21 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875783503] [to:+447520670739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203075440] [to:13048091100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946223] [to:13522017715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18637127029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192772285] [to:+12264551157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-21 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702031963] [to:+17702004930] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062414983] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:12522174672] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956368] [to:13069812377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202789174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405090923] [to:+15617666160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17758432110] [to:+15304883680] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735668] [to:12036288413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358244] [to:19198106745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748562] [to:18594660319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009529] [to:17326820537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329840777] [to:+14242846149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178098527] [to:+13475184643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783843048] [to:+17786549381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-20 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960680778] [to:+447418333539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003090201] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865852128] [to:+13866015869] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12093247469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288554028] [to:+14158536463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+15873322361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-10 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-10 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107148652] [to:12109960916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527779] [to:17408177168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-20 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415734517] [to:+447418338054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636850] [to:+14692175240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022018705] [to:+14096833658] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-20 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234854] [to:+447729823648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477022556] [to:+16474947170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-11 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-21 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960680778] [to:+447418333539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003090202] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785337294] [to:19785964075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009278] [to:17056266330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094868130] [to:+14502325412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064209041] [to:+12064009178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375509242] [to:+13479542340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220426] [to:18594336992] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364139844] [to:+17162791882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-10 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-10 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032048050] [to:+12132896397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-10 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:14135222959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282083338] [to:+17279986200] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788678200] [to:19788822189] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785442523] [to:+17702005481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034906472] [to:+16039450436] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14507752754] [to:+14388041074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336833] [to:14077088045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12043901311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908974] [to:19514725078] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031905] [to:19136342490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762296184] [to:+16464751167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084645933] [to:+16692005499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868176] [to:17752920436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375770050] [to:+12133773454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132893141] [to:+18572192685] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375770050] [to:+12133773454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-20 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447894876216] [to:+447520620498] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-20 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447723432310] [to:+447520609962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784214173] [to:+15087884893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954633] [to:12526655329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033130171] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12093247469] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:14153774062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756838] [to:19899540991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824043] [to:15858990149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782324186] [to:+14156850906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005404] [to:12042715170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383466436] [to:+15817020101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074334] [to:15403354403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262403952] [to:+16477999655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13165191444] [to:+16513337500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17735125021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214820140] [to:+13214068968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142926599] [to:+17189628523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110201] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282067669] [to:+17273624815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110202] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035932884] [to:+19782169160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316704863] [to:+18572327659] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786481026] [to:+19788209320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134357824] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146986415] [to:+14146007908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053057947] [to:+14159889423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043901311] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359862] [to:19375450582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12153005744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18637127029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366473] [to:12694149384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14407853163] [to:+14402528690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139578555] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005469] [to:18159144915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447764195168] [to:+14804392999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245880995] [to:+18722535840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034708] [to:19196994592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067285996] [to:+14157879921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502027] [to:15403132472] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282067669] [to:+19282976374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632802451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069281] [to:13174905120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-20 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323585] [to:+447828999265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-21 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155019897] [to:+16304892820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108679621] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-21 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-21 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16393176982] [to:+13065004423] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105386] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878635] [to:19362177816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958138] [to:14435150780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+17126428043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-21 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451225508] [to:+447738853652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632638816] [to:+18639492415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-11 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018499127] [to:18016388071] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158954] [to:19706912476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158694754] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168545883] [to:+12168343387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802887014] [to:+19148486991] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16393176982] [to:+13065004423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326191714] [to:+13478028142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809438] [to:16473779846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-10 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-20 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:12533551786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:12533551786] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222295] [to:13013703925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956368] [to:13069812377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649017770] [to:+13477055443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940402] [to:15148895629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15034626016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043901311] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-20 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193437923] [to:15086856001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477747698] [to:+16304893783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+13479788150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146796584] [to:+14506392642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:14167250403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12145276076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:14153774062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862900479] [to:+18133209359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549371606] [to:+19543143634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285814658] [to:+19282977063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:16477941467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405395361] [to:+14402528368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19717709812] [to:+15034555101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102095923] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076596] [to:12678440672] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126648226] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162390282] [to:16164982170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:12482520194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182905592] [to:+15817012463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938561] [to:16093427411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377842] [to:12012499114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266330] [to:+12497009278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045998575] [to:+19046948102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842644207] [to:+13479787545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348107] [to:16789723647] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174062949] [to:+12134784739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644356920] [to:+18649995457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666626] [to:18322337938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024909] [to:16615108220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152135955] [to:+14695327740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18126648226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079511430] [to:+18572190737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342767] [to:14048836130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174488910] [to:+16465641094] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609252311] [to:+16193593557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:18182617837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066998976] [to:+14706730660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024395388] [to:13475456858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697085763] [to:+18653209476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174904373] [to:+13175204089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12043901311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139197800] [to:+18133244808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251516] [to:18282168538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197051972] [to:+14198777028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-21 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B00202] -Feb 1 11:13:40 ip-10-0-0-21 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00201] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101391] [to:17896462638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-21 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447402156409] [to:+447520607569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293751362] [to:+17199990996] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122443121] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502187526] [to:+17784020235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12163945551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108700263] [to:+12105718914] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186057694] [to:+18572190404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134681969] [to:+17277052463] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-20 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142139710] [to:+14388086100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393228] [to:15418708500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393436] [to:12694925648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007908] [to:14146986415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796866] [to:17406446840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-11 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-11 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343871] [to:14046456448] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632638816] [to:+18639492415] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396286695] [to:+12392190308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601672] [to:17729406961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807085444] [to:+15873232724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478694054] [to:+15109482910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866565434] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742974623] [to:+17256660335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206290167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206290167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009278] [to:17056266330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632808303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17653133912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464912273] [to:+16463496469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993037] [to:12092708001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+12044806968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698386942] [to:+16163190706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-21 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041906] [to:15066080971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013508420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086141] [to:13473598272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134681969] [to:+17277052463] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168545883] [to:+12168343387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294442498] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383466436] [to:+15817020101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159246798] [to:+16158075951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602236616] [to:+12606337353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12125420767] [to:+13477966527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083197] [to:13155762003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015869] [to:13865852128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+19513641948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377842] [to:12012499114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:15797654545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195786554] [to:+18127777123] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326820537] [to:+13123009529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12148403591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855132] [to:12096171332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175742] [to:13214021210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175628419] [to:+13478083251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609252311] [to:+16193593557] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:16463536220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946223] [to:13522017715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165342532] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515083812] [to:+15167349404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13857770040] [to:18016661070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015428] [to:18122298713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602296838] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602296838] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16694009950] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474539496] [to:+13866012860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995525] [to:12177723163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183314118] [to:12187307730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174382084] [to:+13123001237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769608] [to:19372101121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-10 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146986415] [to:+14146007908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:14383451554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-10 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079749402] [to:+13366452269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043522178] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015869] [to:13865852128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699253] [to:17576947264] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540716] [to:13013025011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040448] [to:14502303473] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12125420767] [to:+13477966527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362900303] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735909] [to:19035162911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594908] [to:19546842942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13096485200] [to:+17729797240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-11 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556419] [to:18638086862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220426] [to:18594336992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-11 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:14192069033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855199890] [to:+19122005562] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199833796] [to:13193290801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708731219] [to:+16785867056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174395597] [to:+14242846600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-21 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13132667092] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-10 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417777330] [to:+15415392129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15026001554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459242] [to:14194908607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222295] [to:13013703925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359862] [to:19375450582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184557124] [to:+15152032934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192053431] [to:+13477147772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053218900] [to:+12892755984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+12262717673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109161959] [to:+18084681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854058269] [to:+18018905483] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066160301] [to:+19298418140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-21 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102948] [to:19083585387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-21 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307202009] [to:+12342312846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555952] [to:15192164518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193437923] [to:15086856001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635214078] [to:+18638557058] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463927582] [to:+17817863384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13038018052] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158694754] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155019897] [to:+16304892820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587991] [to:19045079179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609252311] [to:+16193593557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864667174] [to:+14696293030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:14383451554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:14506757221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026943927] [to:+19027058454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362177816] [to:+19365878635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-10 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066160301] [to:+19298418140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938476] [to:19738852250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-20 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-11 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968750] [to:19312064640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062077758] [to:+14064042098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:17863879885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094985475] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094985462] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094985451] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875962413] [to:+15068045091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:13364645198] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887156] [to:16128067695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169160] [to:16035932884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735909] [to:19035162911] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578120807] [to:+13474340233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132716227] [to:+14132519155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003430201] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039569] [to:18196797956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134045128] [to:+18134301851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003600301] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003600303] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018334001] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199022477] [to:+12819421616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137286270] [to:+12342314798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491516] [to:19568987036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103105814] [to:+13478022143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15203428726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032002756] [to:+13019179756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411171] [to:12034355422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005092] [to:13346551429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201096] [to:+15102540070] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:16463536220] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235399778] [to:+12139359670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285518295] [to:+17036466705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234836276] [to:+13473799318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-10 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:14506757221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604000] [to:17203129608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-11 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15044606213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856683] [to:16153518043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408775010] [to:+12533361218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-21 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:MSFT] [to:+447451249192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312087248] [to:13146990205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005469] [to:18159144915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149163410] [to:+14387931246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474946352] [to:+12897790300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18126648226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364312] [to:+13203737100] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193073188] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266330] [to:+12497009278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632458945] [to:+18638553142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155582159] [to:+13479196773] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:15126887175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377835] [to:13126623231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132716227] [to:+14132519155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003430202] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105516136] [to:+17754993417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389921988] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702320285] [to:+12085012693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833658] [to:17022018705] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039D0201] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-21 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242937] [to:+447946297227] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735909] [to:19035162911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:18623730813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102075] [to:17058799274] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102075] [to:17058799274] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500039D0202] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15717818830] [to:17039697411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13189470961] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-11 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:13127782153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734264367] [to:+19148486925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408775010] [to:+12533361218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192053431] [to:+19703006699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082357944] [to:+13477974357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-21 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147402] [to:19316199789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807125668] [to:+17786549855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102948] [to:19089661260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158256467] [to:16194852647] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-10 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578120807] [to:+13474340233] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-10 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-10 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009178] [to:12064209041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058527] [to:13155708386] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-10 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186492379] [to:+15186500105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008245] [to:12175650025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704624458] [to:+13024002770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-10 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486909] [to:13079967773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805812] [to:17174762622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786037] [to:12029044424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:16394710629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-11 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594521] [to:14079075909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-11 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056335] [to:19022922833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13174904373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242090893] [to:+13059014402] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093247469] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-20 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231733] [to:+447914191789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703997080] [to:+16784348711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327740] [to:19152135955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879321] [to:15756358205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062048624] [to:+19148988160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15402481428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-10 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012215] [to:17654904775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002928] [to:18656074837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596122859] [to:+18583604710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088731753] [to:+16236664711] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955297] [to:16475298995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-20 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462996248] [to:+13013552497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106275059] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:15126887175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364356] [to:+14072163207] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245035368] [to:+17248035417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864467] [to:16623076157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626558035] [to:+17278600434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182905592] [to:+15817012463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-21 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738853652] [to:+447451225508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393373] [to:16786994651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043901311] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235348741] [to:+17074032311] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393373] [to:16786994651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16307859678] [to:16309307000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14074317434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-11 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039519731] [to:+19783619759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13858881961] [to:+13853361804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727521274] [to:13035210641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178095117] [to:+16467019094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19372196018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146588] [to:19037300135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244029] [to:18048744207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908974] [to:19517225423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178095117] [to:+16467019094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152971965] [to:+13479803059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109993934] [to:+18312919279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15044606213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968007] [to:14152400262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102948] [to:19732713553] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:15142222548] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013703925] [to:+15103222295] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199993042] [to:+17328677713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-10 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16474709957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322337938] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417458843] [to:+19715125746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062386160] [to:+15068038800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947873] [to:19043827693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315225481] [to:+14703335489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088433964] [to:+17077507919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314003432] [to:+13479191031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361652] [to:12532485181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203737882] [to:19102828326] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-10 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805689287] [to:+16233837043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569271] [to:14798836437] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192046618] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406840843] [to:+15406286289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D30201] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15402481428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021620] [to:19025371991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403354403] [to:+13203074334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D30202] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:17738507270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550435] [to:14508462532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012215] [to:17654904775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784968] [to:18434504421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022181514] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-20 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447873376789] [to:+447418324797] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16106999386] [to:16103495475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:17758432110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009599] [to:13046101599] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082219] [to:14045799770] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197051972] [to:+14198777028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:15147583030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-10 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323287740] [to:15732391676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096183] [to:14388005943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-11 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-10 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-10 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641094] [to:17174488910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-10 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037817] [to:14172088939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-10 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194409863] [to:+18193073745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609659290] [to:+19784009366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-21 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-21 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029126808] [to:+17026748807] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022619] [to:+17273332749] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-21 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609659290] [to:+19784009366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-10 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409636] [to:12267924047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-11 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359434] [to:16788625796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031905] [to:19132750260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-10 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012215] [to:17654904775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802309593] [to:+14156578137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233137970] [to:+14804390547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602157180] [to:+13478967168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402968247] [to:+19142063815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592709435] [to:+15592232461] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082741373] [to:+16057897030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174386591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030573] [to:19029510018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252411696] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174904373] [to:+13175204089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-11 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018101476] [to:18016669354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-11 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818912] [to:+19027041284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-10 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789878] [to:19732774907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-21 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451225508] [to:+447738853652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12175650025] [to:+18724008245] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044954029] [to:+17049700679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144624467] [to:+14388095330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236463088] [to:+19802093921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-21 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-10 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263490055] [to:+12262411796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16286001350] [to:+19287564504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12153005744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148232067] [to:+15148198525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796923127] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745384553] [to:+16475569122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:17069790338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047962460] [to:+19142797598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364703257] [to:+14243364271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087449] [to:15404561205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393373] [to:16786994651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699569] [to:13152462997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016517] [to:17023581148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209320] [to:19786481026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177344] [to:12679885488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12083394005] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092895035] [to:+14088725919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358306969] [to:+14353391601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671467] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080473C70201] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671467] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080473C70202] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673637] [to:17862233980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376949203] [to:+13478684159] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486468] [to:18282609708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327263649] [to:+16465472222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+14387926960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573865423] [to:+15096512689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007629] [to:18089901764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:13239150620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009529] [to:17326820537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850497] [to:15748088496] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077088045] [to:+14076336833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-11 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:16787885278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-11 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886856] [to:+19149338536] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035481176] [to:+14157876925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266735] [to:19738038182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200632] [to:1971550847528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533914850] [to:+15635387891] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202474049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476805516] [to:+16475039278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:15147583030] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048879053] [to:+12138737003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604710] [to:18596122859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035979559] [to:+15873231529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368296232] [to:+13369382412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-21 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447879287611] [to:+447451212614] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048879053] [to:+12138737003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-21 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418323765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507919] [to:14088433964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597598] [to:19144107977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15414096738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043920989] [to:+12048088478] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143868636] [to:+18193074692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:12196082233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512533728] [to:+17728004632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-10 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-10 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048744207] [to:+18046244029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-10 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-10 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-10 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292071] [to:12816037262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-10 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896754628] [to:+16475039712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175755] [to:16789148197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733880844] [to:+19732985306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038321431] [to:+13474916939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652389228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563051] [to:13107201440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164002854] [to:+17162793045] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038403] [to:+13479193718] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855199890] [to:+19122005562] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-10 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666862] [to:17735597249] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548412] [to:16502438489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092897058] [to:+13475086027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155619796] [to:+13477988094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326692906] [to:+17322582284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966801] [to:14042454995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503077600] [to:+19709997013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152515712] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-20 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19016743195] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19016743195] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19016743195] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736280] [to:13368042553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074867532] [to:+14074424069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862900479] [to:+18133209359] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14249996670] [to:13477375204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17807125668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017506969] [to:+15169341476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049086745] [to:+13479979915] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-21 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242504] [to:+447581090440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-10 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237766862] [to:+13477865005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328576373] [to:+14696293943] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433173781] [to:+19292200741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733880844] [to:+19732985306] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787895763] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402266753] [to:+18328043923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125071729] [to:+12138736725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307711428] [to:+13017710107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177723163] [to:+18729995525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868286] [to:19712258236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038815053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038815053] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326692906] [to:+17322582284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476384] [to:17022388231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422090] [to:19183991084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286526] [to:15402329963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506396574] [to:12268087891] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404282] [to:12093272892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-10 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990309] [to:18723015797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096171332] [to:+19282855132] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003230201] -Feb 1 11:14:43 ip-10-0-64-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096944364] [to:+16096144183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003230202] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349077698] [to:+19734535345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004510] [to:14148920283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824043] [to:15858990149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-10 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163161] [to:16098478547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-10 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786481026] [to:+19788209320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931246] [to:15149163410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000550] [to:19419147503] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040259] [to:+16139122474] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720930] [to:12292926387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072986] [to:19195598377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12145276076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895082] [to:18147714545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439911810] [to:+14434530564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753612115] [to:+15758258609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048391048] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034373897] [to:+15036478149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-11 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:18035522684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045396193] [to:+18046650459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787647278] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-10 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18168007290] [to:18162164010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417515] [to:15197173031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219850] [to:18105169855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15712597894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200861] [to:12072190162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503488] [to:12105016414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044023058] [to:+17278603799] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134782] [to:19783374047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-11 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603748256] [to:+16467389033] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162350401] [to:+12167772174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407080218] [to:+16233838227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669804] [to:17734583334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600917] [to:16477933626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12043901311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755820] [to:50257079906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395268] [to:19094542191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236389935] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183035406] [to:+14043412244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17653133912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17653133912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884617] [to:13602410397] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186397182] [to:+17184169044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198013] [to:16612682829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883373] [to:15307197163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499494] [to:18159889934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824855] [to:17162210505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488785] [to:13144790948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-11 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652479178] [to:+12606337306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12169249659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-11 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555101] [to:19717709812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012499114] [to:+14152377842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046267895] [to:+19802097887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106275059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003910201] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18018334001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142853429] [to:+17726177417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003910202] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309641] [to:12297260313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702998647] [to:+18484824271] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069888410] [to:+13069938220] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069888410] [to:+13069938220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472338969] [to:18592293240] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174904373] [to:+13175204089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472005200] [to:+12262431585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692054977] [to:19033376996] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775900] [to:14142029995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092402748] [to:+17325824491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135631228] [to:+14137289347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123806752] [to:+13475186474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16087125300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277077] [to:19037491937] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266735] [to:19738038182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172199663] [to:+17063501296] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086070358] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003600302] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018734672] [to:+14157127360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088433964] [to:+17077507919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062077758] [to:+14064042098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049667874] [to:+16307859980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734264367] [to:+19148486925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406446840] [to:+17408796866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475287773] [to:+14259845653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362900303] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14147916585] [to:+19292209553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369815860] [to:+13366452519] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193718] [to:16067038403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198013] [to:16612682829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072264577] [to:+16079655966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206272375] [to:+12627776045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603799] [to:15044023058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009128] [to:14189286731] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177702374] [to:+19177229726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538494] [to:13076798165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286477] [to:18014149223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852842648] [to:+15852824175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176830555] [to:+15146008076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062321876] [to:+15068029215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-10 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083341848] [to:+14155945284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523483090] [to:+17863847953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790011] [to:56991646742] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-11 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504439242] [to:+17277568024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199833796] [to:13193290801] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:15743340945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095330] [to:15144624467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-10 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032621771] [to:+15612319936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-10 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018895] [to:19023053414] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-10 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:59 ip-10-0-64-10 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:59 ip-10-0-64-11 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364157] [to:+19715127507] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305876593] [to:13309790508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242942] [to:18043091927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-21 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670687] [to:+447879305654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876088] [to:15138070031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062787] [to:18642008011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338905] [to:+15102547516] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244878] [to:18042525359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-21 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130302] [to:19726073496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008684] [to:18152742508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170720] [to:15756372092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-11 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-21 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408756] [to:15024720826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:01 ip-10-0-0-10 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803007390] [to:+15874040861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0115587999312824] [to:+17402017772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477498489] [to:+12242767605] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603871735] [to:+14706735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252075621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408756] [to:15024720826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-0-11 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:01 ip-10-0-0-11 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16087125300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-11 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-11 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063291502] [to:+14706730180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479827960] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:19085109352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266735] [to:19738038182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15044606213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18187985047] [to:18188007845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:15148258269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597875] [to:17808845956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602296838] [to:+12602777396] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882990] [to:15306327826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-10 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649389] [to:15673153015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-11 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613512] [to:12253850388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-20 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447904774706] [to:+447418332855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-20 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008684] [to:18152742508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-11 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044023058] [to:+17278603799] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032960] [to:17788085164] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-21 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362232547] [to:+19365493853] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290298] [to:+13069927789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362232547] [to:+19365493853] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14502326795] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173794209] [to:+16466288063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132308199] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413997958] [to:+19895334966] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702847104] [to:+17186755485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479926597] [to:+12039904317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803007390] [to:+15874040861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144945048] [to:+13476908522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170102] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024428530] [to:+13025957693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864421] [to:14014058044] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-20 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148000] [to:213676702796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837043] [to:14805689287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079075909] [to:+19172594521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:17575098255] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082833329] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314353] [to:12152784918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026604871] [to:+12026609492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806656714] [to:+19282974207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824275] [to:17327319820] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146736] [to:19083319505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009537] [to:17097437519] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652479178] [to:+12606337306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691210] [to:13472965701] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491157] [to:18653089786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808166] [to:18143677730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372150741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198969255] [to:+17194266485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645296242] [to:+14242768105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048898] [to:16136005697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102116] [to:17403369772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132848791] [to:+18133086866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:09 ip-10-0-0-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198013] [to:15627260356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:13309575021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:09 ip-10-0-0-21 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672837] [to:+447719748679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:09 ip-10-0-0-10 mdr: 2016-02-01 11:15:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514725078] [to:+14158908974] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-11 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-10 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-10 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-11 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-10 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328264] [to:13215766521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-10 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047026439] [to:+13477691448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-20 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673943] [to:+447941073968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031772] [to:17575937930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482520194] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039260] [to:13065263861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790011] [to:56991646742] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187572698] [to:+16466288758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-20 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447704045859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143318250] [to:+17162790512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748088496] [to:+15744850497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855204076] [to:+15852821499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187572698] [to:+16466288758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13184641644] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-11 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425950] [to:16626332495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-20 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788260320] [to:+447451236230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272146] [to:+18133243811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376701357] [to:+16465479846] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049126179] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506396574] [to:12268087891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15878897450] [to:+15873231722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383538] [to:15635801118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-10 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:14373453880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329123608] [to:+12019956045] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184990997] [to:+13054174755] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19034314102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889181] [to:12522029780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013508420] [to:+12136946214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124125] [to:14844325018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016669354] [to:+18018101476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389314550] [to:+14388079525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022595] [to:+19149089297] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318293] [to:12699535432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908840] [to:12675794194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908840] [to:12675794194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500038A0201] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208202] [to:19843331640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307811640] [to:+13126311221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038A0202] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13155524686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:17243326744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-11 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134202916] [to:+18133206933] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166379] [to:13049529021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174039644] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313673] [to:18505030332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222398] [to:15136030839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247866] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407043941] [to:+19404638848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13076798165] [to:+17193538494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-20 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-20 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023730391] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290298] [to:+13069927789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-20 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364356] [to:+19142068755] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161813] [to:12255059091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022181514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805689287] [to:+16233837043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782917855] [to:+16025528305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668273] [to:17182009300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790011] [to:56991646742] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712258236] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720930] [to:12292926387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18433257762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048896314] [to:+15617665916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19075659411] [to:+19172835693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965132] [to:12139440733] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168304650] [to:+16475567419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182010] [to:+18724008184] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142029995] [to:+12627775900] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507919] [to:14088433964] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16129305928] [to:16517476320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082833329] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082280537] [to:+17142153727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-20 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337606] [to:12396452397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364767] [to:+14422816916] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032971] [to:17247194389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702170671] [to:+18729996288] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709741192] [to:+12162396094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039260] [to:13065263861] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003DF0201] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245035368] [to:+17248035417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095418742] [to:+15612576741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15144437199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-11 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-10 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863604] [to:14344716445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-11 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-10 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864421] [to:14014058044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127350952] [to:+14125354001] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-10 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027030573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003DF0202] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062392380] [to:+13479801492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032204055] [to:+16025721880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:24 ip-10-0-0-11 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16032098571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-10 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:24 ip-10-0-0-10 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-11 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:24 ip-10-0-0-11 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:13364645198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-11 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-11 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-10 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364146] [to:+13203074556] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057944327] [to:+16474915417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023581148] [to:+17029016517] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13102569805] [to:+13234984987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146736] [to:19174703738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:15129717640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:17605323103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157097130] [to:+13476067816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127723] [to:+19199164481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801427] [to:12084068641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108943501] [to:+17279166398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263123594] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242942] [to:18042776626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783572402] [to:+12138733770] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666541] [to:17087850373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073491] [to:17734029085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235348741] [to:+17074032311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172028448] [to:+16317626572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14324257138] [to:+14706733706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003610201] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491157] [to:18653089786] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-21 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320259] [to:+447864540950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028291420] [to:+19172751574] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14324257138] [to:+14706733706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003610202] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168071826] [to:+14158537026] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018148092] [to:+16319800847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373774] [to:17573188106] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193313999] [to:+12194408361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676959] [to:13309577811] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13127727214] [to:+18133316316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702441347] [to:+13053400936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108679621] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215121213] [to:+14076333744] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138349] [to:15806063256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164059543] [to:+16413166003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802454584] [to:+13302370429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402222086] [to:19403663300] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:16785129333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863170197] [to:+17277053382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192283] [to:12175069593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898882615] [to:+12898042489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293768904] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18066624968] [to:+14695325487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:13235930220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032007055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129730265] [to:+17089467128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:16787895763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367560588] [to:+13369381752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049453385] [to:+17278578423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965977] [to:12033088413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133445896] [to:+19142063866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802784949] [to:+13478028171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149963091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317532] [to:13097373851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053216978] [to:+12892757140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147845501] [to:+13053400270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136005697] [to:+16136048898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042224760] [to:+14242839317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290298] [to:+13069927789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040920] [to:15093458376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013025011] [to:+12404540716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066505772] [to:+14064043199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-11 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-21 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016213031] [to:+12016800509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402809900] [to:+18583604015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19372196018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:18184867676] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127797] [to:17602133640] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008184] [to:12179182010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512420313] [to:+14692056767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400980201] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257291] [to:12527171269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433260398] [to:+14437204329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191111] [to:12629308417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154361346] [to:+13475087920] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594877] [to:19547087771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607605] [to:13095307036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988321] [to:19142572130] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659788] [to:16062052244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049910424] [to:+19142815866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512420313] [to:+14692056767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400980202] -Feb 1 11:15:37 ip-10-0-64-11 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069133931] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937942] [to:14199795006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064780580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476106284] [to:+14697516501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:19085109352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:17183145988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783718] [to:19177044806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485087385] [to:+13134688660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342292493] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196419731] [to:+19193072505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092800537] [to:+16477997300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147300081] [to:+19148486524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298054423] [to:+19142286675] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261049] [to:17034856351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14389323129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947195] [to:19046970517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-10 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:12266003108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:18028585558] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614528765] [to:+12135455721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-20 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447455205160] [to:+447520671851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732017] [to:12405386051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329123608] [to:+12019956045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824855] [to:17162210505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096389028] [to:+17097000583] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614960674] [to:+19543639342] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063150080] [to:+13479378350] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720119] [to:19124093094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002147] [to:17708003449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-21 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418323765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040138] [to:14502300380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676959] [to:12348174205] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16082791045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719959] [to:14806667809] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852448761] [to:+13479139015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472624297] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186899394] [to:+15817008489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-11 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749118] [to:14196188562] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448992] [to:15015028962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042098] [to:14062077758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-21 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819676] [to:15673772942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623683212] [to:+14242836598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-11 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048391048] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237146348] [to:+12139354558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-21 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-21 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492814596] [to:17406803773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19252157323] [to:+12342315108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506757221] [to:+14502326795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198969255] [to:+17194266485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808859646] [to:+15874090821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574143955] [to:+18046242177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672044151] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-21 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202537787] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048091100] [to:+13203075440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-10 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396069] [to:12167677617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043895] [to:12109201365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-10 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-10 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094519827] [to:+19162908740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-10 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844325018] [to:+14844124125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-10 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-11 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809270948] [to:+14695326377] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307126190] [to:+17743570125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:17183145988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488536] [to:17703749498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005312] [to:17097644100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996609] [to:17206468421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473100] [to:12625278944] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084068641] [to:+13479801427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803199408] [to:+14072162720] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197920481] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190737] [to:12079511430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12169249659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073196074] [to:+16465319872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168304650] [to:+16475567419] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395268] [to:19094542191] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318293] [to:12699535432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243283033] [to:+14126940223] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14502326795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-21 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:15157799017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318942876] [to:+16317707113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049126179] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290232] [to:+13069932980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470730] [to:18068911269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189510907] [to:+18194140246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174488910] [to:+16465641094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375158178] [to:+17408798879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177397] [to:17727776680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555913] [to:15199992335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908816] [to:19362291178] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034048847] [to:+15189305390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-21 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659644504] [to:+16465319699] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134613665] [to:+12105560418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168304650] [to:+16475567419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697215] [to:18572515533] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:19089021138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025355064] [to:+13477146002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024873507] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139578555] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046200218] [to:+15865747629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042015158] [to:+15103137337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032621771] [to:+15612319936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17732363818] [to:+19292209692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055087677] [to:+19172610483] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159813496] [to:+16158431585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:18135037758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161813] [to:16623028017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043043132] [to:+19046948403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995455] [to:17096326277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277932] [to:13053454776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045357487] [to:+13866017588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055087677] [to:+19172610483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014068] [to:18126749082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-20 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092386828] [to:+17864800149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15303602594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15024922389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682797] [to:17068726884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016176533] [to:+14017680021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15024922389] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467128] [to:13129730265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850497] [to:15748088496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020709] [to:+15874059049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733880844] [to:+19735479072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862233980] [to:+17865673637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145998571] [to:+17187510062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024804190] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174177164] [to:+18046245374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036366878] [to:+17193538722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656583095] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196082233] [to:+19142671738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605388049] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414184495] [to:+19712488394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157859110] [to:+16158075902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833772] [to:14096702168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135079485] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154590297] [to:+12679232812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000550] [to:14077152495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:15058791445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-21 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848405332] [to:+19148250371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062052244] [to:+19172659788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-20 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792909450] [to:+447418325969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232413848] [to:+16233836266] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19034314102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18129460596] [to:+12193701959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12348174205] [to:+12678676959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029906376] [to:+14694127885] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003420201] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003420202] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165405445] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861821] [to:16783611013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-20 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195200685] [to:+18193033371] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296740] [to:17044041697] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764941] [to:12193809379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948102] [to:19045998575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939216] [to:19013643413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023008644] [to:+17027478851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328757428] [to:+13866016469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165342532] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202073974] [to:+12602327143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522313456] [to:+19014449072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213158] [to:12516439103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854144457] [to:+15852822735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099864] [to:12109045694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022018705] [to:+14096833658] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195200685] [to:+18193033371] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308633] [to:+13065004481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063150080] [to:+13479378350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056880751] [to:+18638555698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143634] [to:19549371606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036748012] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028322223] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202314] [to:16063758961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788489622] [to:+17749921802] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635919] [to:18176297862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195200685] [to:+18193033371] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199795006] [to:+17274937942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502614818] [to:+13477737038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205196319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955073] [to:13023584975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205196319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248331621] [to:+17243200664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857142745] [to:+15852821482] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:13197753859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425404] [to:12704042589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15875960815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007864] [to:14087063128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220366] [to:12175504879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-21 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083506070] [to:+17328677534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075912997] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:15197920481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328443] [to:15032099766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15144437199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135079485] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-10 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056232096] [to:+17329869123] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139369] [to:+14703336167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148814] [to:19157409297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065351879] [to:+19085160343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305362] [to:15184152536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808210088] [to:+15873158148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253109530] [to:19165195238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022772559] [to:+13145488484] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378589] [to:16783408636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472822803] [to:+17027181439] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049910424] [to:+19142815866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106215391] [to:+15204336298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419838] [to:13344981496] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419838] [to:13344981496] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348319] [to:18596127059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079005245] [to:+15085562554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-10 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-10 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094915] [to:17047705962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059188575] [to:+13476762136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-10 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-11 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-10 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-20 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12066735243] [to:+17325824416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029678] [to:17056412177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197920481] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625426733] [to:+13477989352] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784176399] [to:+16172193242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566691401] [to:+16096144354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192213780] [to:+13069938249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277932] [to:13053454776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725847150] [to:+17727668489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253096140] [to:+14253338231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142026707] [to:+14073372139] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997528] [to:16472036984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-21 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179220674] [to:+13149320713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138585835] [to:+15134282047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:18562005472] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138081659] [to:+18133244490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192223863] [to:+12262410722] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784176399] [to:+16172193242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-20 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447442506551] [to:+447451200529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F10201] -Feb 1 11:16:07 ip-10-0-64-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149963091] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-21 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19512370215] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-21 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13033517082] [to:17205875212] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253109530] [to:19165195238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548506045] [to:+17542009235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996609] [to:17206468421] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192223863] [to:+12262410722] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073497453] [to:+17743570429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-21 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604500503] [to:+13479805959] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127360] [to:13018734672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13472624297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675702] [to:13022647062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220366] [to:13125855013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015092] [to:14189576337] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696841500] [to:+19039005799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364828473] [to:+13476675028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886788] [to:+19148291709] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-21 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174386591] [to:+15178615956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168577397] [to:+16474980605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346721295] [to:+19177227060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146120326] [to:+18722535248] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-21 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447442506551] [to:+447451200529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F10202] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503067616] [to:+17784025167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809699] [to:15134290524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086705988] [to:+16465473544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787895763] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12027136481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17087317578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258806] [to:16185315251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12402455887] [to:12022775560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064719295] [to:+14804394160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500034A0201] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138350] [to:19042354144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-21 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447746878103] [to:+447451249229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744844] [to:13025052122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863839955] [to:+13053406965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17022018991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-20 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822374] [to:13152006926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708003449] [to:+14049002147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018659] [to:12629095976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639908090] [to:+18638553169] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-20 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013859] [to:18634403535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192046618] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064719295] [to:+14804394160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500034A0202] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799068453] [to:+19792326637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673637] [to:17862233980] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152135955] [to:+14695327740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096748607] [to:+18584804137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16474952279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475505196] [to:+16049015351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-21 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447719748679] [to:+447520672837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784176399] [to:+16172193242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725608] [to:18285770058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065916008] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125934] [to:19188458396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345231] [to:17705392912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184030701] [to:+18188563552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032204055] [to:+15204335477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672131582] [to:+19703156775] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295639841] [to:+14242868919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103362609] [to:+14435299773] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188921650] [to:+19099395121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939181] [to:19188518008] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064712559] [to:+14388077739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053149355] [to:+18053942254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301372] [to:16578882279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819498] [to:15672191122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372139] [to:17142026707] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-10 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008489] [to:14186899394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364229] [to:+15617666697] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-21 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675602656] [to:+12138619574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017588] [to:19045357487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045998575] [to:+19046948102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734029085] [to:+13203073491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089160247] [to:+13126311924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145815] [to:14422459755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039697411] [to:+15717818830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135709] [to:15595123671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-21 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068028460] [to:15148254662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:13477379513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403171198] [to:+13477361071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042998331] [to:+18046246239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-11 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-21 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573185213] [to:+18572559806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:14129746663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-20 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643770095] [to:+13479971058] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471631] [to:13045349939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008489] [to:14186899394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-10 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231855] [to:17812907659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231855] [to:17812907659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-21 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240745] [to:+447949317709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322337938] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:13155293321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-10 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194447] [to:13409983308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186183] [to:12055208282] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022467053] [to:+13477697617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444370] [to:13175154053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173765078] [to:+19142065244] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302405] [to:13479220407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:12482520194] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709800777] [to:+19148608499] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032621771] [to:+15612319936] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488949079] [to:+13134247930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166379] [to:13049235090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19259612067] [to:+15129526543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096511189] [to:15093088848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062077758] [to:+14064042098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146155] [to:19805055307] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18125984441] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183181263] [to:+13479378787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-20 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525934] [to:14244778751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073542799] [to:+17077238192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389893726] [to:+14388085823] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19314096230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478892452] [to:+16474952667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666398] [to:17736191807] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214585136] [to:+16193833315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-20 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238928] [to:+447549499702] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16787704613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407280977] [to:+17279353363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015893943] [to:+19084095147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177309580] [to:+13866015652] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055073] [to:19142462005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703152718] [to:17062849122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377230] [to:15309170824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044888815] [to:+19142812598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044888815] [to:+19142812598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703195301] [to:+15624733826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542581620] [to:+15103353298] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988033] [to:+12138064090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602296838] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405092699] [to:+13477973721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19843331640] [to:+19148208202] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378589] [to:16783408636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635214078] [to:+18638557058] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12126039135] [to:+15513336865] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13349910880] [to:+18583048613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136036184] [to:16812148812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-10 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148009946] [to:+14693537168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-21 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447701324703] [to:+447451217199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736112] [to:19376385076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025090921] [to:+16463491316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-10 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196609796] [to:+12264558871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538494] [to:13076798165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-20 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192769970] [to:+17206234858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19204109777] [to:+12627774900] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506825893] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778695] [to:15625473302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676843] [to:18503219596] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690110] [to:13139995124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16399998161] [to:+13069927681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-21 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572368260] [to:+18572194300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197985052] [to:+19199164125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:12132745974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049453385] [to:+17278578423] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334292] [to:19898917022] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126637437] [to:+12026015963] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689483] [to:18189633845] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034969947] [to:+15034868481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-11 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069938220] [to:13069888410] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993080] [to:12705668291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492082] [to:18504549775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-20 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278225] [to:14057793728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677992] [to:14014976513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174386591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029199149] [to:+14025002617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345231] [to:17705392912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154806] [to:+18582568094] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063291502] [to:+14706730180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369384747] [to:+13369383411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672682] [to:12035439684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-11 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:17186354873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-10 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798675] [to:19096420587] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025917022] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058902876] [to:+17053026964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338554] [to:+16475569240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043940] [to:14067020581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064719295] [to:+14804394160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018424867] [to:19015059856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972302] [to:17807959000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798032] [to:14063172040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798032] [to:14063172040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170437] [to:15053214510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167256979] [to:+16475039223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046102578] [to:+15612910814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302405] [to:15626862690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148212] [to:+19785337669] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274599919] [to:+14158536872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182280061] [to:+13202975739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077556200] [to:+13479789589] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198053477] [to:+13473439765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522564744] [to:+17162792332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173979520] [to:+18638552269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467320] [to:17246506843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12093247469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069938220] [to:13069888410] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364536] [to:+13025852875] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300885] [to:12023416472] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046124418] [to:+16574008218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726210573] [to:+17726177440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503067616] [to:+17784025167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-10 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022722418] [to:+13025957780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-10 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-10 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475334880] [to:+16475569353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-10 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036248566] [to:+17636346749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13155524686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-10 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406184] [to:15595563226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415414] [to:17658607330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:16477610874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189510907] [to:+18194140246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361692] [to:12292054977] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637127029] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:1916705774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-20 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218022] [to:+447719782529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504215054] [to:+14387927015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046156246] [to:+13478961887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522313456] [to:+19014449072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-20 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415799544] [to:+447520627702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:16106791024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732556] [to:14787033042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018334001] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733032657] [to:16307857439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17098995524] [to:+15817017008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18286740334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145679330] [to:+14388071572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-20 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447723432310] [to:+447520609962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:14182918680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918489] [to:18193072491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625455587] [to:+17604748326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748917] [to:18103575300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316035375] [to:+14695323765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359434] [to:16788625796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269353] [to:15628503060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035932884] [to:+19782169160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034596330] [to:+18133081488] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436857076] [to:+19108888252] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-20 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400928] [to:15703354078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843357229] [to:+14844207974] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252104201] [to:+12138225426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296993] [to:12523404634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364710040] [to:+19783231437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827532] [to:14133285333] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348747] [to:18432244359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305244790] [to:+14582025806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037817] [to:14172088939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969861] [to:15182908458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144653583] [to:+12167990932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028184555] [to:+19027031629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283207677] [to:+14073372677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472799185] [to:+16572076488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274599919] [to:+14158536872] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572465687] [to:+16172139392] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404905897] [to:+19173834959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13608498113] [to:13604647070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404905897] [to:+19173834959] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033376996] [to:+14692054977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047933] [to:14059998605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047933] [to:14059998605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145679330] [to:+14388071572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503077] [to:18504490597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181083] [to:18455480496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193491] [to:17344446314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200861] [to:17148748830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578773] [to:12054517478] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133150598] [to:+18133243278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15022873997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B90201] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607548020] [to:+17812621955] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195003487] [to:+12264555057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062297878] [to:+16474912440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479801499] [to:+12134783007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:18135037758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193809379] [to:+13476764941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365887046] [to:+12026090324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455923] [to:16616002122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144107977] [to:+19086597598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951923] [to:16475501162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951923] [to:16475501162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018148092] [to:+16319800847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951923] [to:16475501162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027724063] [to:+17027794152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673772942] [to:+15672819676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038403] [to:+13479193718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B90202] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352101298] [to:+13126142984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027724063] [to:+17027794152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062182747] [to:+14692175268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052407611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002265] [to:17323378276] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607031341] [to:+13608498799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14252498374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17805170701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802792181] [to:+14696292741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899075] [to:13472132106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737087823] [to:+12342227347] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482483] [to:18433724896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035537324] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092602664] [to:12094019081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069133931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135927650] [to:+15103407418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183013] [to:14252411696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866225] [to:14178080682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411563] [to:14166550193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12169249659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058438] [to:19025748879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092911891] [to:+14097771506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530294] [to:17318191478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029165] [to:13606029645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185278518] [to:+15189305426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106628845] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164125] [to:19197985052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17655090807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822042] [to:18598665294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026012165] [to:+14025001568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248102466] [to:+17248035680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:18166822644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:18195931070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048837] [to:18052160397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763898399] [to:+18653209048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029199149] [to:+14025002617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029716123] [to:+12404077698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15718588422] [to:+15874050355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739227225] [to:+13479971541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444370] [to:13174734328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15199559248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868919] [to:12295639841] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175154053] [to:+13176444370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815866] [to:13049910424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788769230] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165342532] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-0-10 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-0-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:54 ip-10-0-0-11 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215766521] [to:+13218328264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186183] [to:12055208282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176986493] [to:+19172750903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543543462] [to:19543802897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052204330] [to:+17053026076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023971118] [to:+19027043821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067403104] [to:+15068041558] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14147592276] [to:+14144007476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863839955] [to:+13053406965] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016213031] [to:+12016800509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383451357] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263122733] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673849612] [to:+12138068519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046156246] [to:+13478961887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123349101] [to:+13479569139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404279] [to:+13867423381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148531833] [to:+13476908352] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047047094] [to:+17274938104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+12267793030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496525] [to:+19895697517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097233282] [to:+19092934625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793259217] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479827960] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-20 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208035] [to:+447548544753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168275827] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162164010] [to:+18168007290] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-20 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208035] [to:+447548544753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082219] [to:14045799770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022918845] [to:+12134787384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17154172359] [to:+17186755891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17732363818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208202] [to:19843331640] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453106] [to:17147529815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335477] [to:18032204055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605317324] [to:+14694060452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605317324] [to:+14694060452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605317324] [to:+14694060452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-20 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862628] [to:+14402526832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162390386] [to:16164309122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845505035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092386828] [to:+17864800149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001665] [to:12254397324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852079026] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076183781] [to:+16465640646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146499301] [to:+14387942954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242197795] [to:+15624733574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405743556] [to:+14403594886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049999010] [to:+12048134597] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-10 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785337294] [to:19786069323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787895763] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-20 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347503864] [to:+12134785320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18122443121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-20 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438136536] [to:+14437202393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-20 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16177042229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199907889] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538324] [to:13612310549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467306790] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190756] [to:13044823430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015576] [to:17095730593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898701] [to:17314337191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015038488] [to:+17604747750] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687344] [to:17163715367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348319] [to:18596127059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788064899] [to:+19895334723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783408636] [to:+13479378589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867486101] [to:+13866016569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708605225] [to:+18572400422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-21 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447806095884] [to:+447520629899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-20 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17068530485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047925389] [to:+19802093412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593603] [to:14166662555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062787] [to:18649818266] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292914959] [to:+12138611874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16177042229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266117] [to:16162320511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-10 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-10 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-10 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-10 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990932] [to:16144653583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-10 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-21 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301372] [to:16981949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022647062] [to:+13476675702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540716] [to:13013025011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188054450] [to:+17027478066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035610284] [to:+15873154477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016517] [to:17023581148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777215] [to:12175042093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472036984] [to:+16477997528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969861] [to:15182908458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202203025] [to:+15865747722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032B0202] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202203025] [to:+15865747722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500032B0201] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603062341] [to:+12405538727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062824587] [to:+14158531653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024922389] [to:+13478083195] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388783868] [to:+14388078679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178284120] [to:+14158536261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-20 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332855] [to:+447904774706] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173979520] [to:+18638552269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13062904307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504493] [to:18435982039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17732363818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570153] [to:15198035912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570153] [to:15198035912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127797] [to:13184610993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17754420480] [to:+17026748579] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-10 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783408636] [to:+13479378589] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18122443121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-10 mdr: 2016-02-01 11:17:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474898300] [to:+13478682310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572021875] [to:+13478120130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:19124232550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-11 mdr: 2016-02-01 11:17:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649908508] [to:+18645010293] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165015124] [to:+19715129635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615773860] [to:+13054175173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:14055087677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602155] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-10 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182717058] [to:+15817009943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040445] [to:+16572071390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304367] [to:19175640950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548605] [to:12109955321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292741] [to:15802792181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:18166822644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364731937] [to:+19726665612] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505306263] [to:+18506314686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600532] [to:17053803806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:12263123594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049807744] [to:+19142064074] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388262220] [to:+14388095850] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13067000438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:18635328940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981957] [to:13152619045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13364710040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-20 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447071528] [to:+447451247514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048036341] [to:+19046947190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555352] [to:15734798792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-20 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182483739] [to:+13478992188] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572021875] [to:+13478120130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740445] [to:+16466320664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729406961] [to:+17723601672] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682220] [to:13856851031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:17058267576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234858] [to:14192769970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321634] [to:13064501706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025060785] [to:+17723601650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-21 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447864337686] [to:+447418323505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183013] [to:14252411696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508855334] [to:+16042593517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058438] [to:19025748879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032204055] [to:+15204335477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182483739] [to:+13478992188] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202849183] [to:+19285992812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:18635328940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-21 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015576] [to:17095730593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202217075] [to:19203443458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750903] [to:13176986493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18122443121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129746663] [to:+14125354593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15869441447] [to:+13478021557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14252498374] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:19167057745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474936636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882990] [to:15306328352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139488] [to:14785503257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174457890] [to:+19149798242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146499301] [to:+14387942954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733032657] [to:17737908501] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938415] [to:13615002324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-21 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235973] [to:+447956527123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13472624297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083387018] [to:+15129525124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-20 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332325] [to:+447470020431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:13152474621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:16787895763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169160] [to:16035932884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755221] [to:17153184849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095415037] [to:+18583048201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047623106] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19132148809] [to:17853935371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233867] [to:13305327257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147085997] [to:+14387940292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044033129] [to:+13052036900] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026697106] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378589] [to:16783408636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044033129] [to:+13052036900] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-20 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-20 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882990] [to:15306328352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563108585] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095532416] [to:+17327068221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046101599] [to:+19784009599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077293971] [to:+17864803208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655917683] [to:+13479130734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021456] [to:14185903689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265823] [to:19792539211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508855334] [to:+16042593517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147085997] [to:+14387940292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488436] [to:15306048136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138169] [to:17577685495] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013239] [to:18607066200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054431005] [to:+12132896519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632921782] [to:+18133201569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635801118] [to:+13369383538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182918680] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147085997] [to:+14387940292] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16813680782] [to:+15203376681] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567448040] [to:+13479198651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503077600] [to:+19709997013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064674476] [to:+17053028125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19132148809] [to:17853935371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732017] [to:12405386051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:19099654464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697447] [to:19895512166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-21 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223239] [to:+447719799531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184198331] [to:+19782729489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675702] [to:13022647062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018484404] [to:+14706733151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:15105866069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142670324] [to:15135464525] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137698183] [to:13234566670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043719] [to:19072037485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774958] [to:13473562319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024208] [to:16614188581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-20 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14238874728] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:12014503565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-21 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451240203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-10 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19724417014] [to:+15089166128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] Wilbens Dieujuste: Tomorrow |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135267] [to:12709789647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705668291] [to:+13478993080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:15169025840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096702168] [to:+14096833772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043821] [to:19023971118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462837273] [to:+14073374649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348598] [to:14787148641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:12266003108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-20 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437099] [to:15198185555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052066459] [to:+18316107752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-21 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-21 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602594] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022573] [to:+13477970343] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-10 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883833] [to:13063042963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997528] [to:16472036984] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326367] [to:14322887145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343827971] [to:+12132959593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246083] [to:18049380963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656039291] [to:+16789495774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C70201] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096753080] [to:+16513335425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862671] [to:+13219990443] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578423] [to:19049453385] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405151] [to:12268810188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C70202] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372056332] [to:+14242838343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185315251] [to:+18722258806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125201843] [to:+18572193275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227347] [to:17737087823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18644259017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705290071] [to:+13479066748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416066726] [to:+14582015344] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-21 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740392] [to:+13025830092] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748917] [to:18103575300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103005] [to:14144354370] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12547356029] [to:14325286267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173082899] [to:+12148148729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-20 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026001554] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-20 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343827971] [to:+12132959593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692175268] [to:18062182747] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15144437199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01122508009213] [to:+14694061116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969182] [to:17577496369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14383451357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-10 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17573870734] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-20 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-20 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326170] [to:14094997686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-10 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:15597080497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432092962] [to:+14502334398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606462798] [to:+17607909411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:17708459762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314096230] [to:+13477865527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246720849] [to:+18508950340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026285959] [to:+15874101723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19716459522] [to:+15036478746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028302162] [to:+16475567404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607196135] [to:+16463490295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144995353] [to:+16576668384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-21 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709891018] [to:+13479190682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:18635295264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12532485837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405127] [to:15194657797] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333121] [to:14705354084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054100129] [to:+18054202886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067170379] [to:+13065003440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:12104820807] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:12104820807] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615773860] [to:+13054175173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531043] [to:15733886181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343827971] [to:+12132959593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192769970] [to:+17206234858] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:12104820807] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-20 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:19099654464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623714077] [to:+18572193345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326875325] [to:+16096144171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109087591] [to:+19715129409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889713] [to:13179035132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-21 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182717058] [to:+15817009943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515996711] [to:+19148486395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623714077] [to:+18572193345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015093] [to:15813194370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042174974] [to:+13478961784] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503770813] [to:+14703334329] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410722] [to:15192228980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:18635295264] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801492] [to:19062392380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623714077] [to:+18572193345] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681442] [to:18635122885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152515712] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559003] [to:12899240182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317560891] [to:+16694002136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659644504] [to:+16465319699] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052330557] [to:+17029015524] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17209880037] [to:+17274938279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778695] [to:16202856249] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18193522333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413800512] [to:+19417256304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049807744] [to:+19142064074] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-20 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447071528] [to:+447451247514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995999] [to:14849084081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-11 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193718] [to:16067038403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-10 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552881] [to:14235065145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064090] [to:17042988033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364271] [to:13364703257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028042248] [to:+16139092407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13062035204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223823] [to:12158009272] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15139041880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993774] [to:14849259387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524256068] [to:+13369383586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843979247] [to:14844260438] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144653583] [to:+12167990932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048391048] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-10 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15308482777] [to:+16574008183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477855417] [to:+13475187831] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052617916] [to:+12892755684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15057176776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297595] [to:14232017444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598665294] [to:+15852822042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-20 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334752] [to:17065339613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136870232] [to:+14242837053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334752] [to:17065339613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567259086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-21 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044136153] [to:+17605433526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12543130302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108679621] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17096897308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098478547] [to:+19199163161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167057745] [to:+19163477063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:14806192877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023971118] [to:+19027043821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817324] [to:16072328395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021890] [to:16477812697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767799300] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672033253] [to:+15103228925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166740] [to:12527623802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-20 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083387018] [to:+15129525124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:16104677841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691493] [to:14237770480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162626676] [to:+17162790986] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776632] [to:18018885266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776632] [to:18018885266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317454] [to:16822038321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-21 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627143] [to:+447747104276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186330635] [to:+15817020180] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097303679] [to:+12099923435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990899] [to:12166098179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-20 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447857027430] [to:+447451232940] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178284120] [to:+14158536261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026946262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16107138851] [to:16109997864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509007443] [to:12502080477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752009348] [to:+15056007648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552269] [to:13173979520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623388313] [to:+14706733906] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613028016] [to:+12139212248] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13126183996] [to:+13122752529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18188353670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025748879] [to:+19027058438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372884248] [to:+18585199029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198053477] [to:+13473439765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348319] [to:18596127059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18198060986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315531] [to:18505126470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132005330] [to:+15137259463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401738] [to:16262486404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-21 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-11 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653418416] [to:+12138612750] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276577454] [to:+17278578220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007961] [to:15146689965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687344] [to:18173600764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15199559248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092881514] [to:19712059186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052340195] [to:+15592232463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884019] [to:17743050092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056335] [to:19022922833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408008] [to:13472496796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976849] [to:17179620133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039535036] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13178693343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E10201] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813176] [to:14438597628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203960] [to:13013318892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:14045207748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253163646] [to:+12138025350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282325217] [to:19288999012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882930] [to:19855077528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049394380] [to:+12048093988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894180897] [to:+19895334091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342949011] [to:+13478969839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927989] [to:14384961763] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-20 mdr: 2016-02-01 11:17:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732391676] [to:+17323287740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186882726] [to:+13476675618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14067995073] [to:+14064042257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709800777] [to:+19148608499] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144661320] [to:+14388095318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-21 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-11 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-11 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286740334] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14385808778] [to:+14388078836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486166] [to:17575065458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597843] [to:17783182968] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14389921988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755820] [to:50257079906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138350] [to:19042354144] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E10202] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990932] [to:16144653583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003650201] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14705355374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888425] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003650202] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803201] [to:17863198700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-21 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605433526] [to:19044136153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037D0201] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037D0202] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173880459] [to:+15612407328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476863917] [to:+12897798019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18608618951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143942746] [to:+14144006597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263765560] [to:+12138062444] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139995124] [to:+13137690110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096512603] [to:+14582025453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142027038] [to:+13477736282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467306790] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312057852] [to:+18724449057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185903689] [to:+15817021456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673849612] [to:+13024001422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096748607] [to:+18584804137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197985052] [to:+19199164125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199084914] [to:+19199161655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055087677] [to:+19172610483] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478022025] [to:18127675107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076875] [to:12165123481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-20 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-20 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17083100748] [to:+12139354390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14389373568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201282] [to:14107083406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269268] [to:14065702309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809042499] [to:+15874085531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948229] [to:16162991958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522072568] [to:+16503008157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12145276076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476157328] [to:+13478303542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:14236659931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622765918] [to:+12677938872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19372196018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13127715246] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506825893] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269268] [to:14065702309] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132466] [to:17743050848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211439] [to:13473406555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830052] [to:12563665783] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476157328] [to:+13478303542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567449697] [to:+13479198651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124125] [to:14844325018] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:14129746663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614915619] [to:12819404755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192046618] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500039E0301] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039E0302] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039E0303] -Feb 1 11:17:58 ip-10-0-0-20 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19197176373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-20 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BA0201] -Feb 1 11:17:58 ip-10-0-64-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277682317] [to:+17274938481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316035375] [to:+14695323765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095305] [to:18768463339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:15165473909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597368] [to:15127999255] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407196] [to:+16474955001] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19314096230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988284] [to:17163282515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0202] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755221] [to:12696898782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-20 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477610874] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-10 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17147833488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024781053] [to:+19027062654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009228] [to:17057838614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-10 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043821] [to:19023971118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194300] [to:18572368260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801492] [to:19062392380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:14806192877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064739956] [to:+14706731099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:17349043488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203960] [to:13013318892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132778743] [to:+14132519454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-11 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-11 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523615837] [to:+14072161130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-11 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062404] [to:15672083233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-11 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-10 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-11 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15183609566] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18109644996] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234640533] [to:+12133773188] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019967093] [to:+15204335323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093079] [to:19173752648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316122875] [to:18314308339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15024922389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998775] [to:19855149184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-20 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163346567] [to:+16164200387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-11 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525757728] [to:+19172660673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-11 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:14806192877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404308] [to:18572434435] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:12023507018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-11 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127797] [to:13184610993] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-11 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-11 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286675] [to:12298054423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:16164208196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024804190] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864996439] [to:+13054175782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034567688] [to:+12342313815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502614818] [to:+13477737038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305679888] [to:+15304513985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049394380] [to:+12048093988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155494361] [to:12512229978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147072197] [to:+14403594636] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183030] [to:14077917073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164773] [to:19194918494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817324] [to:16072328395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873257311] [to:+15874050250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12533044281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16034796330] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-21 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333121] [to:14705354084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031469] [to:+12362373471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153100560] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403171198] [to:+13477361071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869341] [to:17874770849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066425] [to:17867472292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613028016] [to:+12139212248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-21 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226017] [to:+447470947713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-10 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405127] [to:15194657795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014077817] [to:+13475089681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504493] [to:18435982039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790960] [to:17164561200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528837978] [to:+13473439872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-21 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447737406730] [to:+447451224705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228692] [to:16143786953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288805] [to:18312969033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988284] [to:17163282515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436184418] [to:+14706734719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731092] [to:14437398815] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528825] [to:13134821810] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308839660] [to:+19172661133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056596169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056596169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862667] [to:+19142286940] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156388554] [to:+17133896673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044136153] [to:+17605433526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016569] [to:13867486101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083642485] [to:+19298413982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625473302] [to:+12627778695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17793489657] [to:+12602755490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730502] [to:17064832353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789533] [to:15184194506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12094221934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015605] [to:17027629827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19133963319] [to:+14198430804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-21 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-10 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006405] [to:14146403351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185991576] [to:+18724008819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14075912997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735280910] [to:+17207291591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175085372] [to:+15109480570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364814] [to:+19703158397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:17272602820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788333627] [to:+16049019221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999590] [to:19062022527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001707] [to:17054641713] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-20 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-21 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334493] [to:+447766532630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-21 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334493] [to:+447766532630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039697411] [to:+15717818830] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-11 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:16789072168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759530] [to:17138168106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-10 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478823] [to:12027068660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095920] [to:18192094408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389987865] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164773] [to:19192252496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707130139] [to:+17605899918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050664] [to:16043381613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022366163] [to:+16466998127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041619] [to:15062279592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537525] [to:12293180203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678771721] [to:13062290883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577685495] [to:+13479138169] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411097] [to:18015921633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434965824] [to:+19172833937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003730201] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574392221] [to:+13603138146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:19167057745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681629] [to:19054325973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12674678399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802792181] [to:+14696292741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-10 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139369] [to:+14703336167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245161] [to:18042523832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:13024485469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732485] [to:13016421543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18125984441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-10 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367141463] [to:+13168544948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168322254] [to:+18133316053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:19129966500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345955] [to:17328645746] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146541] [to:14696520923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14077476605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-21 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-20 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467612] [to:17736063266] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129327924] [to:+13479131354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163945551] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18286740334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105362522] [to:+13366450570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097368] [to:109472186328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863782303] [to:+19177730434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048197] [to:16502088013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036366878] [to:+17193538722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021456] [to:14185903689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579186553] [to:+19193072123] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-11 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053022789] [to:19059034091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406858933] [to:19124647287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-11 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638777370] [to:+18638552245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543802897] [to:+19543543462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016910752] [to:+16197324340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372296] [to:13212407424] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-10 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-21 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-10 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681049] [to:14076831702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046048437] [to:+16784123496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817002347] [to:19029998165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018553] [to:19028041532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165839636] [to:+15817009445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817002347] [to:19029998165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-11 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707350171] [to:+13479976210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024723477] [to:+17027182720] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681049] [to:14076831702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987039] [to:19895060408] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190811] [to:12132741549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347101513] [to:+13364500879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-21 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162430474] [to:+16463496109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438597628] [to:+14436813176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656248986] [to:+18583146015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377258] [to:16035209271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093079] [to:19174742727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333382] [to:14072182409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739936610] [to:+13125099961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783993389] [to:+19785334213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533044281] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103575300] [to:+15865748917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15199907889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:19129966500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048993364] [to:+12048172584] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022922833] [to:+19027056335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681629] [to:19054325973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-21 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-21 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263400928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139212064] [to:17272152143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139212064] [to:17272152143] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048993364] [to:+12048172584] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500038B0201] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015605] [to:17029297440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-20 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447957992873] [to:+447418338504] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18168007290] [to:18162164010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602700] [to:12673356211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500038B0202] -Feb 1 11:18:26 ip-10-0-0-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-11 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162330] [to:12528858189] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931369] [to:+16136046085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523404634] [to:+12139296993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633810574] [to:+15633167433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142828948] [to:+13147639648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17146971437] [to:+15399999519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097233282] [to:+19092934625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472412972] [to:+12138028786] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-10 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708459762] [to:+15103403586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735028] [to:19012354021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531043] [to:16155964587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308839660] [to:+19172661133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-10 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622511499] [to:+19018427784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:12393628514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123889914] [to:+19122175793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-20 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321290] [to:19723652969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:19165486232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-21 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968959] [to:19732558017] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982578] [to:+18103393058] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174255423] [to:+15714412441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077476605] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672423808] [to:+14197767982] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613954] [to:16015196239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735674727] [to:+19177739401] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414184495] [to:+19712488394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064090] [to:17042988033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922441] [to:14388233957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922441] [to:14388233957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785757] [to:16099721415] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13155524686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076438094] [to:+16079655988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164125] [to:19197985052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142682236] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-10 mdr: 2016-02-01 11:18:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432461639] [to:+17315744398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-21 mdr: 2016-02-01 11:18:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474535648] [to:+15817008028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054641713] [to:+13658001707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143677730] [to:+13479808166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-20 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-11 mdr: 2016-02-01 11:18:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292926387] [to:+19172720930] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-21 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418325506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146689965] [to:+15146007961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-10 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-10 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086467074] [to:+18316122412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-21 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233142] [to:+447773456650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640711] [to:19513473576] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202817818] [to:13137185885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12892284373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835795] [to:15017431490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-20 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126648226] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096748607] [to:+18584804137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276577454] [to:+17278578220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CD0201] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132160631] [to:+15087884732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931369] [to:+16136046085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974187] [to:15703574652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125759184] [to:15126985079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198194802] [to:+19727521362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15184951338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252791017] [to:+15874050355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608618951] [to:+18609710162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706274942] [to:+13477869245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14077476605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064809779] [to:+15204337040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12163945551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364703257] [to:+14243364271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18034799075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481131] [to:15055449502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470179] [to:18654418446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295639841] [to:+14242868919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852896134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-20 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301670] [to:18435405800] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134202916] [to:+18133207792] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216140364] [to:+14073373350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787260896] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202217075] [to:19203443458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018553] [to:19028041532] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346363316] [to:+17348228124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136095579] [to:+18133201661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:19165486232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155494361] [to:12537545624] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969580] [to:18025989463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:18704552394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102794841] [to:+12026015056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346363316] [to:+17348228124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969754] [to:14046833761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194645306] [to:+19199161050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-10 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-10 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449937] [to:14794624116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883504] [to:15306659391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343867680] [to:14105071348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-10 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064216187] [to:+14706731927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-10 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17814292452] [to:+17542220671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-10 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857667710] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800329] [to:12563285471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182717058] [to:+15817009943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196618838] [to:+18194140688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667554] [to:14849851016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663353] [to:18023793196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366865] [to:16463774324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212431660] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238874728] [to:+14242846032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228289] [to:14195693207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228289] [to:14195693207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867486101] [to:+13866016569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663353] [to:18023793196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13199392578] [to:+18133244256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-11 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484457] [to:16085185494] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000155] [to:13479877458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-11 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627231] [to:12254289392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-20 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447747104276] [to:+447520627143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-11 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184194506] [to:+12134789533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CD0202] -Feb 1 11:18:40 ip-10-0-64-11 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-11 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-20 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-11 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-11 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192037977] [to:+17279986024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-11 mdr: 2016-02-01 11:18:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927052] [to:18649996255] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:41 ip-10-0-0-11 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:41 ip-10-0-0-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:41 ip-10-0-0-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654159705] [to:+12138029747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-21 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478339997] [to:+16465319678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12766186516] [to:+13479190489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-10 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477379513] [to:+14153269840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-20 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239846] [to:+447818447272] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317931405] [to:+16317707340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-21 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333382] [to:14077328274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430804] [to:19133963319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019289] [to:19023012589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323378276] [to:+13024002265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-11 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15303602594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13473887473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-20 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855132] [to:12096171332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023313347] [to:+19802095667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725344625] [to:17179634678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813194370] [to:+15817015093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748088496] [to:+15744850497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107671] [to:18312103369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153024707] [to:+13126145548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374704] [to:13309491441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899457] [to:17063296832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:14195750760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416222] [to:12262299626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193033371] [to:18195200685] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193033371] [to:18195200685] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-20 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286740334] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961887] [to:18046156246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132364] [to:16035098602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188210449] [to:+19148252664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447800584470] [to:+19177086042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185315251] [to:+18722258806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974187] [to:15707213250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109367219] [to:+15406286667] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14705355374] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103414] [to:17542522567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139041880] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303556] [to:18139523751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014569] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148163] [to:+15103225266] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001882] [to:14023068943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625455587] [to:+17604748326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371670] [to:15203609493] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044852087] [to:+12044807024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162507111] [to:+12312663162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619142440] [to:+15613165828] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940292] [to:15147085997] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940292] [to:15147085997] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666626] [to:18143357203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-10 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19713315920] [to:+15034475468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925676] [to:15146085627] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958635] [to:19104955232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16107138851] [to:16109997864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-21 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12542338287] [to:12546240178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059122749] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:17819750230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015688372] [to:+19014445676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528368] [to:14405395361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-10 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025033675] [to:+19282975885] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167057745] [to:+19163477063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673564] [to:12674018774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326620] [to:19795740669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141474] [to:18198561126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444097] [to:12155946831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322576549] [to:+18328042008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13853472390] [to:+18018903153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997434] [to:19562618427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163527308] [to:+12167776639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-21 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022366163] [to:+16466998127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138089521] [to:+19032130749] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-20 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447440304346] [to:+447451217767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-20 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14125195252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086308] [to:17578057337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046080768] [to:+12138612741] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805176125] [to:+15874087104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480102] [to:17012006035] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480102] [to:17012006035] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043940] [to:14067020678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755971] [to:18603945829] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077476605] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709800777] [to:+19148608499] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146497] [to:13157836474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13373138342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479653588] [to:+13475184277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102294711] [to:+19108888010] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232193610] [to:+13473799648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873417685] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095190687] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234074305] [to:+13233207157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184198331] [to:+19782729489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783611013] [to:+16785861821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042525359] [to:+18046244878] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045634329] [to:+12138027593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133866381] [to:+14243365698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505727638] [to:+12509000911] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802792181] [to:+14696292741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636627653] [to:+18639493205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931369] [to:+16136046085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232017444] [to:+12135297595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106447209] [to:+13477970686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472903163] [to:+19175995814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038403] [to:+13479193718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025536997] [to:+12139297295] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903062] [to:18598018161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140688] [to:18196618838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-21 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163238538] [to:+12162394633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-20 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083642485] [to:+19298413982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17807281706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549789] [to:17788858453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12547356029] [to:12603104474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531043] [to:16155964587] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18183912124] [to:+18188753800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072328395] [to:+19142817324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788477634] [to:+12138619759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:19167167334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646176474] [to:+15103136102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669245] [to:17147209231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309575021] [to:+12138612976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678448451] [to:+12672732500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-20 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418325506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065646860] [to:+17027184709] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062279592] [to:+15068041619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038D0201] -Feb 1 11:18:58 ip-10-0-64-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402081597] [to:+16513335842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364512434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004290] [to:14049444188] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038D0202] -Feb 1 11:18:59 ip-10-0-0-20 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418335241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375455823] [to:+19148252760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096992574] [to:+16465688833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19034747763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038027418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:14236659931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872790065] [to:+15874052285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717670] [to:12263489531] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406837] [to:14016493216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142816254] [to:17179770195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198765] [to:19207135057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708821018] [to:+16784342890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15598645305] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-20 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038027418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17098325098] [to:+17097019189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789533] [to:15184194506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:18435357645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-10 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674773253] [to:+17248033499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-10 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032205] [to:17243225422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916737] [to:17054331991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-10 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-10 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652436642] [to:+18653471745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674773253] [to:+17248033499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674773253] [to:+17248033499] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-10 mdr: 2016-02-01 11:19:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142635022] [to:+19172595532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-10 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-10 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-10 mdr: 2016-02-01 11:19:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785488253] [to:+16785867751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-10 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-10 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-10 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-10 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592293240] [to:+17472338969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-10 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018601739] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-10 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:18764643133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220671] [to:17814292452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-21 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226017] [to:+447470947713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107671] [to:18317940401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152534434] [to:+14696292731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403352039] [to:+14088683785] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724105613] [to:+14049001240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479827960] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12624704197] [to:+14132736961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045694819] [to:+17185041621] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017431490] [to:+14242835795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067870747] [to:+15068039997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477448723] [to:+16513337178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619698034] [to:+15617664288] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-21 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136888] [to:15146607546] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-21 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17805176125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725014177] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205619] [to:17069928150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526882] [to:15673153549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555952] [to:15192164518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:18593170192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-21 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592801] [to:19033140038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618076] [to:13477537945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16509065749] [to:+14695527921] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16087120622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018601739] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196754] [to:14177186413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-20 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-20 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447534986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786505980] [to:+17784023875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003729] [to:19378962580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865050] [to:19285213825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:17046706180] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190756] [to:13044823430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053475] [to:18649082362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022102080] [to:+19027046378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866291095] [to:+15103402043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] peiseubug injeungkodeu-ibnida] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013466975] [to:+12408924523] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015344] [to:15416066726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783027203] [to:+13479809572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040423] [to:+19142286562] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049149306] [to:+17408796104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597070287] [to:+14153404009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146214107] [to:+15147003851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653133912] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789702] [to:12156680364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705063528] [to:+17187510912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-20 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-20 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974548] [to:14803054277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:18656583095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705063528] [to:+17187510912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096526961] [to:+15103404843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317931405] [to:+16317707340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-20 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451222927] [to:+447914068572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-10 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001808] [to:17706165190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103959] [to:17544226426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-20 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606390716] [to:+13477973751] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743671488] [to:+15747251955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094997686] [to:+19792326170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050664] [to:16043381613] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649224] [to:12075171956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026903336] [to:+12138612952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:14087267601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268003840] [to:+16475569430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179537] [to:13013286556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-20 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146035415] [to:+16149965617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729025] [to:+18459407409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-20 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866614649] [to:+15103402882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-20 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949317709] [to:+447451240745] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:19167057745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-21 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-21 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-21 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887797390] [to:+447451223512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283471185] [to:+16783941715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017337990] [to:+19015042038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132906242] [to:+16139093312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-20 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525354119] [to:+19364174516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064149190] [to:+13477988215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13212431660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:12154591281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18625889436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888699] [to:18438013356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142739] [to:19543933194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-21 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14092205492] [to:13463025825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-11 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525354119] [to:+19364174516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-10 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058810] [to:15878791861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-20 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190139] [to:12392097786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136102] [to:18646176474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406803773] [to:+19492814596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158257] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543543462] [to:19543802897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:19024062772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-20 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447423654719] [to:+447451230432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132624551] [to:+16139099432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220677] [to:+19785663152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176760049] [to:+13479805812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472572278] [to:+19148486614] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-21 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-21 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218856] [to:+447508333805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053146980] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-11 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983936] [to:15199197586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403927765] [to:+13364500557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202629] [to:14436849646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298790] [to:19122379374] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15402711053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15402711053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125195252] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-10 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004909] [to:13069811978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12533044281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19152443636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788858453] [to:+17786549789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-20 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-20 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364937] [to:+14153405023] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410194] [to:15198198612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029864593] [to:+14022060563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338454] [to:+16475569330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-10 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378962580] [to:+17542003729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997151] [to:13124656195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13395459478] [to:13303404873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842463] [to:18622340609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868464436] [to:+13867428451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502438489] [to:+15102548412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092478299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12898388049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184194506] [to:+12134789533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-20 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702699897] [to:+19172751695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412646874] [to:+19412642469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988321] [to:19142572130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134242598] [to:+13479191926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605744534] [to:+13478086162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046043344] [to:+12138064853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053475] [to:18649996956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403544403] [to:+12139927018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138636953] [to:+15162526629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503488148] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063433606] [to:+15068036463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065183131] [to:+14706730784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-21 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-21 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:18023592397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163514] [to:14079491613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038482] [to:14017497004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:19563108585] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-10 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022283031] [to:+13024991024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-10 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-10 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-10 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003070201] -Feb 1 11:19:25 ip-10-0-64-10 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862588] [to:+13479377471] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-10 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-21 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447855143746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602594] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782171843] [to:+19178777043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-21 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329545] [to:18646633004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:19059122749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893394] [to:16305494752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893394] [to:16305494752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748579] [to:17754420480] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434616932] [to:+12138619382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857149] [to:12404324607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618929027] [to:+12243239691] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043940] [to:16618775552] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:19086351617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202982308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144653583] [to:+12167990932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202982308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307061604] [to:+13123009388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085718531] [to:+15099550907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748579] [to:17754420480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547610] [to:14239304113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547610] [to:14239304113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054172587] [to:+17053024510] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177186413] [to:+13479196754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143215868] [to:+12138225537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046476255] [to:+15624162390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-21 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587481] [to:19046733929] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18604282455] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062380868] [to:+17189629851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868464436] [to:+13867428451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387859] [to:13104159632] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17805176125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145045] [to:12524123671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309496270] [to:+19148818715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707935864] [to:+19142816923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-21 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668273] [to:19292562744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143215868] [to:+12138737166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015688372] [to:+19014445676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799770330] [to:14505012619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046715718] [to:+19175805379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587481] [to:19046733929] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587481] [to:19046733929] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062787] [to:18649818266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12154327143] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163514] [to:14079491613] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16267107484] [to:+16467019441] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190953] [to:16166385587] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18108451230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-21 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447440304346] [to:+447451217767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579528441] [to:+17572969570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18162009899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077328274] [to:+14076333382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086229] [to:17043400440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034522] [to:17249490620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017543027] [to:+19172669615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123064713] [to:+19134289254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382477] [to:19106705282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16082791045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142344] [to:17547796794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184055] [to:16518907201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046476255] [to:+15624162390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-10 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895016160] [to:+19895334815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-10 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898200603] [to:+19895334574] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070031] [to:+12135876088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-21 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337258] [to:+447948928503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064132131] [to:+14706731129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427784] [to:16622511499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473563] [to:19315104080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16082791045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028697] [to:13049923540] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364753] [to:+16467381243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-21 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064832353] [to:+14706730502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043439002] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145177590] [to:+17409102232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309170824] [to:+13479377230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783366979] [to:+14783020925] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139731971] [to:13373228161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158151245] [to:+13479801295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144790948] [to:+13145488785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999485] [to:+19177320121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476079840] [to:+13658001558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288805] [to:18312969033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003729] [to:19378962580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042548689] [to:+14043411275] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789702] [to:12156680364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462837273] [to:+14073374649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077213066] [to:+12404357887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994521] [to:14039289151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163060] [to:13046401448] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857149] [to:12027106538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865050] [to:12098727682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12154327143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:12185170336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244546686] [to:+13479569548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-21 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333002] [to:+447933101077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031618] [to:12243109094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868236821] [to:+15865746776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13149735534] [to:+13148998202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373084637] [to:+12138028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040308] [to:+17727740304] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868236821] [to:+15865746776] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889181] [to:12522029780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132461977] [to:+19788678736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333286] [to:17405919847] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387859] [to:13104159632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809824099] [to:+15874087673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-21 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-21 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094997686] [to:+19792326170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193152] [to:18149529924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-10 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18036623951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-10 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-10 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-11 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084531] [to:19175280444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-11 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032151] [to:15152054635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-11 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333286] [to:17405919847] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889713] [to:13179855260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-11 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16699002108] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-11 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509007247] [to:12506194952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-11 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035209271] [to:+13479377258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314398] [to:18506316340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724105613] [to:+14049001240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139933] [to:12094509274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107671] [to:18312721042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477537945] [to:+17723618076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833626] [to:17573390002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805812] [to:17176760049] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-21 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153953992] [to:+18484824123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477448723] [to:+16513337178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527446] [to:19152515712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167772174] [to:12162350401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19132148809] [to:17854242228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042548689] [to:+14043411275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324906] [to:19102587933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15108606110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-21 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-10 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-10 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-10 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-10 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-20 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-21 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:12172138657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532301058] [to:+17813129425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-10 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154464] [to:+13473439053] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477773729] [to:+18188693873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508168552] [to:+18589568738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977480] [to:15403595226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029996287] [to:+19028019398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-21 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447779731912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:14049449589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-21 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096171332] [to:+19282855132] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-20 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-21 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256225785] [to:+13606027013] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19122810395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-20 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292731] [to:19152534434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151532] [to:15183810759] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213305082] [to:+17862546921] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305511] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094869854] [to:+17097005163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994521] [to:14039289151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145679330] [to:+14388071572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709135] [to:18144460471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709135] [to:18144460471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14127134862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:14049449589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213305082] [to:+17862546921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039F0201] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039F0202] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151532] [to:15183810759] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149419] [to:13309798448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084531] [to:19175280444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755971] [to:18603945829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146689965] [to:+15146007961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922986] [to:15148046171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15146924709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032789940] [to:+13475186154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-21 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137944815] [to:+16136048059] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-21 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-11 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003730202] -Feb 1 11:19:48 ip-10-0-64-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-20 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649996956] [to:+17277053475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634753] [to:15167257290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072626584] [to:19524573956] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482483] [to:18433724896] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258628] [to:16184191852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17012101730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500505] [to:15139047971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320121] [to:12079999485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-20 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12675962115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-21 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18167395655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:13477379513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18137850753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068014] [to:16782002881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-21 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327665] [to:+447414885630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022992494] [to:+13473799648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-21 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447904424393] [to:+447451249834] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500030D0201] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139933] [to:12569191042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285838142] [to:+19175630754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18286740334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-21 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447806095884] [to:+447520629899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834240] [to:17163075109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154772] [to:+16042652697] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034777924] [to:+18678880439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:13308097578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108095698] [to:+12674862816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149569177] [to:+16149963761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986024] [to:14192037977] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986024] [to:14192037977] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183660] [to:14088814344] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-10 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-20 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447904424393] [to:+447451249834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500030D0202] -Feb 1 11:19:53 ip-10-0-0-10 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-20 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102612854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-10 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732886] [to:16318942077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17087317578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867128450] [to:+13478683806] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015402861] [to:+12182031169] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129746663] [to:+14125354593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015402861] [to:+12182031169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13033198819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850497] [to:15748088496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-21 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712499715] [to:+12029991541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036690562] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145901528] [to:+13476678942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077152745] [to:+16463497668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179397726] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868236821] [to:+15865746776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407517766] [to:+14353391085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003070202] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402041912] [to:+12408924904] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475492498] [to:+16474916287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164309122] [to:+16162390386] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316174037] [to:+16313975052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293538599] [to:+13475186323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786064541] [to:+19783619441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190953] [to:16166385587] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13033198819] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129232173] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004481] [to:13069308633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-21 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327665] [to:+447414885630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-21 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062480] [to:12086061438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106705282] [to:+13369382477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19017365304] [to:+19142815264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042593560] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062548170] [to:+16515608421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334329] [to:18503770813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:15417257454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14428886132] [to:+13479138787] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15744857331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048201] [to:12095415037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-10 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17065705339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-20 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-20 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627143] [to:+447747104276] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033950] [to:17243120760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12139102155] [to:+19282977695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190139] [to:12392096166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777108] [to:18127012443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234507233] [to:+18312228652] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17134384220] [to:+17133735871] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+16137014607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016804163] [to:+14242847436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:18307346824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865697210] [to:+13867428035] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373451330] [to:+16474916206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-20 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-21 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-21 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236847] [to:+447944253420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003850202] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221030] [to:14847197736] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216142235] [to:+13219998418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745032] [to:16318486826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17158190902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12892756578] [to:12266003112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105450005] [to:+17604749841] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16107138851] [to:16109997864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-10 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-21 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418335241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-21 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:17184337212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249317470] [to:+14128193461] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-10 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145313365] [to:+16465472836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019420] [to:13186171902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-10 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-10 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988998] [to:18042522727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167772174] [to:12162350401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-21 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218466] [to:+447762782867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-10 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-10 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-21 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-20 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645381] [to:15023315352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-11 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14087675320] [to:+14086182958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-10 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872790065] [to:+15874052285] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164463284] [to:+16163266402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693847154] [to:18067812198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026880592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997744] [to:12603164642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053949556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525324089] [to:+14158594819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-20 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-10 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144177218] [to:+16692223797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-21 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-20 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036174167] [to:+16822139507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283026505] [to:+14242835510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482483] [to:18433724896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802997] [to:12392873669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181112] [to:16147331997] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:13134604556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-10 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364271] [to:13364703257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12137698395] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-20 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914840] [to:14502097442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045399316] [to:+12132957246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097438098] [to:+16474914812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003850201] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274225] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319180531] [to:+16318127495] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18167395655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145255591] [to:+13477865358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733826] [to:17708787981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334213] [to:19783993389] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18434616932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009304] [to:19736995203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372139] [to:17142026707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048946377] [to:+12048132732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198765] [to:19207135057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044715390] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319180531] [to:+16318127495] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053737972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122298492] [to:+18326501697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-20 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+19177739392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:17173711421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193714] [to:16624696644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146035415] [to:+16149965617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767694] [to:15673954880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-21 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020456] [to:14783194716] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-21 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246275] [to:+447754128416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024121626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097700643] [to:+17097004811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785808176] [to:+14704446258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868324] [to:16786634702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15142682236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137209039] [to:+19492453060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-20 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-21 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223142] [to:+447581423589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:16138595949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040312] [to:+16467380890] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055996297] [to:+12262430538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503591] [to:13378527605] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503591] [to:13378527605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203444] [to:15144245278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13858881961] [to:+13853361804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914840] [to:14502097442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-20 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17013187756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14125195252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:14087267601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16063071537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865061145] [to:+13023744821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672705064] [to:+12136348812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649389] [to:15673153015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316316] [to:13127727214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-11 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-10 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109627476] [to:+19178093867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105818680] [to:+13477865211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-10 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13432640243] [to:+16476911771] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-20 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146611559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232274837] [to:+19149088724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082202001] [to:+12086252270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18167395655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340695] [to:12105374244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412323265] [to:+15412488213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436682114] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14238874728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046200] [to:19028024432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164629] [to:19194920459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824670] [to:19732892199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882930] [to:15302645696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085587547] [to:+18572329795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-10 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210043] [to:15593034298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572147899] [to:+16025004726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017127925] [to:+12027179723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472602765] [to:+14242846404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-20 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520605601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040616] [to:+16172193643] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072979358] [to:+12139353198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-21 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447855143746] [to:+447418338470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-21 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-21 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082982517] [to:+19177373848] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023012589] [to:+19028019289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092115] [to:17043088948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015093] [to:15813194370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-10 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691642] [to:12603129925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542020718] [to:+13055017810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360322] [to:18562374133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788769230] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375032928] [to:+17604748030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152534434] [to:+14696292731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044715390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649082362] [to:+17277053475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-21 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097368] [to:109472186328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-20 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335346] [to:+447901942641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149963091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-20 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335346] [to:+447901942641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640711] [to:19513473576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412646874] [to:+19412642469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-20 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897001618] [to:+16096144562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-20 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095876] [to:14384044133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807631] [to:17048845646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999485] [to:+19177320121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-20 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022799] [to:17095417302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129409] [to:16109087591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375032928] [to:+17604748030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788334597] [to:+14044811778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785205325] [to:+16465640991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145255591] [to:+13477865358] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375032928] [to:+17604748030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732090] [to:14239947333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358401240] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132980063] [to:+12135455120] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-21 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835314] [to:13179952880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467503113] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-21 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262285050] [to:+12262411654] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15402711053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13134235752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835314] [to:12562984060] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16034774307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:14236659931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12068613508] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819892233] [to:+15817023385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316109658] [to:+19014449905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:15312894745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677702173] [to:+12674862910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-10 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14388757916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316316] [to:13127727214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-10 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-21 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15195206869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-21 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-20 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640030] [to:16783620479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872790065] [to:+15874052285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138089521] [to:+19032130749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262032637] [to:+12262403373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14424446851] [to:19852108127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044012691] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884532] [to:14439293834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619698550] [to:+13476677773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093312] [to:16132906242] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297595] [to:14232017444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048059] [to:16137944815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893394] [to:16305494752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252775218] [to:+19149098181] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530366] [to:14108006608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046396] [to:19022330148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-20 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-20 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014059] [to:12187664406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:14087267601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404378] [to:19102733383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032155434] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054808325] [to:+15058004451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285213825] [to:+13234865050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505012619] [to:+15799770330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364864294] [to:+13366450997] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093132072] [to:+14022854442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328025406] [to:17132566795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175386580] [to:+19177329053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175386580] [to:+19177329053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257769104] [to:+12136165064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056304580] [to:+12264559516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326170] [to:14094997686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-20 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168289822] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071572] [to:15145679330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142635022] [to:+19172595532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000012] [to:13025218967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-21 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787610] [to:12525602096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023592397] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177663] [to:12393404917] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812650] [to:13049622422] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088377938] [to:+14155698445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-20 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164629] [to:19194920459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-20 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451240203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143667457] [to:+15873277837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143667457] [to:+15873277837] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162274096] [to:+16177067220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19122810395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364864294] [to:+13366450997] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373084637] [to:+12138028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089864000] [to:+19083824945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095896552] [to:+17097019065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815000555] [to:+16172139626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-21 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179976060] [to:+13478086924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734583334] [to:+17736669804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037E0601] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182085399] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037E0602] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480064] [to:13477499138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179855260] [to:+13176889713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122810395] [to:+14242836557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187510680] [to:13474996890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299390443] [to:+12136163363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019289] [to:19023012589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407726967] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688349] [to:18042197488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-10 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664676] [to:18327222425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204832566] [to:+15104474872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158482] [to:19209032554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-20 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397773466] [to:+19543141240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691857] [to:18027821603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17019365685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-21 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804388] [to:17852153918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18434616932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196754] [to:14177186413] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12892756578] [to:15196213738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037E0604] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730502] [to:17064832353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463539485] [to:+18133201244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740532] [to:+18638555574] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852108127] [to:+14424446851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405890] [to:17866161419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-10 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252104201] [to:+12138225426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086363565] [to:+17328842569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064148215] [to:+18033104551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954765] [to:12506616498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-11 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737087823] [to:+12342227347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-21 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-20 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90A06] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165579955] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148143924] [to:+13023744627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064148215] [to:+18033104551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905854] [to:+15817015041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215933] [to:17604988489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12087915382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064789961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884732] [to:14132160631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-20 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19719998165] [to:15038689819] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034747763] [to:+19033076562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157036] [to:14692685728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-20 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90A07] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364568] [to:+14146006720] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883504] [to:15306659391] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-20 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16138610727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064739956] [to:+14706731099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858569998] [to:+13392304734] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15746078165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835510] [to:18283026505] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19164673228] [to:+19165836400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480019] [to:17312279270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191031] [to:17314003432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202783764] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317802443] [to:+16316141242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202783764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109087591] [to:+19715129409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046200] [to:19028024432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023315352] [to:+18572645381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673038477] [to:+14197767796] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095896552] [to:+17097019065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786634702] [to:+16785868324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411370] [to:12267923785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703162755] [to:+14706734251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-21 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90A09] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134853958] [to:+12344017332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783876566] [to:+19513387072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-21 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B90A08] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-21 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603945829] [to:+17186755971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175386580] [to:+19177329053] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155855547] [to:+19312577599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046195] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696898782] [to:+12602755221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365403] [to:14048015396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142504] [to:19542039954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855100266] [to:+16465640673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474678085] [to:+16474955737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018659] [to:12629095976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-20 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90A0A] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-20 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414457541] [to:+13126145672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305244790] [to:+14582025806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12895273321] [to:+12264556086] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168208270] [to:+12167990710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309075668] [to:+14402526529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-20 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-21 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447852965335] [to:+447451231301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-21 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-21 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520605601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014059] [to:12187664406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108451230] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309170824] [to:+13479377230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466635591] [to:+16572211439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739302] [to:19105082074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-20 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088543] [to:15203385110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-20 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BA0A01] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17727776680] [to:+17726177397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204046] [to:18133614539] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513473576] [to:+19513640711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:15303032792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004510] [to:13068502141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-21 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0A02] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18033159556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547551] [to:15139096635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603945829] [to:+17186755971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-20 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BA0A04] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-20 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0A03] -Feb 1 11:20:38 ip-10-0-0-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:13127782153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:18705147031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156974070] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19782547436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-21 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327665] [to:+447414885630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181018] [to:12045340517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-21 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159976874] [to:15166525462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-20 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BA0A05] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147004181] [to:14388638503] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132071017] [to:+14132519315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:12057372189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787610] [to:19193446057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389983448] [to:+14388079726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093132072] [to:+14022854442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:17044497875] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621663] [to:17023087225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785968044] [to:+19783649053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033103] [to:17248825599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147639648] [to:13142828948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-11 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-20 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-21 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BA0A06] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-11 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730097] [to:17068178717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153739678] [to:+13477866491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603945829] [to:+17186755971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663407] [to:12693835856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-10 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287107759] [to:+14804392157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805176125] [to:+15874087104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360322] [to:18562374133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17159310683] [to:+14148887109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095876] [to:14384044133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-20 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BA0A07] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123122978] [to:+18572405070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-20 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BA0A08] -Feb 1 11:20:42 ip-10-0-0-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-21 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12194337971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-21 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18175007950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703950765] [to:+17605898713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805379] [to:13046715718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016675341] [to:+13473899665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189474331] [to:+17813129143] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694149384] [to:+12693366473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092407331] [to:+19712611279] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BA0A09] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862594] [to:+16463494861] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025199395] [to:+13025830100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512000819] [to:+16125023319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193833498] [to:16197170200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-21 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BA0A0A] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855100266] [to:+16465640673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838168] [to:13046829869] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411370] [to:12267923785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808327124] [to:+17784024510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-20 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447747104276] [to:+447520627143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474097995] [to:+14692175240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18133048435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132160631] [to:+15087884732] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102804803] [to:+19199162830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046200] [to:19028024432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164629] [to:19194920459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19167532374] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12294441599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BB0A02] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360322] [to:18562374133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BB0A01] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823486] [to:15852605379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152054635] [to:+15152032151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12137698395] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017934910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140141] [to:16037260657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472338969] [to:18592293240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337215] [to:13182908946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162332] [to:19196416348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143357203] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-20 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364512434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401390] [to:15086620626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737184405] [to:+13473797285] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257291] [to:12527171269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142029995] [to:+12627775900] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-20 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BB0A03] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-20 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447711865468] [to:+447451239077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203163328] [to:+14242218692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897883] [to:17654629936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082026499] [to:+19083824775] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473931363] [to:+14158253889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082623] [to:17812197320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530684] [to:16025385101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19377502900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055443] [to:18649017770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086100] [to:15142139710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-21 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BB0A04] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-21 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17084154278] [to:+17736666846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198067490] [to:+12262410233] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049237174] [to:+19802093652] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016549845] [to:+18018500580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500036C0201] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347218988] [to:+17185041039] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044885510] [to:+14049001307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218949] [to:16015967594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016549845] [to:+18018500580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500036C0202] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169103636] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767796] [to:15673038477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742646440] [to:+17187349894] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-21 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BB0A05] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055443] [to:18649017770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19122810395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-20 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-21 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-20 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632740496] [to:+18188753678] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:14012975501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609861817] [to:+13609727785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593587700] [to:+16467389396] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393008828] [to:+14242797959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-20 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627972] [to:+447432251896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17868537532] [to:+13053406988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475016650] [to:+19176634388] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-20 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BB0A07] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691367] [to:12602732686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-20 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-21 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-21 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BB0A06] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046462] [to:19028173641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-11 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618076] [to:13477537945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479846] [to:19376701357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141242] [to:16317802443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403096979] [to:+13478684571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13096608266] [to:+12342314592] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134550853] [to:+16477995727] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-20 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BB0A08] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-20 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BB0A09] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134849612] [to:+18133205615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188276463] [to:+14844893031] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003D60301] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377035100] [to:+12138026518] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014513447] [to:+19738789677] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479903] [to:19186256895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-20 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BB0A0A] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-20 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-20 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234916623] [to:+17604745398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-20 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742262942] [to:+19717328992] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057675069] [to:+13052038748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105071348] [to:+12343867680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089864000] [to:+19083824945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099865021] [to:+17097019517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500037E0603] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238395128] [to:+18572645643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658042209] [to:+13477865107] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392873669] [to:+17864802997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194127472] [to:+15817009047] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204046] [to:18133614539] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645381] [to:15027776983] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19499880046] [to:+16269882849] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-21 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447874749593] [to:+447520609415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-21 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563786262] [to:+18563126128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146611559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:12252808794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:13025199395] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861821] [to:16783611013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203444] [to:15144245278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15745751123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D60302] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777108] [to:18127012443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061116] [to:22508009213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654326860] [to:+17659869131] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197746444] [to:+12267984235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-21 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-21 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207239] [to:18122398171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069552] [to:13093519094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434616932] [to:+12138619382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036317] [to:15063812730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654692462] [to:+17324433140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12292997523] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299773] [to:14103362609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:15105983141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:13196519581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-11 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086229] [to:17043400440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488271] [to:15867388463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:18039179726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-21 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142424991] [to:+19715123138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D60303] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437400936] [to:+14434530428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016569] [to:13867486101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-20 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047160707] [to:+13478086321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18178963927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158916832] [to:18432139166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:14129746663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068454] [to:13136246677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15869441447] [to:+13478021557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-21 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17805176125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488271] [to:15867388463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463493965] [to:16466411997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003790201] -Feb 1 11:21:00 ip-10-0-64-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866161419] [to:+13053405890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195911631] [to:+19142066995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14077476605] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17753384634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-20 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-10 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-11 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394387] [to:12166449506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194021542] [to:+12262410703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360886] [to:16233416095] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-20 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396452397] [to:+16513337606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568809] [to:16476887631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143588455] [to:+14387953842] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-20 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986913] [to:14043974998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18176009694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468174] [to:18037270218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356136] [to:13024011662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201409] [to:14433665528] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624162263] [to:13103887687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093014] [to:16132614338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093014] [to:16132614338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:13127782153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309173005] [to:+15304513898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-20 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766532630] [to:+447418334493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868719099] [to:+13866012652] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-21 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802887017] [to:+14582023574] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053149355] [to:+18053942254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671562] [to:+16474952108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302590] [to:14124598386] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808327124] [to:+16474916705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015880662] [to:+14243364069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068812825] [to:+13069929469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848024729] [to:+13479379614] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706775669] [to:+13214067519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603560969] [to:+19717778105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198904062] [to:+16474941304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203934] [to:14102699162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-20 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:12079561269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-21 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174386591] [to:+15178615956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474872] [to:15204832566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656583095] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-10 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143588455] [to:+14387953842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-20 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084250027] [to:+19082809147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040826] [to:15023411605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025331] [to:12404128542] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027440] [to:15136962797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916287] [to:16475492498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076049598] [to:+13479789709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099966667] [to:+14253338341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:18148891766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326820537] [to:+13123009529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069682] [to:14428004633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043511228] [to:+13475089635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:18324756768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122953105] [to:+14122302146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-20 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-20 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003350201] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646633004] [to:+18572329545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503002664] [to:16508715510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788959488] [to:+17784026820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092015121] [to:+15612318390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093858] [to:14842064909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154617876] [to:+14156491396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-21 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-21 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003350202] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12544886986] [to:12545636876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905854] [to:+15817015041] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206367] [to:+13658002817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614463] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622511499] [to:+19018427784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706085443] [to:+12134788780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313794353] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774532] [to:17328297234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377411] [to:13027530194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109781846] [to:+14072680797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18643346681] [to:18287740554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025018] [to:18602680205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129837132] [to:+13479787116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045249537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373170] [to:14074924857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047160707] [to:+13478086321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132900575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076873] [to:19286518256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17753384634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143588455] [to:+14387953842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084250027] [to:+19082809147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174596428] [to:+13172104209] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-20 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-20 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184210262] [to:+12138733864] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404580001] [to:+12404084748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E60201] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-10 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094997686] [to:+19792326170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177309606] [to:+15617666836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147714545] [to:+17605895082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12094221934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17732943607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043088948] [to:+19802092115] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-21 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-20 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683806] [to:17867128450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054230182] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:16478924354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092407331] [to:+19712611279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203070320] [to:17204167602] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857687791] [to:+12813066412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476191415] [to:15185787976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204832566] [to:+15104474872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749118] [to:14196188562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040490] [to:+15108244495] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054230182] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282904856] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085679] [to:15147012581] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085679] [to:15147012581] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502203] [to:19407360278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064809976] [to:+13064000166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:13187712503] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-20 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147004181] [to:14388638503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153739678] [to:+13477866491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416066726] [to:+14582015344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266003112] [to:+12892756578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-21 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-10 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404580001] [to:+12404084748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E60202] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365667932] [to:+17348210880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993075] [to:19543760646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13472624297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18038007930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963761] [to:16149569177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573376925] [to:+19175995086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568809] [to:16476887631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-20 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360175] [to:15092022819] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-11 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040587] [to:+18193070311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324691452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688833] [to:17096992574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-11 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165473909] [to:+12018985921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-21 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003940202] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688349] [to:18042989255] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373810524] [to:+13479196778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903062] [to:18598018161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404032804] [to:+12533361218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746124768] [to:+15745667560] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130030] [to:15055858366] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063330213] [to:+15068038864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334075] [to:19892801555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094515] [to:13154547975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032448209] [to:+12135760957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746124768] [to:+15745667560] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564581418] [to:+14153406670] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783611013] [to:+16785861821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-21 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447828999265] [to:+447418323585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145358231] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-21 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-21 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512167842] [to:+13202897477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657261] [to:12543928010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183064055] [to:+16233839292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044957558] [to:+19802092133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16147694630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605433446] [to:17604019573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096318761] [to:+12346507685] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-20 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-20 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696898782] [to:+12602755221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218889] [to:+19199166322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076625235] [to:+16466998648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622340609] [to:+17328842463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093014] [to:16132614338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799972153] [to:+12155961003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064832353] [to:+14706730502] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028173641] [to:+19027046462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252777952] [to:+14692052817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988344] [to:19803491736] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477537945] [to:+17723618076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416066726] [to:+14582015344] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673772942] [to:+15672819676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066143624] [to:+13479805435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243870886] [to:12246340065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108006608] [to:+14434530366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-20 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209445] [to:+447929125077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-21 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105298570] [to:+12155961023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174380380] [to:+13072759034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254289392] [to:+17189627231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16147694630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634572] [to:13143054673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14127134862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-10 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262285050] [to:+12262411654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032151] [to:15152054635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402212336] [to:+17408796733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17732943607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176881128] [to:+13477146890] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182181220] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-20 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-20 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-21 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132569] [to:16173315949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164506340] [to:+19292009430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403308041] [to:+15817009128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174380380] [to:+13072759034] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003870201] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870202] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099093] [to:18192382467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774532] [to:17328297234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014069] [to:14137689670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014069] [to:14137689670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176881128] [to:+13477146890] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938803] [to:19025530322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023008644] [to:+17027478851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:19733564512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596348] [to:15737198808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475752275] [to:+16136044959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687351] [to:19258225120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-21 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176881128] [to:+13477146890] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246815626] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993136] [to:17144005989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167416137] [to:+14156499442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-20 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145358231] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14434185694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014527635] [to:+12406857149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187306491] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262285050] [to:+12262411654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056457] [to:19026798027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732500] [to:12678448451] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053963863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053963863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-10 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19719998165] [to:15038689819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035761] [to:17245258125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328644645] [to:+17323624227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072880] [to:15142387390] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072880] [to:15142387390] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:13196519581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:19544791804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996766] [to:+13475188752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105516136] [to:+17754993417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504256] [to:19196087712] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396452397] [to:+16513337606] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503219596] [to:+17185676843] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102406577] [to:+13475184732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126128] [to:18563786262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16147694630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149569177] [to:+16149963761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149675882] [to:+16475038643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193718] [to:16067038403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203385110] [to:+19149088543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573376925] [to:+19175995086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029678] [to:17056412177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273171287] [to:+17206232173] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066185967] [to:+14706731129] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654211264] [to:+14146006279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704367519] [to:+15703977610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-21 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316889640] [to:50376333354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-20 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799301] [to:19072445056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194534898] [to:+17199990152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033088413] [to:+13477965977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15406212855] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038951122] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394955] [to:18599074530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14015001574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187306] [to:12022398934] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402222086] [to:19403663300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136962797] [to:+12138027440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186256895] [to:+16465479903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-21 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283630371] [to:+14808427313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142139710] [to:+14388086100] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804785] [to:19072320289] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343128083] [to:+14703334836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044954029] [to:+17049700679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156963] [to:19192737548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-10 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-11 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679076508] [to:+12679525440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-10 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186780963] [to:+13477963996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:17085395874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798168] [to:15702358870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15034626016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-21 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13049723995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19122200032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14015001574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869924] [to:14783052205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147065521] [to:+15146007715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194534898] [to:+17199990152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348747] [to:18435933168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17732943607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086321] [to:19047160707] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438398787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15747251985] [to:15745758786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550073] [to:19519020593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147638160] [to:13148176446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859310] [to:14136685969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019398] [to:19029996287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476007688] [to:+16096144013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044535102] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802887016] [to:+19712611433] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12243744605] [to:+12243103188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468592] [to:18025785371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043417988] [to:17708961188] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049064739] [to:+12264551265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-20 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-20 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447779731912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16085161590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-11 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016482308] [to:+16513338414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15195206869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097710611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734383] [to:14144294070] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18434616932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142900757] [to:+17142943632] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056880751] [to:+18638555698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085300] [to:13193295309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732886] [to:15169831193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:16699002108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210043] [to:15593034298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-21 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243611] [to:12524129358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092115] [to:17043088948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899457] [to:17063296832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14154661224] [to:19102341940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-10 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146381599] [to:+14388075132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403140897] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603560969] [to:+19717778105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178912349] [to:+19177374023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263489531] [to:+12262717670] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821096] [to:+12138619222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-21 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683806] [to:17867128450] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148000] [to:213676702796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-20 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-10 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-11 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073015409] [to:+16125021426] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-10 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-10 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-10 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502769934] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E10201] -Feb 1 11:21:40 ip-10-0-0-10 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10202] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-21 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447453323685] [to:+447451246216] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-10 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-21 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324569] [to:+447511403306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748096] [to:15732604392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-21 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324569] [to:+447511403306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248638] [to:17743867272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218889] [to:+14049001026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039461761] [to:+17207291403] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062522] [to:19022666137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995525] [to:12177723163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786064541] [to:+19783619441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175007950] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153671884] [to:15866252648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064370] [to:16467042934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696087912] [to:18176750930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252411696] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212431660] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389298239] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192793415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293156331] [to:+17547774583] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022102294] [to:+15169269426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996766] [to:+13475188752] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134892265] [to:+18572400640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127723] [to:+19199164481] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788079] [to:12294152427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:13196519581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-10 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219352] [to:17044533691] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:18035968232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293156331] [to:+17547774583] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487736464] [to:+15869806693] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176046896] [to:+13176889935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492539] [to:14783348895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145358231] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19129968510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17022739688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022748965] [to:+18583604462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037B0202] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657195487] [to:+15103226954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500039A0201] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063891] [to:19013199499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022748965] [to:+18583604462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037B0201] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043974998] [to:+17279986913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-21 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195539256] [to:+17193538914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097600352] [to:+16466288605] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097600352] [to:+16466288605] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:0608047A350201] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449054] [to:19012100851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058189015] [to:+12264558962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305570606] [to:+13305779632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156561911] [to:+18054105350] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:18438621368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:16094810931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263448875] [to:+19027031444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462455013] [to:+13052037362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127284729] [to:+14125354585] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:0608047A350202] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038643] [to:15149675882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077548] [to:12486335477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375369493] [to:+15102542596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477723336] [to:+13658001708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624738518] [to:15626445232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868324] [to:16786634702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024723477] [to:+17027182720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657195487] [to:+15103226954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039A0202] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087528] [to:15873356060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17753030615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14182085399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033159981] [to:+19542719881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084107603] [to:+12086204561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+14242218427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763817] [to:+12678444714] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625009805] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149798242] [to:19174457890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274886315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525626] [to:12672419786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667691] [to:15748706231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:13023676045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16084459922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039867791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17272907582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-21 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447855143748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084793708] [to:+18453632622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-11 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064370] [to:16467042934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103337] [to:19094520515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514028987] [to:+19047587115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402633024] [to:+15406286293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15195623234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-10 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015910408] [to:+18572195492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767799300] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:17038951122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019126] [to:17094868599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-20 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16138610727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085991] [to:+17162790890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003A10201] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049353703] [to:+17027182784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156963] [to:19199229741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598645305] [to:+19199161385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274886315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003A10202] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172164] [to:12045146642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072014041] [to:+12139213496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003790202] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522727] [to:+13477988998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079005245] [to:+15085562554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169538102] [to:+18192011194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358401240] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064789961] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438269639] [to:+14706730686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017101298] [to:+13478992448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013137161] [to:+12137978027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184860409] [to:+15184174118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403096979] [to:+13478684571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18189614463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803703] [to:14344294044] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803703] [to:14344294044] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419752] [to:12693488083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325109289] [to:+17348210439] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-11 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154874175] [to:+15596639411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-10 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604090] [to:18038992946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018542] [to:19023152518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202625653] [to:+17278601635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504816260] [to:+19172319642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037C0201] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138536235] [to:+16139092453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148740359] [to:19145848248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17248826070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066425] [to:17867472292] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384917427] [to:+14387942367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504816260] [to:+19172319642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037C0202] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202625653] [to:+17278601635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752762175] [to:+17027182733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612875861] [to:15615030106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019126] [to:17094868599] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:16138595949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014513447] [to:+19738789677] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665400] [to:13362139658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449054] [to:19012100851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103939853] [to:+14056213286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246340065] [to:+12243870886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740360] [to:+17729797174] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314153529] [to:+16314907254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274886315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364375] [to:+17727746943] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993075] [to:19543760646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277682317] [to:+17274938481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019398] [to:19029996287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-20 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613618869] [to:+16617480357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068171577] [to:+12138025755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895082] [to:18147714545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502327788] [to:14508486070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13146148356] [to:+16367306206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468592] [to:18025785371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232484945] [to:+15167349650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314440342] [to:+14402528328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764128] [to:14356096656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501379] [to:17062979058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846202359] [to:+14136859416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364113] [to:+18133201327] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286292] [to:12523606717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036277439] [to:+13214068833] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15802771552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032A0202] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072558] [to:19192109594] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654211264] [to:+14146006279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-21 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609415] [to:+447874749593] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015344] [to:15416066726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506316340] [to:+18506314398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337606] [to:12396452397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17022015982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017257] [to:18105139615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13372518328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136673760] [to:+14242839629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-20 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17802191905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618266984] [to:16626083214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626956426] [to:+17162792429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264558994] [to:12044470006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563108585] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144002437] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032A0201] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813534294] [to:+19789697903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342947320] [to:+17073419188] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436857076] [to:+19108888252] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053252177] [to:+12262411710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038238019] [to:+14242797855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15037419967] [to:+19034595160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046577337] [to:+19046946811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317802443] [to:+16316141242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175047309] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19802102351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338871] [to:19285306482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659140] [to:18563925460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542596] [to:19375369493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-21 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447840058239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792452178] [to:+18724008386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702059736] [to:+13479218957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855199890] [to:+19122005562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624733791] [to:19092655401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667595] [to:+18506313647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436026] [to:12079305618] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282731] [to:+13479139204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867128450] [to:+13478683806] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-10 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830178] [to:13024019532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:12525718346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027172133] [to:+19027026779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313794353] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669615] [to:16017543027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-20 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572555884] [to:+447451249343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:12162428955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044715390] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988344] [to:19197572046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477402265] [to:+16136047591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086070358] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177723163] [to:+18729995525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800202] [to:15194025180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800202] [to:15194025180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364117] [to:+17277568186] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246811342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12068613508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124647287] [to:+12406858933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19286518256] [to:+19287076873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734958935] [to:+17736668141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178912349] [to:+19177374023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:13018047888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797592] [to:15403886652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199535441] [to:+14198430956] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044885510] [to:+14049001307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048559] [to:17654255384] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196350684] [to:+17187510374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416762971] [to:+19417256451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036748012] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156786821] [to:+14157879033] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869059] [to:15705990263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369886999] [to:+13134688647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-21 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055307626] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055307626] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449954] [to:19016145613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447900] [to:19713311010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18108451230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568901] [to:15854783367] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:12626238695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941403] [to:14045877486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053065302] [to:+14144007677] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757403796] [to:+12138028221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-20 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18132600367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543928010] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783052205] [to:+13477869924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075811] [to:15732768314] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055594327] [to:+17059103231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540021] [to:15104723895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-21 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125195252] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625162060] [to:+19543142972] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012412235] [to:+17077507795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069552] [to:13094539267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-20 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235065145] [to:+18638552881] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17579989646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696439931] [to:+14242839588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:12172138657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976945] [to:13476338799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543760646] [to:+19542993075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784051086] [to:18032256822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12545952555] [to:+19402222054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763817] [to:+12678444714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048133329] [to:16133556265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132906242] [to:+16139093312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478396282] [to:+16477996713] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284475914] [to:+19173834994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:15017256891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-20 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-10 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453910] [to:12024608006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931090] [to:14388876880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991980] [to:14068657692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526502230] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373128] [to:18565066253] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373128] [to:18565066253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373128] [to:18565066253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172164] [to:12048810774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:13364489485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:17706543179] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-21 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-21 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-10 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-10 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-10 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-20 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-10 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-10 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654257176] [to:+12132958996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158475538] [to:+16519275894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19126147462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269426] [to:12022102294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178214042] [to:+18729995785] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054379583] [to:+18053017802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146227912] [to:+14146006528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146227912] [to:+14146006528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015311] [to:12024235349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-20 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16192286727] [to:+17027183470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-10 mdr: 2016-02-01 11:22:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136894133] [to:+15865748823] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-21 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064853] [to:13046043344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748892] [to:15863816008] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477779955] [to:+14242846560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653846403] [to:+16164200064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067511298] [to:+14703334844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400384] [to:13053086923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024018512] [to:+15874097462] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328886] [to:19192647009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672682] [to:12035439684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-20 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158881442] [to:+17816548829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+14242218427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-10 mdr: 2016-02-01 11:22:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-21 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031618] [to:19027177133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404342063] [to:+12405587902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592425714] [to:+13479806692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474204] [to:15104802646] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734583334] [to:+17736669804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144005989] [to:+13478993136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872415] [to:17016303063] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703749498] [to:+13145488536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:18152012397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-21 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025018] [to:18609860673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678771721] [to:13066644310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696901] [to:15706372560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742895333] [to:+17749921547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068590] [to:16017304422] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301253] [to:18503587644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14788327463] [to:+19292201155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297737] [to:15047088260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691642] [to:12604130653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691642] [to:12604130653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027454] [to:19142634244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14424446851] [to:19852108127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-21 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447719782529] [to:+447451218022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670202] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802997] [to:12392873669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-21 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447719782529] [to:+447451218022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670201] -Feb 1 11:22:27 ip-10-0-0-21 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-20 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16785086029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-11 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-10 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-10 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201239] [to:+13202817882] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323770526] [to:17326484986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-10 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-10 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029199149] [to:+14025002617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062979058] [to:+17063501379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-21 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024820195] [to:+17027476167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654629936] [to:+17605897883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-21 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198765] [to:19207135057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472836] [to:16145313365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059851976] [to:+15754483792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830178] [to:13024019532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14389298239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551043] [to:18622184111] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011434] [to:18193833661] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-10 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129232173] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447864540950] [to:+447418320259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:15134199788] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872415] [to:17016303063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375915] [to:18472223365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869924] [to:14783052205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543802897] [to:+19543543462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-20 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447855143746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196090156] [to:+18193073637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994521] [to:14039289151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-11 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19046094019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198561126] [to:+18194141474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172628754] [to:+12138068069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922986] [to:15148046171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452269] [to:12079749402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134849612] [to:+18133205615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-21 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017124] [to:18055014319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022630] [to:+18572408043] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-21 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184174118] [to:15184860409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430956] [to:14199535441] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614463] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749430] [to:12815090792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134716] [to:+16475569448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347282887] [to:+17348211077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19197176373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12069006587] [to:+12062588048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062748] [to:16628299752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188458396] [to:+19715125934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364512434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364541] [to:+13214067686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185308821] [to:+13478083047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048856780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13212431660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848858597] [to:+16106999413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797514] [to:16149725020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436857076] [to:+19108888252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784088548] [to:+16784348580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-20 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-20 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907745] [to:12253337739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13134235752] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148142982] [to:+16136042254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041934] [to:+15082711014] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479946383] [to:+16136047870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198168050] [to:+18194140924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-21 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848858597] [to:+16106999413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-20 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323585] [to:+447828999265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285364434] [to:+17073008920] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19705762290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15188922907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152681408] [to:+12135596072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654255384] [to:+18583048559] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187728895] [to:+15187340192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015311] [to:12025691096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309744465] [to:+18724005901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:17405050577] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14157878439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522553410] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-21 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262534298] [to:+12132950236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141242] [to:16317802443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184174118] [to:15184860409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175047309] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-20 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015311] [to:12025691096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124979357] [to:+13203073491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347282887] [to:+17348211077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244199806] [to:+18477568622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655927604] [to:+16466691706] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:19024123413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201511] [to:14438069228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655927604] [to:+16466691706] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-20 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240706] [to:+447444269905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272660137] [to:+18459997524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702735] [to:17403615190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050545] [to:17785864277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412951] [to:19545152062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-21 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897098] [to:17174142753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-11 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-11 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+19177739392] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602245254] [to:+12604077490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-11 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782993370] [to:+12132951382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-11 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-11 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015526598] [to:+19018427181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163527308] [to:+12167776639] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-11 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403925647] [to:+17034199337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-20 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17724940975] [to:14074522743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863076177] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028076470] [to:+17026747598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-10 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007547] [to:14149402193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152054635] [to:+15152032151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095333873] [to:+12672732834] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417963] [to:15192910110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-20 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+19177739392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706775669] [to:+13214067519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047545] [to:18196793100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062748] [to:16628299752] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:43 ip-10-0-0-11 mdr: 2016-02-01 11:22:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:18124806963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507197] [to:18033892780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387130] [to:16612017520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434535408] [to:+12132955003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672959093] [to:+14199649092] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023188808] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503002664] [to:14154245629] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869059] [to:15705990263] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737521648] [to:+13126142291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17639134213] [to:+16124448067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708824527] [to:+19174094422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023128882] [to:+14158907294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960578] [to:18133894419] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324517] [to:14437867100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603663163] [to:+12604071502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126147462] [to:+14242836557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182181220] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913530] [to:18195780622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022710] [to:17095973667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015093] [to:15813194370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015760] [to:14042633606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500030F0201] -Feb 1 11:22:46 ip-10-0-64-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175007950] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-21 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022922833] [to:+19027056335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183064055] [to:+16233839292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0202] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524129358] [to:+18133243611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234578647] [to:+13475807008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703997080] [to:+16784348711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272660137] [to:+18459997524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404771143] [to:+14403594028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038951122] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138477925] [to:+18133081918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366076] [to:16053703824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141474] [to:18198561126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835787] [to:18083640942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434786476] [to:+16466691385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993075] [to:19543760646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168823138] [to:+15304882693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:16785485957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162923304] [to:+19174094376] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-21 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18189614463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-20 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-20 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488785] [to:13144790948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-10 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022102294] [to:+15169269426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053086923] [to:+13053400384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775078] [to:17152166411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-20 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706050548] [to:+19725977208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-21 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403199466] [to:+14437203744] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474872] [to:15205604693] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:13523184152] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154087] [to:+16466289654] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763817] [to:+12678444714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526555] [to:18102883503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835066] [to:18433374014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:14797996551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:18566938930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312591972] [to:+19018426151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305244790] [to:+14582025806] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:15136587192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218957] [to:15702059736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794385] [to:17738779058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-20 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988321] [to:19142572130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046767696] [to:+17274938802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852108127] [to:+14424446851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357813] [to:12028477811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604282455] [to:+18609710162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068590] [to:12252666007] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346647453] [to:+13476764348] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-10 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12194337971] [to:+12135760721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846915] [to:18439927185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927016] [to:19134816830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158262] [to:18036532916] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-20 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083604] [to:18433682994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049366691] [to:+12133550836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135315898] [to:+19789697891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-21 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037817] [to:14172088939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:14128186366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732712] [to:13017527310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158828259] [to:+12404077446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607756338] [to:+12536423739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038238019] [to:+14242797855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072445056] [to:+13473799301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412862745] [to:+19172659293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434535408] [to:+12132955003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655412167] [to:+12604070963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026327408] [to:+13024002648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043088948] [to:+19802092115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192382467] [to:+16139099093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904741] [to:+19122008026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147794972] [to:+14388078689] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017423] [to:17574695529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063664463] [to:+14706733387] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232386064] [to:+16025527219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016908889] [to:+12815957398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572462802] [to:+17185041049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235718591] [to:+16784338996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044012691] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338458] [to:12257180290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-21 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144401703] [to:+16149965651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-20 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212431660] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158475538] [to:+16519275894] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086789] [to:16088510175] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12104887858] [to:+17133896440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508486070] [to:+14502327788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-10 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097437519] [to:+15817009537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893903397] [to:+19894550913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-21 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447999815339] [to:+447451249745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-21 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-21 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041878] [to:12529330858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735562457] [to:+14695527921] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654656898] [to:+17016454239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852206211] [to:+12139359789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672968619] [to:+17277568399] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147794972] [to:+14388078689] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066501452] [to:+14064043494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043719] [to:19072037485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016303063] [to:+17015872415] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203490804] [to:+14155620927] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-20 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478376] [to:12522033109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362014822] [to:+19365878311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184174118] [to:15184860409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12044065368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-21 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509007443] [to:12502080477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-11 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854920077] [to:+12134547190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660335] [to:15742974623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370999] [to:18673357831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903062] [to:18598018161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697515743] [to:16197842612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504451217] [to:+14086183927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219352] [to:17042888813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032496966] [to:+17036466155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201155] [to:14788327463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122215172] [to:+14242866714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501379] [to:17062979058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627231] [to:12254289392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:12286716461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:17142665583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186171902] [to:+14693019420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-10 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179192220] [to:+13478082069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-10 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308036240] [to:+16304892242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417963] [to:12266220285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-10 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868286] [to:19712258236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:02 ip-10-0-0-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18032889009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-0-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-0-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389298239] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-11 mdr: 2016-02-01 11:23:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-11 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-21 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-21 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-11 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-11 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-10 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-11 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085156338] [to:+14243361611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003210201] -Feb 1 11:23:04 ip-10-0-0-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-10 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523826] [to:15124967749] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-10 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163527308] [to:+12167776639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-10 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605065890] [to:+13069938256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024723477] [to:+17027182720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079491613] [to:+14072163514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104802646] [to:+15104474204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625827940] [to:+19292201346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-21 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16694009950] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022710] [to:17092771470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282003733] [to:+17063810650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:17142665583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149379] [to:18069309311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085156338] [to:+14243361611] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003210202] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704689615] [to:+18285486347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695695718] [to:+12692207289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012888] [to:18626681884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178833599] [to:+18722258246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183064055] [to:+16233839292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783052205] [to:+13477869924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053086923] [to:+13053400384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133614539] [to:+18133204046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320121] [to:12079999485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139523939] [to:+18133083091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372556990] [to:+15047027440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753384634] [to:+17754993544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045661168] [to:+16784333171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439911174] [to:+15104474520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314003432] [to:+13479191031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632343] [to:18572440018] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023873163] [to:+13025958714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192793415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-21 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707091754] [to:+12137978118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059064882] [to:+12898042204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-20 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627143] [to:+447747104276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-21 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-21 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218022] [to:+447719782529] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373010829] [to:+17747730806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293716] [to:18503043209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086866] [to:18132848791] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:17038951122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069790] [to:13093978450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:13132122692] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-20 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243611] [to:12524129358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-10 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138500338] [to:+16137024772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088425073] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-21 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520626713] [to:+447925922759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138500338] [to:+16137024772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16302046146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479383099] [to:+17547774099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-20 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138500338] [to:+16137024772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193152] [to:18149529924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079749402] [to:+13366452269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16129305567] [to:16122557571] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695695718] [to:+12692207289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872415] [to:17016303063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134102205] [to:+18134302964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146637076] [to:+15146136639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307748528] [to:+15128987218] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266855] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:14417031095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19417866376] [to:+12312663055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-10 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767799300] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824601] [to:15852106795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-20 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-20 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043130914] [to:+14843504877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-10 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903477] [to:14383456681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-10 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:15165473909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-10 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-10 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-10 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903477] [to:14383456681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-21 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451242024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437712804] [to:+14433801834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:17138352743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335477] [to:18032204055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335477] [to:18032204055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158066150] [to:+17167480951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293640830] [to:+15084168581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482859256] [to:+19142286017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-20 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163443158] [to:+14242769833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657261] [to:12543928010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063664463] [to:+14706733387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307748528] [to:+15128987218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:13023676045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504055550] [to:+13053400809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162103660] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19545982654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915182] [to:16474442635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003220202] -Feb 1 11:23:17 ip-10-0-64-10 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003220201] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345911] [to:14235610608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205152] [to:+15308631730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125582632] [to:+17249938983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250317] [to:19123398715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523615837] [to:+14072161130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-10 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029719586] [to:+17026747214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198561126] [to:+18194141474] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:17044497875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233416095] [to:+14243360886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473361] [to:18656615351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:12143037349] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877730994] [to:+16477999351] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796866] [to:17406446840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845756178] [to:+14158537082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:18083729310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173310077] [to:+18572190969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096329933] [to:+16475568820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012976181] [to:+17206231704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938803] [to:19025530322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-11 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205797] [to:13197994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304361] [to:17542643208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502438489] [to:+15102548412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357813] [to:12028477811] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195750760] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254487516] [to:+12135874835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-20 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-20 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296253] [to:12255884923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033613538] [to:+14696725939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415905648] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176750930] [to:+14696087912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025331] [to:12402165875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:18003043107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435405800] [to:+18134301670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-21 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634572] [to:18178218868] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438133708] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144790948] [to:+13145488785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342968032] [to:+14158253526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315758469] [to:+19312577724] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-10 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474204] [to:15104802646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-21 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358877] [to:18282003014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122298713] [to:+14582015428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183849215] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502649236] [to:+18503293319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437095785] [to:+16785868280] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12068613508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787033943] [to:+13123009845] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142777] [to:50246901215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624736943] [to:14257500379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142777] [to:50246901215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:19282251397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:14045873298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040521] [to:15067214345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085992911] [to:+12087574730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075598] [to:19374758801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644046665] [to:+18649995457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250317] [to:19123398715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977340] [to:15707626902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12813066518] [to:12402106471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963055] [to:18594891731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168700] [to:17742733010] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168700] [to:17742733010] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168700] [to:17742733010] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-21 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447084323] [to:+447418330634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315889664] [to:+19725346665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607909543] [to:13237125472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302964] [to:18134102205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024062763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-10 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15133490825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-11 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406340517] [to:+18046243520] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-11 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132122692] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-20 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332648] [to:+447748531336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:18597602036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179704275] [to:+16172132273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-20 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16287776660] [to:+14153407617] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798806] [to:19047785159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-20 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174905120] [to:+13479069281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-21 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Lowell] [to:+447418335712] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062979058] [to:+17063501379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153004327] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734251] [to:17703162755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285364434] [to:+17073008920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173530671] [to:+13476675850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146611559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897798019] [to:16476863917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:13023676045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041844] [to:12048807903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466155] [to:17032496966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-21 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477779955] [to:+14242846560] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076232] [to:14782519599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:16614925244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158536084] [to:+12627774900] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927016] [to:17572359854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:15053998375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185962173] [to:+13867423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+14388042745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-20 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447720145514] [to:+447418324969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532301058] [to:+17813129425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063664463] [to:+14706733387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17404579907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483792] [to:15059851976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147962954] [to:+14388077253] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788305860] [to:+16784345881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147109099] [to:+14388040878] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702059736] [to:+13479218957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474442635] [to:+16474915182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797996551] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550884] [to:14434163265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:13473619183] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062838922] [to:+12132956167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14424446851] [to:19852108127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014816373] [to:+12405732003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404072380] [to:+17408797442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045001979] [to:+15103137169] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527916] [to:15175541328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047260227] [to:+13017786559] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425404] [to:12704042589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12526716084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-20 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447720853614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16477629595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-20 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447720853614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437712804] [to:+14433801834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:15057163539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358877] [to:18282003014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13208184030] [to:+15308631885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069552] [to:13093716438] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530366] [to:14108006608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193074795] [to:+14197459616] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167063045] [to:+16162755371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753041835] [to:+17027475713] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753041835] [to:+17027475713] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915182] [to:16474442635] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203345] [to:18134546713] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869182] [to:16104053563] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639414] [to:13053437429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614463] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910002] [to:14168549807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014803342] [to:+19785663233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358877] [to:18282003014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403055049] [to:+12408924609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167853296] [to:+19142796014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-21 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447828999265] [to:+447418323585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055307626] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213158] [to:12516439103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818665] [to:17705302750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503002664] [to:18317896508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:18043475802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577233] [to:19312614143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042288952] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615864353] [to:+16615334066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497725] [to:15639208038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400570301] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479060494] [to:+18724003482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479060494] [to:+18724003482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373225803] [to:+13373479327] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080400570302] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466155] [to:17032496966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404700544] [to:+13479568411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-10 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601540] [to:14035895280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005901] [to:13309744465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17049126179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-21 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:39 ip-10-0-0-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215933] [to:17604988489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667907] [to:12193314012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667907] [to:12193314012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-0-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-0-10 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080400570303] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708550913] [to:+12139212236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080477B80301] -Feb 1 11:23:39 ip-10-0-0-11 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-11 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238874728] [to:+14242846032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009335] [to:19028402398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-20 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-10 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708550913] [to:+12139212236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080477B80302] -Feb 1 11:23:40 ip-10-0-64-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16477629595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487869] [to:13372551806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326843] [to:18174495406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:16159813496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12405478485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708550913] [to:+12139212236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080477B80303] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387130] [to:16612017520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146991347] [to:+14132736989] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094087] [to:19106356864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:15196949787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218495] [to:18626007506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455935] [to:19169559010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963836] [to:16472283356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18143892205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093690348] [to:+17726177899] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+15874003560] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069281] [to:13174905120] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-20 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451242024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:13058962194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480570] [to:13175085372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077333792] [to:+13219990185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142943632] [to:17142900757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065304362] [to:+15068036043] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165473909] [to:+12018985921] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:14782991220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063095870] [to:+15168285533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-21 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333002] [to:+447933101077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335113] [to:16194368549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361907] [to:13046503944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273889396] [to:+13203073271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361907] [to:13046503944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143469031] [to:+13475187690] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021182] [to:14233335725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163238226] [to:+13477973007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:18705147031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807631] [to:17048845646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968672] [to:19313970174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15187051275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12243109094] [to:+19027031618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14194965595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14806664432] [to:16603650929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18475218629] [to:+17203586378] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877730994] [to:+16477999351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063700775] [to:+15204337461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134102205] [to:+18134302964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877730994] [to:+16477999351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039867791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742646475] [to:+17027184416] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041844] [to:12048807903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042247774] [to:+16475569466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437095785] [to:+16785868280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18143892205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916193] [to:16476970077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18608567986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238395128] [to:+18572645643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473623926] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16477629595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334560] [to:18184297257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448992] [to:18702537405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448992] [to:18702537405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807996368] [to:+16025528762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640906] [to:13142778295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16088510175] [to:+18133086789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787564] [to:18049826038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377526] [to:12513593890] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16034796330] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062991298] [to:+19802095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178277094] [to:+12017012782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602467558] [to:+12604070838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251099] [to:14434001180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047785159] [to:+19142798806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-20 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066098864] [to:+15068041540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797996551] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025410220] [to:+19027056079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096992574] [to:+16465688833] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678440672] [to:+12676076596] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656033457] [to:+12604076993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786559] [to:17047260227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048229078] [to:+16785868047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+15146007434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787692039] [to:+17605896678] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-10 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736399] [to:14135196803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-10 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196108784] [to:+14197316072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968672] [to:19313970174] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14018590198] [to:+13108814082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505663084] [to:+13478084645] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477930283] [to:+16474947515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335113] [to:16194368549] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-21 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526820] [to:18326689829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:4915735989559] [to:17815216835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:12196082233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804359] [to:15404627872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505663084] [to:+13478084645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804359] [to:15404627872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-11 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-11 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534395] [to:15627818388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968176] [to:19316383671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094087] [to:19106356864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505663084] [to:+13478084645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289229] [to:12538448613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074408] [to:19174172178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158533811] [to:19375411521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057793728] [to:+15103278225] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439954250] [to:+15152032744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285364434] [to:+17073008920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376596] [to:13369958565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106248439] [to:+13477360649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124125084] [to:+15129523368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14147929988] [to:+12344017143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409209976] [to:+14434530671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12696354186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019286259] [to:+13219269288] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045071495] [to:+13476675694] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405179468] [to:+17408798082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266002786] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-20 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609736] [to:+447796447079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030023] [to:15062336981] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720558] [to:19126753949] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17043084900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705990263] [to:+14849869059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682717] [to:18658011766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137235940] [to:13138292191] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135058494] [to:+18133244239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-21 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451242024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053252177] [to:+12262411710] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034062404] [to:+18038519240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506392621] [to:14508075741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995109] [to:18592420748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037188316] [to:+13475186154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135312390] [to:+18133206253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247693252] [to:+18453647883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E20201] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E20202] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999485] [to:+19177320121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138999664] [to:+16474951853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027056285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606475303] [to:+19402222095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303926859] [to:+13478967679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202203025] [to:+15865747722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14254357380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502424] [to:13364011278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958854] [to:15017728177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465466226] [to:+19174094138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604338991] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413523] [to:17577383725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805366] [to:18102471927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472496796] [to:+14153408008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476383936] [to:+16474951499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18687390767] [to:+13475186675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320379] [to:13154180129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032496966] [to:+17036466155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003010201] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272907582] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010202] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265040978] [to:+12262412001] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147365] [to:15757406453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532245910] [to:+12533137976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134712] [to:+16475569464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076085331] [to:+13479191924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024911040] [to:+19142812754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138443] [to:19199395753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14127134862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192037977] [to:+17279986024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568411] [to:15404700544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477930283] [to:+16474947515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182014557] [to:+13475808460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-11 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168823138] [to:+15304882693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855077528] [to:+15304882930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-10 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778404] [to:16155937846] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-11 mdr: 2016-02-01 11:24:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798806] [to:19047785159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092115] [to:17043088948] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051916] [to:13138542447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774900] [to:19204109777] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18687390767] [to:+13475186675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375536] [to:12483438907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15147095426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074408] [to:19174172178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405259726] [to:+14242863387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868670] [to:17049644417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041844] [to:12102545138] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:16472338566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501379] [to:17062979058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:17405050577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203737882] [to:19102828326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-10 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065705339] [to:+13479805404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312614143] [to:+19312577233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-21 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-11 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003FA0301] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669450] [to:15854696598] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:12628758011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348177227132] [to:+15107799372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D30201] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062277738] [to:+15068027084] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618116] [to:19105542832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-21 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242565] [to:18043385565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-21 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18564349610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-20 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0201] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12048696571] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890302] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473137662] [to:+18583605309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807996368] [to:+16025528762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403402] [to:18604360560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621728] [to:19102748949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285510261] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424406] [to:+18107727531] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132192790] [to:+14132715766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021620] [to:19025371991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292768873] [to:+13474863818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-20 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0202] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088425073] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129232173] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817867] [to:18144311857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052180670] [to:+13479190111] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136585782] [to:+12138613539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003FA0302] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875163586] [to:+14146005726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17197663181] [to:+17206232348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922452] [to:14383999202] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433292693] [to:+16466691385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502327788] [to:14508486070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139523939] [to:+18133083091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:14797996551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003620202] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003890303] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003620201] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17638529142] [to:17634126567] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073637] [to:18196090156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825522610] [to:+14692055520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324237085] [to:+16109105929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202172392] [to:+12626482027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149725020] [to:+19179797514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-10 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-10 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-21 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-10 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272907582] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-10 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122557571] [to:+16129305567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122557571] [to:+16129305567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-10 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-10 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196370716] [to:+19199163371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12195150962] [to:+14074424112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086961] [to:16066573598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014058044] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916182] [to:15196397146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618353] [to:17155811526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597875] [to:17808845956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743556] [to:13173611016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258246] [to:12178833599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-10 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324237085] [to:+16109105929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-11 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472367463] [to:+16477999375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-10 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309638] [to:15736295837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-10 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227405] [to:18033871134] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-20 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447717782862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062072350] [to:+18597777060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-11 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049444188] [to:+14049004290] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12532485837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237424754] [to:+13108792193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149337292] [to:+16466998945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618353] [to:17155811526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232606] [to:15593050030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577233] [to:19312614143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072808441] [to:+14072681387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048441763] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205888] [to:+19166374155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147934] [to:18143926470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086789] [to:16088510175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064789961] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309744465] [to:+18724005901] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024820195] [to:+17027476167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-21 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673971] [to:+447771525046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592420748] [to:+14157995109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375153701] [to:+17279165707] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141474] [to:18198561126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043906] [to:15146125780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-20 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447747104276] [to:+447520627143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030023] [to:15062336981] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314609319] [to:+14158530629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629851] [to:17062380868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-10 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314609319] [to:+14158530629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032155434] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18035052387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:13232385710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-21 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447923242361] [to:+447451218466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-20 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158257] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774900] [to:17158536084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103618197] [to:+15103137377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316383671] [to:+19318968176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-11 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153989359] [to:+13475807101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265040409] [to:+12267901978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048977631] [to:18049267028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17725014177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162027440] [to:+13302370644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18564349610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792969] [to:17164891979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075087798] [to:+14073372472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407408] [to:17038816787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-11 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059396] [to:+16465037212] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-10 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588335] [to:14407895778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024231161] [to:+13024000176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-20 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217199] [to:+447701324703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571976] [to:15052056012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735761] [to:17608859123] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054271160] [to:+17053021633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-21 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447908171723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320379] [to:13154019452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273183057] [to:+18133081938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337215] [to:13182908946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102804803] [to:+19199162830] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017660] [to:+12262409981] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176009694] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:17038951122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205888] [to:+19166374155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389983448] [to:+14388079726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347079066] [to:+17605433526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12048696571] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038182692] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569108] [to:15089584440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-20 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054927286] [to:+18506313027] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996120] [to:16185400450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035229] [to:18197122328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-11 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:17655433515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624736982] [to:15623825774] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479471092] [to:13474445610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277837] [to:14036125557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588335] [to:14407895778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696898782] [to:+12602755221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988998] [to:18042522727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916193] [to:16476970077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548290467] [to:+17542220130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064789961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294294679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474888228] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995957] [to:18648280377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219075] [to:12292371128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19374697114] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12628948179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:16033726453] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179534556] [to:+15103226601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982255] [to:12263483172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405904887] [to:+19715126587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:16033726453] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747437] [to:16013572876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342356260] [to:+13479806251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793169144] [to:+15103227863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026820] [to:17783875776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097284240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691647] [to:19392421991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-20 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Lowell] [to:+447418335712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16085165132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13123950097] [to:+13202975207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786965] [to:16462461671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644046665] [to:+18649995457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793259217] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19252340624] [to:+19259574208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592420748] [to:+14157995109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205888] [to:+19166374155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016686131] [to:+12017658724] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146120280] [to:+16139098399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557738] [to:19522887251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059670818] [to:+12392190098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138542447] [to:+15617051916] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BB0201] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598051607] [to:+17073007641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:17248826557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-11 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BB0202] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746755] [to:13137287672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297260313] [to:+13217309641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320121] [to:12079999485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408160461] [to:+13479194770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024894898] [to:+12404077275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12507318176] [to:+17786549440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703162755] [to:+14706734251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369940] [to:12533026790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248555] [to:14029220020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14257800668] [to:+17037479571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839037] [to:17146976555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602261302] [to:+12604076568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-20 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435933168] [to:+12136348747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178802674] [to:+19142815611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D40201] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408136795] [to:+14402528360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17176881128] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201409] [to:14437357957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D90301] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023061] [to:12065999739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168325103] [to:+15146007849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12183707933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17176881128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12094221934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-20 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-20 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447794092992] [to:+447451242884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17176881128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207995] [to:15704727670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12066419746] [to:+12538787378] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092523363] [to:+12138225277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067812198] [to:+14693847154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D90302] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587436] [to:19042546204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17175047309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-20 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214340] [to:+447564143380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D90303] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158594819] [to:12525324089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312614143] [to:+19312577233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167057745] [to:+19163477063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435933168] [to:+12136348747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523606717] [to:+15406286292] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19204613635] [to:+17018006836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808210088] [to:+15873158148] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-21 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520671851] [to:+447455205160] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299773] [to:14437423284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415905648] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155462265] [to:+14693737910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086511046] [to:+12086252927] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204427887] [to:+14157878342] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025175135] [to:+19543142202] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503019610] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314082805] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182085399] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15133841582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242746955] [to:+16474914917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485837] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-20 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102244370] [to:+16466320784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405259726] [to:+14242863387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842064969] [to:+17866079571] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-11 mdr: 2016-02-01 11:24:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501697] [to:15122298492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19894171030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-21 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731927] [to:17064216187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018679] [to:15068981284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024882] [to:16133160245] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000155] [to:13479877458] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13174965420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733218190] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731285] [to:12074005748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032012460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035895280] [to:+12894601540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315330] [to:15862654613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393053] [to:14406675674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824775] [to:19082026499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129992159] [to:+19792326159] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165632414] [to:+17162882015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105542832] [to:+17723618116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063330213] [to:+15068038864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383965804] [to:+14387923040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875088270] [to:+13476504429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165632414] [to:+17162882015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-21 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197760062] [to:15673765408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319727716] [to:+16316141355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15857430874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032012460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177492941] [to:+13219265459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15188440760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-20 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447825036643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703177088] [to:+15028041581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308633] [to:+13065004481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164581616] [to:+12262411727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038F0202] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038F0201] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:17022088545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13863165180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-21 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675493] [to:13189555722] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032285] [to:17249314792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13306222513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792969] [to:17163979324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047744681] [to:+15103225987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784209489] [to:+16172139941] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109993524] [to:+13866018191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232046844] [to:+16236664906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-20 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681387] [to:14072808441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-20 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447913467969] [to:+447451211261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865881077] [to:+15865748892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314082805] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143348690] [to:+19142062698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:17852801276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13189470961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12199027329] [to:+19172720325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143348690] [to:+19142062698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159917807] [to:+13479138929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076596] [to:12678440672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523368] [to:15124125084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15737243667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955523] [to:19855138923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415198703] [to:+19715127797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192910110] [to:+12262417963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-11 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142816572] [to:12023784672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607605] [to:13095307036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095876] [to:14384044133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145121095] [to:+17185043734] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695083467] [to:+14693008671] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178277094] [to:+12017012782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452741] [to:13368379658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14355139348] [to:+14842842572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416615583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428165] [to:19044709077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023844810] [to:+13476675702] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314082805] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194965595] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695083467] [to:+14693008671] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067812198] [to:+14693847154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665916] [to:14048896314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18035052387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502327788] [to:14508486070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197222345] [to:+14197316144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163371] [to:19196370716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231348] [to:13174388978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067660461] [to:+14706731039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14238874728] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805531] [to:18108588125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805531] [to:18108588125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175427632] [to:+19703158788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232348] [to:17197663181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-21 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175427632] [to:+19703158788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383999202] [to:+14387922452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034407255] [to:+13477982592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364089] [to:15136578352] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021582] [to:18653562915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136585782] [to:+12138613539] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263782986] [to:+12264570433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024395314] [to:13026025806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501895] [to:18327989706] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472337547] [to:+14049004231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176696968] [to:+17348214645] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852106795] [to:+15852824601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238395128] [to:+18572645643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18609519186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163065044] [to:+17185044580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545152062] [to:+19546412951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691647] [to:19392421991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015012] [to:12407043047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154733075] [to:+19018430619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029072] [to:15066097812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083472216] [to:+18622278714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702221731] [to:+12134787824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672682] [to:12035439684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398104117] [to:+13477982137] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294294679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479715175] [to:+16476911297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074914855] [to:+17739433766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B80401] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372056332] [to:+14242838343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095039841] [to:+13214067166] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398104117] [to:+13477982137] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364174060] [to:18324018218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049644417] [to:+14242868670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087834] [to:12076590814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075087798] [to:+14073372472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347017] [to:16074239960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987859] [to:12254397348] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:12493582804] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16088510175] [to:+18133086789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874543491] [to:+19148608636] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064501706] [to:+15873321634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794847020] [to:+19798885078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703569033] [to:+13473797049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17029719586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557139] [to:19894924244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066573598] [to:+13475086961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147468961] [to:+15146007518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593607938] [to:+14157995262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006350] [to:17053807889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262032637] [to:+12262403373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555952] [to:15192164518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B80402] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046983856] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129409] [to:16109087591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136673760] [to:+14242839629] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18168007290] [to:18162164010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003890301] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283270012] [to:+18046244573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084698512] [to:+18572191163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003FA0303] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373225803] [to:+13373479327] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D40202] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058758308] [to:+16139092324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266626121] [to:+13478999292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405259726] [to:+14242863387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139523939] [to:+18133083091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364040] [to:+19786140690] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175007950] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198198612] [to:+12262410194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147263] [to:12406047772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176941751] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:17577682833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788076336] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122298492] [to:+18326501697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149553] [to:15046489759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13107505384] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147529815] [to:+19492453106] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095973667] [to:+17097022710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:19542582486] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147639648] [to:13142828948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342346] [to:17066016505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147529815] [to:+19492453106] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-20 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447971417048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049986694] [to:+12048173386] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-10 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B80403] -Feb 1 11:24:57 ip-10-0-0-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528708] [to:14406108409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045288068] [to:+18046242498] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:18705623958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16309150363] [to:+17089468612] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-10 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12532485837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027192539] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015737453] [to:+12405732118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17407518865] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17407518865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17407518865] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016970468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16179592307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034604531] [to:+17184169018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400770] [to:12152549986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-21 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146381599] [to:+14388075132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629135] [to:15084939294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-10 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-21 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447946329649] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-10 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-21 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-21 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447084323] [to:+447418330634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232608] [to:16198184348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023188808] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076618560] [to:+17162791384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-20 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309241] [to:15404356832] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086749441] [to:+18572191984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283695529] [to:+15174920750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982255] [to:12263483172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063197] [to:16463234213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134752864] [to:+18133087256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069626144] [to:+15068038877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15852014807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783279288] [to:+17278196578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276123417] [to:+17278578943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964121] [to:16146006429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784125863] [to:+15169260819] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954780] [to:17319248294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:12196082233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095534] [to:17328653279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329741] [to:13479685696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453617] [to:14438446989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434688447] [to:+18435345226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084860] [to:17405505225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877070628] [to:+15873322304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-10 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062336981] [to:+15068030023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13376521388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034749] [to:16782351836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824175] [to:15852842648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248555] [to:14029220020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570433] [to:15199024536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006350] [to:17053807889] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876088] [to:15138070031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077490] [to:12602245254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922452] [to:14383999202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391284] [to:16028003767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631978] [to:+14693537786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408600] [to:15615840086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B80404] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596477305] [to:+14158403768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155548078] [to:+17746138474] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263483172] [to:+12267982255] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074584268] [to:+15036478810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617206398] [to:+16614024336] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178038801] [to:+15172527673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594891269] [to:+14158535859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651693] [to:17788739564] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19099158665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-21 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944352121] [to:+447451202904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-20 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-21 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789951389] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202499789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202499789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102587933] [to:+12136324906] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19737562449] [to:12488084930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606390716] [to:+13477973751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001505] [to:17095719794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001505] [to:17095719794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028075] [to:19188125718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093803057] [to:+13475088589] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003110201] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421459] [to:13098573560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478700301] [to:+16095434838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309641] [to:12297260313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162103660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028705082] [to:+14503286526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:12369935860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421459] [to:13098573560] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110202] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232608] [to:16198184348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102939103] [to:+18108528415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296993] [to:12523404634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543910472] [to:+19545103885] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886866] [to:+15103228043] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104955232] [to:+13025958635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842793] [to:15709820862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124125084] [to:+15129523368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493475] [to:16788008365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097811481] [to:+18563182054] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-20 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447936996807] [to:+447451221289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436333468] [to:+12135878944] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986024] [to:14192037977] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746521] [to:17146055577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-21 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669615] [to:16017543027] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:15034969702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839629] [to:15136673760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389334498] [to:+15068029115] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523368] [to:15124125084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874059957] [to:15872984913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169018] [to:18034604531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:18503456073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504429] [to:17875088270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737178419] [to:+18326538191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783993389] [to:+19785334213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783340354] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736012] [to:12673449362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019191189] [to:+19084858905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392295077] [to:+12392190410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307768302] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667260] [to:17736584683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706661977] [to:+13479801746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846877549] [to:+19082809014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749039878] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16013012869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491107] [to:15303918118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085319] [to:19043836122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394775] [to:14803262128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528708] [to:14406108409] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748595] [to:16038565090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-11 mdr: 2016-02-01 11:25:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035175] [to:18329968224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173343740] [to:+19786919095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227526] [to:18282447622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193295071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569812] [to:16477219410] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175299] [to:17062663140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061800] [to:14024528513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570433] [to:12263782986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202962] [to:17272710067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163536686] [to:+16466998274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964121] [to:16146006429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179552459] [to:+13867428072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927091] [to:15149198162] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598277496] [to:+15592232334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15122886373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046396] [to:19022330148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142035723] [to:+13479378822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159884089] [to:+13219269862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087834] [to:18647043927] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122289078] [to:+18127777119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668074] [to:19375974182] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162306] [to:13214441613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004481] [to:13069308633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:14078609982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605753288] [to:+19172836964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:14124037591] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035714] [to:14128416419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842064941] [to:+15103137543] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188440760] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103943477] [to:+12105718477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655053197] [to:+14158909547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15738182357] [to:15736938544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13348641109] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607756338] [to:+12536423739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538494] [to:13076798165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707350210] [to:+19172594039] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038882718] [to:+15873270709] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-10 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062345670] [to:+17073007351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19032155434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043958] [to:14133167768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326159] [to:15129992159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12098096585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:12175973286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361835] [to:18014137872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-20 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138505] [to:16034408931] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419024] [to:14238382417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321634] [to:13064501706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278809] [to:16068752395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18132172768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077490] [to:12602245254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790942] [to:15709168576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425810] [to:13869837924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128740435] [to:+13479190549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048988507] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169976719] [to:+17279986794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360175] [to:15092022819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577233] [to:19312614143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403096979] [to:+13478684571] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374590110] [to:+12132950998] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602467558] [to:+12604070838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043896227] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136962797] [to:+12138027440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16176344399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703408939] [to:+14387940793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313371219] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974329] [to:18178995249] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959414] [to:14057639030] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096874195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045146642] [to:+12048172164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852227423] [to:14794450584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182733] [to:17752762175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312551] [to:15402870911] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-11 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552881] [to:14235065145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150361292674] [to:+13477147264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124125084] [to:+15129523368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016900248] [to:+18018500538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733597017] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668074] [to:19375974182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173611016] [to:+17604743556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035243242] [to:+19108888193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12042288952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201607] [to:19372188827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464923338] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-21 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323585] [to:+447828999265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508462532] [to:+12264550435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327668102] [to:+12262404836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:12404606889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:7:06080403110302] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239364] [to:16166101611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034749] [to:18122170787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342364] [to:14044682403] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892146] [to:17734196636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488388] [to:18658051830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080403110303] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153024707] [to:+13126145548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:18568993174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594458] [to:14403961243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202698] [to:12082494777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072466] [to:19842098930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072842] [to:19842323703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17272907582] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-10 mdr: 2016-02-01 11:25:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808381] [to:17749913004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18604021072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146214807] [to:+14387943006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:18503456084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178719020] [to:+19492453534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210043] [to:15593034298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133274642] [to:+16136047641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086789] [to:16088510175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:18329921282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053437429] [to:+19543639414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158536084] [to:+12627774900] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138929] [to:15159917807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-10 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-10 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:14424001922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-10 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-21 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447577995319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001173] [to:19192734118] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-11 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-10 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-10 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066097812] [to:+15068029072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653562915] [to:+13478021582] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227405] [to:18034908147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327668102] [to:+12262404836] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755441] [to:12695891798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034969947] [to:+15034868481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487029000] [to:+15744850589] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408139] [to:13522089707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136714173] [to:+14357764699] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19795878128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195590473] [to:+17142612392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731285] [to:12074005748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274922412] [to:+17279165348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014270920] [to:+18018903371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-20 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098684822] [to:+18724003525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797514] [to:16149725020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010401] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526196095] [to:+17636849353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-10 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16019427561] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043088948] [to:+19802092115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515394] [to:14438041322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247963] [to:13133923613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505310159] [to:+15817005248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15086237079] [to:18573345575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064958790] [to:+17199990189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813464] [to:14439794936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014270920] [to:+18018903371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159623444] [to:+16158431574] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726768996] [to:+14108342931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403913422] [to:+14403594879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003010402] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617206398] [to:+16614024336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327740] [to:19152135955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374676489] [to:+13477149369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985901] [to:+12048135508] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026982] [to:14245313843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128449932] [to:+19122084463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334560] [to:16614663590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058747273] [to:+18053017010] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797991] [to:13305568361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649394] [to:14195778005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058747273] [to:+18053017010] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:15623201193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:16139033382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192398175] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307702182] [to:+14406588579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730570] [to:14026714248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282003014] [to:+15103358877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-10 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-10 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415764717] [to:+13479372787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-10 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023625751] [to:+13025957881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004617] [to:13346722839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383965804] [to:+14387923040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-10 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661254] [to:+12065195896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277837] [to:14036125557] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010403] -Feb 1 11:25:37 ip-10-0-0-20 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415190327] [to:+447451230763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086557805] [to:+16025527907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181501] [to:17023730882] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566519896] [to:+17605897279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14247576988] [to:19183126890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479685696] [to:+19177329741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146478361] [to:+14387925702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133896440] [to:12104887858] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788008365] [to:+19365493475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019309336] [to:+14064043785] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821741] [to:15857752325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821741] [to:15857752325] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802358824] [to:+18678880184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479943627] [to:+16474989552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014137872] [to:+13477361835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190549] [to:14128740435] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327668102] [to:+12262404836] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003010404] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147778614] [to:+15146006812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308633] [to:+13065004481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058902876] [to:+17053026964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277837] [to:14036125557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852816] [to:13023844780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086292] [to:16159434426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639414] [to:13053437429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-20 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447771525046] [to:+447520673971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:14424001922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400770] [to:12677668333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187767342] [to:+19177730322] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878599] [to:15174498430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391284] [to:16027269316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051916] [to:13138542447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045531326] [to:+14704446227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726768996] [to:+14108342931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203762] [to:14108425644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364683] [to:+18583146403] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144131] [to:16097844979] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023581148] [to:+17029016517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045247205] [to:+18572327015] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608293] [to:17605836239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637752] [to:16823070221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-10 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730570] [to:14026714248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-10 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154733075] [to:+19018430619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-10 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-10 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196513119] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528708] [to:14405221506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608293] [to:17605836239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808495227] [to:+19172750149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149369] [to:19374676489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927757] [to:19375947901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361389] [to:18438581684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096443038] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-10 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227347] [to:17737087823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-20 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330519] [to:+447522285397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022499152] [to:+13474916697] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-21 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862654613] [to:+15863315330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896961598] [to:+12262418558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265959] [to:+14706734306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-21 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159813496] [to:+16158431585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-20 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198719980] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184106072] [to:+12182032105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152619045] [to:+13477981957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022181514] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:15086390020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136266] [to:12296696108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886939] [to:+18572327529] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056880751] [to:+18638555698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070838] [to:12602467558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777119] [to:18122289078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243870886] [to:12246340065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682734] [to:12702852192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163979324] [to:+17162792969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545152062] [to:+19546412951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348781] [to:16782548582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747041] [to:18166738476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-10 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377683] [to:18122398795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13217455781] [to:+18324103005] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433766] [to:15074914855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-10 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309624125] [to:+13305779603] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703408939] [to:+14387940793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476970077] [to:+16474916193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623201193] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E30201] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035175] [to:18329968224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958635] [to:19104955232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128824] [to:15415768320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050052] [to:14034774166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199132] [to:17049136120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158190902] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156557] [to:14805861931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302016656] [to:+12134785501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-20 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488388] [to:18658051830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15052408752] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-21 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447701324703] [to:+447451217199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-21 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273206087] [to:+18133207563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802358824] [to:+18678880184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139174187] [to:+19142815872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-11 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-11 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-20 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209445] [to:+447929125077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918976] [to:16048189815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-10 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+17036628823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128822789] [to:+17037750896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163191708] [to:+16475567571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139125927] [to:16132813486] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049817859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177572] [to:17729401041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625451] [to:12105699887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894230948] [to:+12894601290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-11 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060712] [to:14703839517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262801520] [to:+12267794308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16627926378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476670361] [to:14406226173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743556] [to:13173611016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439794303] [to:+16673083425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19056174393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079456] [to:13369531159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067078] [to:19147032221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898701] [to:17314337191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975489] [to:14806969258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199969222] [to:+19199162972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985901] [to:+12048135508] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730784] [to:17065183131] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022148041] [to:+14156308745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062072350] [to:+18597777060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405883691] [to:+17408798705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473045379] [to:+18582401961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096874195] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095408286] [to:+15092622398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022108020] [to:+19027046378] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152135955] [to:+14695327740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076558602] [to:+14072160947] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15873368555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E30202] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177418522] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375974182] [to:+19172668074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063624303] [to:+16474983458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329921282] [to:+14156492369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477219410] [to:+16475569812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892801555] [to:+19895334075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:12403906094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196108784] [to:+14197316072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659355855] [to:+12312663155] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-21 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232426] [to:12673447183] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749983] [to:14342035363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496047] [to:18647642137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888010] [to:19102294711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045803672] [to:+14703335667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248826557] [to:+17723618329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128740435] [to:+13479190549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080403110301] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352256] [to:+15714412083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572104001] [to:+15085569103] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456618200] [to:+18453632542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292371128] [to:+12139219075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023803428] [to:+19282855374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036148689] [to:+15873285583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034488235] [to:+16822139303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187287556] [to:+15817003345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475498377] [to:+16465641184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364939] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685787] [to:14234261389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206463] [to:+12262411243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491107] [to:15303918118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030939] [to:17403819169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026982] [to:14805215334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232960] [to:14034631006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188440760] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374676489] [to:+13477149369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626123406] [to:18595831855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-11 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003360201] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614925244] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372447989] [to:+16465136509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19056301788] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150495356788] [to:+16413165262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202698] [to:12082494777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715897111] [to:+15714454127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:14424001922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792280666] [to:+12134017374] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067263935] [to:+14703335132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-10 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-21 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044379987] [to:+14242866870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809173] [to:18607709594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-21 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-10 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252220] [to:2348023527828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862147741] [to:+17097000621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003360202] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573728589] [to:+13479379375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-10 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106279574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008028] [to:14165772935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842572] [to:14355139348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023730882] [to:+17027181501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788678200] [to:19788822189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142902043] [to:+16158433104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:14043968656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-10 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-11 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:14154817584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-21 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629776] [to:+447583011968] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-11 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-11 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-11 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045946178] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-11 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131354] [to:14129327924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-11 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17178873473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12183707933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308088085] [to:13186769014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409610132] [to:+15614915598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542538846] [to:+19543236887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362101996] [to:+13369382752] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062511668] [to:+14706734291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192380921] [to:+18572645656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044497875] [to:+12138733770] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975207] [to:13123950097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:19024123413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-10 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133896440] [to:19158010900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:12055698936] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966751] [to:17703303381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-10 mdr: 2016-02-01 11:26:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-10 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381448] [to:18765079663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-10 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128740435] [to:+13479190549] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-10 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254289392] [to:+17189627231] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-10 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093431028] [to:19512038667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-21 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062182747] [to:+14692175268] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146478361] [to:+14387925702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163191708] [to:+16475567571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473533547] [to:+13475185492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186001663] [to:+16125024161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184468793] [to:+12139213101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AA0201] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147109099] [to:+14388040878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-11 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-21 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331220] [to:+447851843577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-11 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123958] [to:1919846247366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-20 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:15852850590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:17169367983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:12897074820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-21 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451207710] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348781] [to:16782548582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13168544978] [to:16202003637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244676] [to:18047291917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991128] [to:13029324018] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334844] [to:17067511298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017881388] [to:+14158538485] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127397] [to:18143898575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863165180] [to:+13866013668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063433606] [to:+15068036463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-20 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18642140450] [to:18645402681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19052206285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658051830] [to:+15862488388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-20 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217199] [to:+447701324703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797959] [to:12393008828] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-10 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097349474] [to:+19093615674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672499426] [to:+18572329062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016970468] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122810395] [to:+14242836557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439747072] [to:+12139218741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004486] [to:14167214482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083614153] [to:+16198245546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062698] [to:19143348690] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139352647] [to:18597795816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946301] [to:19048661915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14068689661] [to:+13476067010] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353329] [to:18438557015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AA0202] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450941] [to:13369187519] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731927] [to:17064216187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18134120589] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-11 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103243882] [to:+12109986452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13309078602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027193340] [to:+14153260948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12032434660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303736375] [to:+17733032887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042418944] [to:+13126310741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812885] [to:15516893239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525670288] [to:+14242797608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278088524] [to:+13052038590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-20 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786997] [to:12409387381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19736684073] [to:14124254237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:13055875611] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387773794] [to:+15146137083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165348] [to:17274922412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:18643634915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127558969] [to:+13478682003] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195778005] [to:+14199649394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179704275] [to:+16172132273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015967905] [to:+15207278072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375771] [to:14172143047] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375771] [to:14172143047] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375771] [to:14172143047] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-21 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-21 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022555] [to:+15612408911] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050302] [to:19362404636] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792969] [to:17163979324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543933194] [to:+19543142739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398348328] [to:+17864801703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:17248826557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197885742] [to:+12262403379] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029674] [to:15064616836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024820195] [to:+17027476167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650357] [to:14126390620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391284] [to:16023692359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-10 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055312682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-10 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316942426] [to:+12709849031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-20 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154397] [to:+17187479649] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449954] [to:19016145613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614663590] [to:+16615334560] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039867791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862636] [to:+19783649547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329741] [to:13479685696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:13475123611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096874195] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173895833] [to:+14243363147] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:17705984984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409387381] [to:+13017786997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012391] [to:14186852886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488388] [to:18658051830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-21 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-10 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626007506] [to:+18102218495] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132102] [to:16033188478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088610] [to:18132206950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-10 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-10 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-10 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863387] [to:17405259726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13213394715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369862240] [to:+13366450732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:19726842913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025270001] [to:+17029565719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850521] [to:13172080859] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203193291] [to:+12627776824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082494777] [to:+12086202698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850521] [to:13172080859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524545096] [to:+16513337048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597875] [to:17808845956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819169] [to:+17248030939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672419786] [to:+12679525626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029072] [to:15066097812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13863165180] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022185097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298006007] [to:16307507849] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613316872] [to:+14158403190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155303741] [to:+12672732627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272652283] [to:+14072161951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364997] [to:+19142795307] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025270001] [to:+17029565719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786592] [to:12408764439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133841582] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-20 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609895457] [to:+12139352847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035175] [to:18329968224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542780841] [to:+19543543442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-20 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682797] [to:14045287313] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388864423] [to:+14502325301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-20 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748531336] [to:+447418332648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BA0201] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-20 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447496680424] [to:+447418327091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126318663] [to:+12138739728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478376] [to:12526733390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:12266003108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203521266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039890019] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236151111] [to:+19014449884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175316059] [to:+14242768374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712796950] [to:+13479788150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478820] [to:16122059939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012350] [to:16134017985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064911018] [to:+13065004503] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142682236] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203521266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096874195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990189] [to:17064958790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15798888927] [to:+16477991209] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409209976] [to:+14434530671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-20 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010201] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146102218] [to:+17736666378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039890019] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040433] [to:+12536422940] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853205220] [to:+17604743685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526172140] [to:+18724449271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500039A0301] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676897480] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526172140] [to:+18724449271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039A0302] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263483172] [to:+12267982255] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18024423436] [to:+13479804094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873299751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403576753] [to:+18597777189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108425644] [to:+14437203762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526172140] [to:+18724449271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500039A0303] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739193033] [to:+19783619759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812885] [to:15516893239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004486] [to:14167214482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122581835] [to:+19122005903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:13233315778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379375] [to:17573728589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19842098930] [to:+19193072466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12153004327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204605952] [to:+19282975949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176696968] [to:+17348214645] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447900] [to:19713311010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127561] [to:14698777808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479685696] [to:+19177329741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278225] [to:14057793728] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278225] [to:14057793728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503488148] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:13477278844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-21 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645402681] [to:+18642140450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16309472394] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19472827022] [to:17815216835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043207865] [to:+13204137203] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026199136] [to:+19027018438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022132420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108296397] [to:+13025852137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542022255] [to:+18327491368] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059343930] [to:+13054175905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-20 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193245503] [to:+16163190566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17158190902] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14195590544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704073829] [to:+18597777147] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326420509] [to:+18488634889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19025770626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475746696] [to:+16476913144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003340202] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003340201] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042547696] [to:+19177374916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574472406] [to:+17724940630] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027502] [to:14073106199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-11 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030941] [to:17785336260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085955] [to:15149157671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515624] [to:17869914898] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:13475123611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324018218] [to:+19364174060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236707740] [to:+16265085139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444168] [to:12159062626] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162103660] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-20 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451207710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452914] [to:13365679474] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156495951] [to:12097647420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676897480] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318556346] [to:+12312663316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035718611] [to:+18572401512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066501452] [to:+14064043494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19029400036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188267] [to:19545586508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:17183129707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334213] [to:19783993389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632542] [to:18456618200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865326] [to:12703631549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177954059] [to:18646718613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185679] [to:19174262447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563523008] [to:12675603725] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18049194391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372221292] [to:+18326503073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029719586] [to:+17026747214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452914] [to:13365679474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:14797996551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062748] [to:16623802790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152443636] [to:+15122657511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027234238] [to:+13025957230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238758306] [to:+13126310746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706144694] [to:+15703974557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175047309] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789148197] [to:+13054175755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498347] [to:18143122684] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269862] [to:15159884089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:12158590417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-21 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447522285397] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:12162242940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202217075] [to:19203443458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975052] [to:16316174037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264552219] [to:12269267661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588579] [to:13307702182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055411502] [to:+17278600552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264552219] [to:12269267661] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602037658] [to:+12602777426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346693] [to:19095369319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342292493] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273206087] [to:+18133207563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408183067] [to:+17409101972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15145766343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393783] [to:12104879042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393783] [to:12104879042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584577] [to:19046747206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104494890] [to:+18102168070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551748] [to:18624961554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-11 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196168034] [to:+13312087331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026906] [to:19023201247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043896227] [to:+12139359609] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16122200837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899441219] [to:+19894550451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367570783] [to:+18729995172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638923] [to:19738613427] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396926889] [to:+12392190402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297129216] [to:+15104555234] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541773] [to:16046442385] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19314345818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-21 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447570612175] [to:+447418336482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505310159] [to:+15817005248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15188440760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090290] [to:+14156538151] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:12158590417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702909432] [to:+15703973094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613489090] [to:+14158531042] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090290] [to:+14156538151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070031] [to:+12135876088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681622] [to:17057160234] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028786] [to:13472412972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322712554] [to:+18724005812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:17183129707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196513119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299420475] [to:+14422207925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266626195] [to:+13478999292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157305352] [to:+12678676380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206468421] [to:+17205996609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:13216890547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606905610] [to:+19298413259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329169] [to:18123635386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034213445] [to:+19712611242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373225803] [to:+13373479327] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196513119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474931140] [to:16479641801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016970468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369777086] [to:+13369440728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202698] [to:12082494777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993136] [to:17144005989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323437696] [to:+18323047984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190549] [to:14128740435] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:19103388475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400840] [to:19196338902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165200854] [to:19167572638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127561] [to:14698777808] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767715] [to:14195536470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:18152132158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:18152132158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239461152] [to:+13478685922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707861154] [to:+13479196258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634889] [to:17326420509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503077600] [to:+19709997013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400809] [to:18504055550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-21 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447570612175] [to:+447418336482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048381336] [to:+16784333348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175790] [to:12024255063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676897480] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784483] [to:18038423347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404356832] [to:+12136309241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690991] [to:12197818741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308087405] [to:19032789030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163221144] [to:+14259845442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-10 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329741] [to:13479685696] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560566] [to:12544587930] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-11 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474781356] [to:+16466878757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-11 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852842648] [to:+15852824175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-11 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-11 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049267028] [to:+17048977631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18604021072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:13103072638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095403898] [to:+14097771073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821741] [to:15857752325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663155] [to:18659355855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004966] [to:14145176250] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756282] [to:13106899802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304008749] [to:+17074033536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076424] [to:12604505593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:14163191708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334213] [to:19783993389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16128067695] [to:+16058887156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818101926] [to:+12819422425] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092024219] [to:+16096144305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:7:06080400430201] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989540] [to:18507608677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029674] [to:15064616836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013508420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037177] [to:19283086389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357848] [to:17029180770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464923338] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348580] [to:16786705624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-21 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363147] [to:14173895833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044459094] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194920459] [to:+19199164629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422491] [to:14233779529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19032155434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695892716] [to:+13479192795] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135673] [to:19164166250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405505225] [to:+18133084860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14439293834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092478299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049304933] [to:+18046242553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:19725893781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152176788] [to:+14695323429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329940684] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248826557] [to:+17723618329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488084930] [to:+19737562449] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231058] [to:16038520956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237424754] [to:+13108792193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601540] [to:14035895280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242498] [to:18045288068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-20 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451227699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464928379] [to:+15097397656] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853318205] [to:+15852824194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:14436682114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737087823] [to:+12342227347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18193719630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053437429] [to:+19543639414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104433536] [to:+14108745648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198023388] [to:+16825007463] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288686] [to:15206687386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424010] [to:14072885135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025782552] [to:+19027040180] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099721415] [to:+12134785757] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010202] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080400430202] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193337763] [to:+12262410303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-20 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022185097] [to:+19027030637] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040267] [to:19177245022] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163979324] [to:+17162792969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059717496] [to:+12262415964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479685696] [to:+19177329741] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18142186063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873217271] [to:+19172660125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922986] [to:15148046171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233055936] [to:+17864801610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-20 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333225] [to:13214607819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896288] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987453] [to:12315909322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142320320] [to:+16612285517] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19023048632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013833976] [to:+19015621407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697360] [to:19892549622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375366478] [to:+18583604584] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538151] [to:15137090290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945660] [to:15147260115] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282609836] [to:+16465130255] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-20 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-21 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451227699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049194391] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17029719586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053240208] [to:+12264559310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375366478] [to:+18583604584] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545624104] [to:+17542009212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059013923] [to:12678158583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613863274] [to:+13478967734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054643380] [to:+19142286615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482748] [to:16085186970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370644] [to:12162027440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-11 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-11 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545624104] [to:+17542009212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-11 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-11 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094654] [to:19803282873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149812] [to:19312005754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503193] [to:12017384541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-10 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179940490] [to:+13477970522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-10 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554129] [to:15022215348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554129] [to:15022215348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185679] [to:19174262447] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-11 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037177] [to:14808486827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805531] [to:13139104375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601540] [to:14035895280] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966443] [to:15742795600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663155] [to:18659355855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13172794985] [to:13179027151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-10 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174271] [to:18046050029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364029] [to:+19298410249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613191640] [to:+18328025146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16027544582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163161] [to:19198088680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163840] [to:17406846111] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335700] [to:15043440387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133274642] [to:+16136047641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-21 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181024] [to:12043803536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608032677] [to:+13473899540] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615737] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-20 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246418] [to:+447802893383] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076315473] [to:+13475186738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:14163191708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369531159] [to:+17866079456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-20 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246418] [to:+447802893383] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026714248] [to:+19177730570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196513119] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206253] [to:18135312390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295981] [to:14783962752] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049848687] [to:+14049001352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-20 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246418] [to:+447802893383] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014816373] [to:+12405732003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108451230] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884572] [to:18502612759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027950872] [to:+12406857821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668074] [to:19375974182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160947] [to:14076558602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899855] [to:12525587305] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147206] [to:12489337191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093867] [to:18032107852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436714248] [to:+14072163773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737037] [to:15408204816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132086518] [to:+19292200153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405027314] [to:+13108792584] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153703181] [to:+19148609794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512473084] [to:+16513184520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122163402] [to:+19719998220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016970468] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478820] [to:15182217177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377430] [to:12673422419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175755] [to:16789148197] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12536528210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13218727803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302699] [to:14128973950] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-20 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447522285397] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796785] [to:16183836300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602236616] [to:+12606337353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213263] [to:16017479200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415050038] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-11 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149157671] [to:+14388085955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193848] [to:19078876096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175790] [to:15615029123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18282432619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939213] [to:12153136417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018185] [to:19312873101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-11 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817243694] [to:+16465470099] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035648] [to:14123154480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220981] [to:19152179465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138292191] [to:+13137235940] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232187162] [to:+17633015532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:16788489900] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623515222] [to:+12135295372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819862330] [to:+15068040592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178109402] [to:+15703973305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203762] [to:14108425644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886877] [to:+16109105700] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-10 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242553] [to:18049304933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-10 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057793728] [to:+15103278225] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:13204073284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791532] [to:17162922610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138614904] [to:17047749764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17708824527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-21 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15064400959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788792] [to:12035360010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788792] [to:12035360010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989540] [to:18507608677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005099] [to:19189498529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14388037792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044655729] [to:+16784345781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157179169] [to:+16467018519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087700495] [to:+17322582284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204427920] [to:+13123001097] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323373548] [to:+18484824096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:12402647966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029190023] [to:+18572409002] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396452397] [to:+16513337606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:18047546224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:18047546224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023803428] [to:+19282855374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303095774] [to:+18328044618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:13043152167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504451217] [to:+14086183927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982608] [to:+17073007321] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819862330] [to:+15068040592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:16789951389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038A0202] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048189815] [to:+16474918976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047818900] [to:+16049019893] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545262633] [to:+19545195852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530005] [to:17064313002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245313843] [to:+12138026982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-11 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207995] [to:15703903613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105880073] [to:+16318127622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551748] [to:18625961554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:17862906410] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026468] [to:17052098119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:17248826557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896236392] [to:+15103226865] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:14173310493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-20 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029139473] [to:+17865458642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] http://s.groupme.com/2avOqR] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263467593] [to:+12262437099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142069143] [to:19149436190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884448] [to:13144983948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16122200837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:13304959152] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047088260] [to:+12135297737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-21 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003F20201] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750166] [to:17174254404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876578] [to:16262973775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299778691] [to:+13866015224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734291] [to:17062511668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198290900] [to:+18193035374] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-20 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003F20202] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314308339] [to:+18316122875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985901] [to:+14318003617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796279] [to:17406180315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545586508] [to:+13475188267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198290900] [to:+18193035374] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697360] [to:19892549622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739799975] [to:+18133204632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893295714] [to:+19895334990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19514263318] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720155] [to:18026732388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025231133] [to:+13479379669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404378] [to:19102733383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476937118] [to:+17185042396] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475746696] [to:+16476913144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050301] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-21 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447414885630] [to:+447418327665] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003050302] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214607819] [to:+14076333225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295981] [to:14783962752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:14163191708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921547] [to:17742895333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524451658] [to:+18133209359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402447579] [to:+13866018078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316072] [to:14196108784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198686562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:13045332512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050303] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419089313] [to:+17027181765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207995] [to:15703903613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346104119] [to:+13479192542] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048988507] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459702] [to:19374891405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679669914] [to:12155268108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:15043203229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073206110] [to:+19172834535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327543] [to:12604491941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162436] [to:19842323703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168175812] [to:+16475039126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693579997] [to:+12692808141] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286906] [to:14348257529] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192706021] [to:+12262416902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:13307768302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-20 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475065272] [to:+15169260331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787705714] [to:+16784007781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-21 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447414885630] [to:+447418327665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337233] [to:12602297927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408139] [to:13522089707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-21 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622560] [to:+447534278774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197363] [to:18479975151] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607710725] [to:+13479803713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167170609] [to:+12313318378] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042444631] [to:+18185401199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193623891] [to:+12267981022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269401] [to:16063693424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16825007463] [to:19198023388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503019610] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17014006948] [to:+17012892179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767250] [to:16143183895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691012] [to:16197910735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269401] [to:16063693424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049304933] [to:+18046242553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074914855] [to:+17739433766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309241] [to:15404356832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-21 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451227699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593149] [to:18144934882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049289659] [to:+17047505772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-11 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406133449] [to:+18572407641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092478] [to:17044332001] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199825112] [to:+12267983384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16302046146] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15133841582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136509] [to:13372447989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041944] [to:15068780281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12536528210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124419] [to:16107632993] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168044239] [to:+17162791215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616922470] [to:+15613284051] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060712] [to:14703839517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402647966] [to:+14435299721] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364981] [to:13366622111] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123530] [to:+13025957232] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146252242] [to:+17074069038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087173971] [to:+13212700617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572244320] [to:+16475569493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406133449] [to:+18572407641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133490825] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564042292] [to:+13478968408] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-20 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248826557] [to:+17723618329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785442523] [to:+17702005481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505156359] [to:+15873321995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052975345] [to:+17053009971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133812038] [to:+18133205618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412205075] [to:+15419182046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447459560229] [to:+16304893939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207973] [to:16104686627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-20 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447414885630] [to:+447418327665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707603] [to:16317073925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049289659] [to:+17047505772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437202] [to:12896847646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042288952] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045317039] [to:+15103135957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177397] [to:17727776680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155303741] [to:+12672732627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389887617] [to:+14387925763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532272] [to:15126564669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334283] [to:19894951135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796553] [to:16624400204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014406081] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753386] [to:18606045947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015621416] [to:19015024957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792049680] [to:+19798885202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162436] [to:19842323703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679669914] [to:12155268108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-21 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146120381] [to:+14156887391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19514263318] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252217205] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-21 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-10 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:18042057659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-10 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-10 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082154] [to:15166478459] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-10 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16617480465] [to:18054150971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489106] [to:18506022580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-20 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432251896] [to:+447520627972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-10 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623127470] [to:+13475184207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450146] [to:13368487266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579292] [to:17148186056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329294196] [to:+12816035175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163804812] [to:+17166661210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336812] [to:17062002985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023996] [to:16613792206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737211] [to:14106246101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158594660] [to:12819352016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022708662] [to:+13025830477] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12189020363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389866] [to:18145530889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141355] [to:16319727716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038080622] [to:+12404077580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-21 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742481394] [to:+13478993834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038204674] [to:+16465473958] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658575] [to:13476353733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-21 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609502] [to:+447518762310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062246706] [to:+16788164362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353068] [to:17408610532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472246] [to:16625676664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437072426] [to:+12138068433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198023388] [to:+16825007463] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004966] [to:14145176250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294294679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046692439] [to:+19142671441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179027151] [to:+13172794985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14357300730] [to:+14357764913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193848] [to:19078876096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158190902] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16627621955] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19133963319] [to:+14198430804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:15043203229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364981] [to:13366622111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15186694320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368241] [to:16206524683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198035912] [to:+12264570153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023996] [to:16613792206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478007] [to:5517997030210] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-10 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856946260] [to:+15852822096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149569177] [to:+16149963761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17024098639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157181871] [to:+12134784858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176009694] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145686604] [to:+17097001534] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122462349] [to:+13473436992] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103495475] [to:+16106999386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196513119] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896288] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609161] [to:12022501569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734535433] [to:19083423917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18108451230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:13304959152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133304980] [to:+16139098258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022464931] [to:+15713262406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046692439] [to:+19142671441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658575] [to:13476353733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13373421457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101195] [to:14035988962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431606] [to:12268202577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045529836] [to:+14043900073] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109652176] [to:+18327439651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098298308] [to:+15103405418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703177088] [to:+15028041581] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-21 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-10 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607105579] [to:+13478028479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895512166] [to:+19895697447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:19024719124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134708] [to:+13658001180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-21 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447910753125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549928] [to:15133040175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+15103227611] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309319715] [to:+18133315970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123612] [to:15415305968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009047] [to:18194127472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-21 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944695155] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177955106] [to:+13475184719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-21 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447736456651] [to:+447451209187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003EA0201] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:16786978792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309577811] [to:+12678676959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862368662] [to:+15204336271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133106143] [to:+19047584628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040806] [to:12506448894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579210174] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282287470] [to:+14692055414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992984] [to:16476871881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-20 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239815] [to:+447508020511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127978366] [to:+19142815273] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592801] [to:19033140038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576327827] [to:+18572402483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415392850] [to:16047046313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415392850] [to:16047046313] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785757] [to:16099721415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085960675] [to:+19172751345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476937103] [to:50256043351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472014233] [to:19403019653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005558] [to:18163137130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783962752] [to:+12135295981] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095570] [to:12522853959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042989255] [to:+19292688349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038080622] [to:+17189628285] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12533270339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129274638] [to:17247577155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867443723] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-21 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447736456651] [to:+447451209187] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003EA0202] -Feb 1 11:27:45 ip-10-0-0-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475456858] [to:+13024395388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123652] [to:16155078165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783655901] [to:+14703336978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345214860] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515782] [to:12392255608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282287470] [to:+14692055414] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039536] [to:15068880444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633262894] [to:+19417256412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093407] [to:17049742042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093407] [to:17049742042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017479200] [to:+14056213263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060712] [to:14703839517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252217205] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-20 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208534] [to:+447847425782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146252242] [to:+17074069038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18433600367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377683] [to:18122398795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-21 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12546406059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156845] [to:19195922135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:16135716675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564042292] [to:+13478968408] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596813275] [to:+14158532144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614938464] [to:+15172527856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165770689] [to:+19298411216] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-21 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946329649] [to:+447520670858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024804190] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12025173304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149131] [to:12762263638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220130] [to:19548290467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147778] [to:18138925613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023803428] [to:+19282855374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049575679] [to:+13478084279] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+14153405570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-11 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672499426] [to:+18572329062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479846] [to:19376701357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:13866977558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-11 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:19096428563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409209976] [to:+14434530671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-11 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042762] [to:12893858207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015224] [to:12299778691] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-21 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368296232] [to:+13369382412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-11 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361704] [to:19122125395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803201] [to:17863198700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042895] [to:19023060788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803189770] [to:+19802097637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14435091400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:18025829439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163620] [to:12182320702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179695] [to:+13866012002] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-20 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018627648] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168289822] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014141265] [to:+17547774583] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673930756] [to:+18729997517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135298692] [to:15104846566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388037792] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201779] [to:17174223864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-10 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035787787] [to:+13478682970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198023388] [to:+16825007463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364077] [to:+17278603533] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14258765510] [to:+14253338921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132952555] [to:+17206235415] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162103660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13172794985] [to:13179027151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288479] [to:13476912996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:13472320748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194441327] [to:+16413165599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043142168] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047979631] [to:+19014746339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784948644] [to:+13214062890] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370999] [to:18673357831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107880809] [to:+12105560260] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687036] [to:14155963634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156845] [to:19195922135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15408946590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572641440] [to:+19148609444] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788155221] [to:+13123008669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026982] [to:14245313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500038E0201] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005257] [to:14058852558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433491] [to:15136048217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038E0202] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376569] [to:16025290278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102732925] [to:+18046650368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016977729] [to:+17185212474] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029645974] [to:+17028294769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702909432] [to:+15703973094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076682517] [to:+14072163285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014077817] [to:+13475089681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195536470] [to:+14197767715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500038A0201] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792049680] [to:+19798885202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12319200675] [to:+12312663413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546624895] [to:+13053406709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142139710] [to:+14388086100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108847864] [to:+19142061137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054796789] [to:+18133207695] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142076404] [to:+13369383203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:17603492208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013508420] [to:+12136946214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19257592737] [to:+19252382941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-21 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451223039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D90201] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D90202] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026845060] [to:+19027043906] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14067688555] [to:+14062041933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-10 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064789961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149096] [to:12108826246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-21 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339384] [to:+447543193689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388037792] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048977631] [to:18049267028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002340] [to:14044385211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167490] [to:17132057036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082030892] [to:+13093069441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049923540] [to:+12138028697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047546224] [to:+15406286065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14783529172] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-10 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-10 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:58 ip-10-0-0-11 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063812730] [to:+15068036317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:58 ip-10-0-0-10 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802132] [to:16062727225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-10 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436279287] [to:14438669659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104955232] [to:+13025958635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022505762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19257592737] [to:+19252382941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13176506467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251296] [to:13066902049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011249911163751] [to:+17604745424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251296] [to:13066902049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288479] [to:17184155238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193842] [to:16097603762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138614904] [to:17047749764] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311351] [to:12403549159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326199817] [to:+14158537773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-20 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451216945] [to:+447734065770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082605] [to:14783312518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609519186] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388037792] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15034626016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478384391] [to:+16474965392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313278255] [to:+12313318533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783589] [to:17044504153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554160] [to:14435717361] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314142285] [to:18022749973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742795600] [to:+13478966443] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102326] [to:17053312810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15054404779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375557] [to:963949158624] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076130738] [to:+14072162414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193564475] [to:+19199161438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549928] [to:15133040175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024395388] [to:13475456858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323765] [to:16316035375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-10 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130030] [to:15055858366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572641440] [to:+19148609444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309882644] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072505] [to:19196419731] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12543018858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214024139] [to:+17864802886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:17097432710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046340208] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-11 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049575679] [to:+13478084279] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148740359] [to:19145848248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041836] [to:17055615864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502325408] [to:12263788864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137071387] [to:16136024585] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576049513] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129990546] [to:+12138739137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035895280] [to:+12894601540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824175] [to:15852842648] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354528] [to:14126527470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134714] [to:+16475569506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081665] [to:12253055663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685787] [to:14234261389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129990546] [to:+12138739137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642831004] [to:+13369382478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143063894] [to:+14694148345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032107852] [to:+19802093867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258953] [to:13146774117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311097] [to:+13479976354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555366] [to:15193284670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023183179] [to:+19027030714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127733947] [to:+13614450272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673038477] [to:+14197767796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154019452] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186738] [to:12076315473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096746933] [to:+16095434847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555351] [to:14233207549] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174058054] [to:+15703973903] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673771866] [to:+17726177451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435357645] [to:+15122657511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17472559330] [to:+18188772681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009587] [to:12197893280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054665820] [to:+12262404728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856286948] [to:+18326505629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735163] [to:14782070165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852221487] [to:+19172593703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:17575098255] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12042923984] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578481] [to:16202529753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:16624932472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488303215] [to:+13233207054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305963215] [to:+13477146198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472412972] [to:+12138028786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249314792] [to:+17248032285] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147032221] [to:+19142067078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-20 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627972] [to:+447432251896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147613] [to:19377681689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147778] [to:18138925613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364950] [to:12762522495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026732388] [to:+19172720155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022247964] [to:+15028049491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171826] [to:16313364013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:17606098464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786798072] [to:+17784024596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027003742] [to:19028741128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405973353] [to:+15406286240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812051149] [to:+12138739088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515370522] [to:+19176635955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:11 ip-10-0-0-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834931] [to:15622467963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-0-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193623891] [to:+12267981022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:11 ip-10-0-0-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057958130] [to:+12262411969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163235373] [to:+16163266438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027502] [to:14073106199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808692] [to:13852073453] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808692] [to:13852073453] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-11 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497000836] [to:17056472556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166478459] [to:+15169082154] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317268332] [to:+16167948290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547678] [to:17406441440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547678] [to:17406441440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-21 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808141] [to:12693579997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144005989] [to:+13478993136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328341] [to:14077609680] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785866877] [to:18706621510] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981339] [to:18019806738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047194] [to:16473605839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15052647892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143063894] [to:+14694148345] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-10 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404356832] [to:+12136309241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045529836] [to:+14043900073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207385] [to:15746126753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893858207] [to:+12898042762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188440760] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186738] [to:12076315473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16824722988] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324924977] [to:+15415392866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740386] [to:+17636560744] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095039862] [to:+14242839292] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144460471] [to:+18126709135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196407295] [to:+18193034470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192806] [to:14108458642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938803] [to:19025530322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048833038] [to:+13234834396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790512] [to:18143318250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035494635] [to:+19298411148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127297] [to:12149527660] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12186468555] [to:+12092516208] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18143976180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388074952] [to:15148089604] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077739] [to:15064712559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:14259039010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033529851] [to:+15873323848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942464] [to:+16465138227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049203371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329795] [to:14012828697] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19733422211] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16058091058] [to:+12816034601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-20 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005686] [to:14707988393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088411] [to:18133055241] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130520] [to:+14043411787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149096] [to:12108826246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530083] [to:12098986817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314647718] [to:+13475184780] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081892] [to:18138027253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174759628] [to:+16198109911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193564475] [to:+19199161438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-21 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447704045859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168949] [to:17742804943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642015532] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681231] [to:19058189664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12144932374] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887156] [to:16128067695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-10 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085201857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174696627] [to:+15672057048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086026634] [to:+12087574177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144368] [to:19546622656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975160] [to:18435322617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625426733] [to:+13477989352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179806] [to:12024093025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981339] [to:18019806738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-20 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064789961] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368487266] [to:+13366450146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146588] [to:19037300135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854920077] [to:+12134547190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594026107] [to:+15108838487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329459] [to:19049030166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940817] [to:15146910806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072700] [to:15146475649] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291492] [to:17576049513] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076558602] [to:+14072160947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175888] [to:19192227229] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364013] [to:+19703156055] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174963167] [to:+16367547438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12144932374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407481874] [to:+17036466469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:12022705792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-20 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330519] [to:+447522285397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456651037] [to:+18455797452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950112] [to:18058279965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405304] [to:15307365882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963836] [to:16472283356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364609131] [to:+13366452483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179610] [to:12027609216] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142548253] [to:+14123464751] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145149183] [to:+15172527299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017204070] [to:+12132950700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094242] [to:14087171454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062598202] [to:+19027043651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179027151] [to:+13172794985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18574178948] [to:+18572192656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598277496] [to:+15592232334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040674] [to:15024578717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605400052] [to:+13476762356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-10 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503019610] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480570] [to:1233272185497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19027192539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605400052] [to:+13476762356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147636] [to:18562837756] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749524] [to:13212896120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143842537] [to:+17185212524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989267] [to:16784998300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067503] [to:15185702686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013508420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505306263] [to:+18506314686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259799] [to:17138512279] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259799] [to:17138512279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259799] [to:17138512279] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382566] [to:17044023715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056103687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067750351] [to:+12532446082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076315473] [to:+13475186738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16034796330] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404063593] [to:+18046244060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-20 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208576] [to:+447740306371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169844029] [to:+17162791367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926767] [to:13527772107] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-21 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068142381] [to:+15106717363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314096230] [to:+13477865527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381424] [to:13366814534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540021] [to:15303540953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783823085] [to:+14043412757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767715] [to:14195536470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574695529] [to:+13055017423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154129891] [to:+17748557223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777103] [to:16158532674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-11 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379911] [to:16204401894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388074952] [to:15148089604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023163] [to:12294127667] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023163] [to:12294127667] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023163] [to:12294127667] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178995249] [to:+19282974329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476872985] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333225] [to:13214607819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401390] [to:15086620626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-10 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171228] [to:+13478684094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-10 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17855778436] [to:+13478968975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-10 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108693204] [to:+18108527502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-10 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432822] [to:16412028738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364672492] [to:+13367018085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732920740] [to:+14144006322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783529172] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15062298368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056205] [to:19023002949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049136120] [to:+18585199132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097436515] [to:+17097010524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809773356] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852852906] [to:+15852822426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427797] [to:15852870364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477703906] [to:+16474919131] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156300348] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126397378] [to:+17126427985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681231] [to:19059667469] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048179930] [to:12049558605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603220526] [to:+16316141113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042762] [to:12893858207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17158190902] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797827] [to:16068310090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138081659] [to:+18133244490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174457890] [to:+19149798242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313337083] [to:+19142815844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-20 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206757] [to:+447720605600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085992911] [to:+12087574730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-10 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-11 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764748] [to:15012535258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-10 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-10 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-11 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-10 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-20 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447470428051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154231] [to:+12134017684] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893555213] [to:+12898047354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005558] [to:18163137130] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039151362] [to:+15874040848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968344] [to:19317435646] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732920740] [to:+14144006322] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568555] [to:201020491245] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502994] [to:13107349795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569191042] [to:+16465139933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12604461219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174965420] [to:+16413165184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755485] [to:15702847104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725582] [to:18105774599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042526677] [to:+19047587592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003A20201] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062511668] [to:+14706734291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333225] [to:13214607819] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042526677] [to:+19047587592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003A20202] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314686] [to:18505306263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845380014] [to:+13473438874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084570304] [to:+14153269665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17175047309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098899] [to:19172041998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064714174] [to:+14694148062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163478683] [to:+18327491580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032174414] [to:+12138619172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-20 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186852886] [to:+15817005184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:19123419378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954152] [to:18566566553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19737278708] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15128873786] [to:+13024000599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236818] [to:19259974900] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931070] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605539] [to:16235521837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004423] [to:15053929391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178618592] [to:16035455646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056103687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004423] [to:15053929391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004423] [to:15053929391] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178022133] [to:+17604743609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:17174058054] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013316511] [to:+17604745791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178022133] [to:+17604743609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-20 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447956527123] [to:+447451235973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-20 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-21 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520670256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652789234] [to:+12135760810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325947119] [to:+14155212277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213263] [to:16017479200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143803337] [to:+14146007646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622473730] [to:+12139352131] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167490] [to:17132057036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054100129] [to:+18054202886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693579997] [to:+12692808141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:13342357656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336524] [to:17066339616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040410] [to:16094960816] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18604021072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853517422] [to:+15852821843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313278255] [to:+12313318533] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-21 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152516277] [to:+12678444044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362794982] [to:+13369440259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186738] [to:12076315473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677779] [to:14134261043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607043603] [to:+12602327577] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162414] [to:14076130738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137706341] [to:+18133202057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:17069960278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134235752] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16026158922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617827] [to:12707760103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725847150] [to:+17727668489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035058035] [to:+16034138381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966443] [to:15742795600] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160307] [to:14072426822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227476] [to:14847889760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430804] [to:19133963319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-21 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789518913] [to:+14049001064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142665733] [to:+15147003695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123612] [to:15415305968] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132444895] [to:+17193538227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812694] [to:14237180592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:13863363098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137850753] [to:+18133201485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:17542425445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203738022] [to:16614745420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623928433] [to:+12313778516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12628086166] [to:+12627778062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178176041] [to:+13474340108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033089910] [to:+18033050193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812694] [to:14237180592] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14102624024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892120] [to:13314250013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892120] [to:13314250013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099966667] [to:+14253338341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952699] [to:+13069932530] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387639] [to:13234457589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095768089] [to:+19093431981] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774919] [to:17326407070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-10 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-10 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160816] [to:14077155727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785371] [to:+19148468592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-10 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:14165298807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135590496] [to:+19729470917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739302] [to:14846618521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-11 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-11 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493712364] [to:+14074424491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187280416] [to:+18133209932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663376] [to:16152080403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077739] [to:15064712559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551748] [to:18625961554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12194337971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070984] [to:12602436794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-10 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730322] [to:15187767342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482172618] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092161533] [to:+15096395944] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498310] [to:17177138456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236707740] [to:+16265085139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977535] [to:15705165796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335249] [to:17063990900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199132] [to:17049136120] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819862330] [to:+15068040592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555366] [to:15193284670] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162414] [to:14076130738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304019873] [to:+12342315978] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-10 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714448152] [to:15412104895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023060788] [to:+19027042895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12074587759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557223] [to:13154129891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-10 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671927] [to:+13479862076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-10 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075526] [to:16152891896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605388049] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476872985] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12135455770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020351] [to:19895338768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774777] [to:14157064748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405634] [to:17652257279] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799188] [to:15184889975] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098899] [to:19172041998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14235194164] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18139665170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166460] [to:15853694791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123202835] [to:+13122754316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17023430844] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974379] [to:14804538207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-11 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022771] [to:+17604749746] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003860201] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-21 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788018] [to:19102629707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:17787621895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269244234] [to:+16164200425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-20 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196513119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693016779] [to:13187623898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:12503548957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:19047316314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015056] [to:19102794841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325944756] [to:+18322463994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064190959] [to:+14256789406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167490] [to:17132057036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335194] [to:16093358592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097284240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286667] [to:13109367219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16026158922] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247577155] [to:+14129274638] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606045947] [to:+17864753386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406064202] [to:+13017786061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085255395] [to:+15085569826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16058091058] [to:+17016454136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436009715] [to:+14435835239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316174037] [to:+16313975052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725238375] [to:+12315987289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899441219] [to:+19894550451] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653047780] [to:+18653473101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049318274] [to:+13474863548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562969513] [to:+13479068892] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372878807] [to:+13478967848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12287316472] [to:+15089166030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048120439] [to:+17133735771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028680] [to:12896004396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038200] [to:+14158536166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023914181] [to:+12678676182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624736943] [to:15623613324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255941909] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488949079] [to:+13134247930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-21 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:GoSkippy] [to:+447451200314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479689] [to:13344259373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016974147] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15857430874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:12404470102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011103] [to:15144169718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177199788] [to:+19172669055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803189770] [to:+19802097637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511076] [to:+19027058406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005718] [to:14048255123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085201857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19045081108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14705355374] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174058054] [to:+15703973903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309078602] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952699] [to:+13069932530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026732388] [to:+19172720155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:19168800419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502334398] [to:18432092962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188210439] [to:+16465319679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19797392051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032285] [to:17249314792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247866] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313337128] [to:+15412488753] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065242778] [to:+15068037716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004783] [to:19025746623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17736092803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393008828] [to:+14242797959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029561277] [to:+19027043619] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546786783] [to:13232895562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020351] [to:19895338768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148392168] [to:+14146007318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149724721] [to:+14696433992] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108847864] [to:+19142061137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847163392] [to:+16109105933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742873039] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039537365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286667] [to:13109367219] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171228] [to:+13478684094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477561860] [to:13127351553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118613301999196] [to:+14703336048] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337048] [to:19524545096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160307] [to:14072426822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:13865380082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366814534] [to:+13369381424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:13045332512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708595] [to:12163722319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805069] [to:+17059999312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789533] [to:15184194506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096329095] [to:+16474915957] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-11 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977535] [to:15705165796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-10 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392018604] [to:+12399000509] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064712559] [to:+14388077739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-10 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725253] [to:15174043498] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-10 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-10 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-10 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069960278] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393008828] [to:+14242797959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069653] [to:13474417670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576049513] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12073338532] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641290] [to:12098556947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622922] [to:18032809871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244967] [to:14127370126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998945] [to:18149337292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-10 mdr: 2016-02-01 11:29:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093182] [to:16133141720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338560] [to:+16475569546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174712152] [to:+15169082274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347218964] [to:+19492981228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472602765] [to:+19176634395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254289392] [to:+17189627231] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438630307] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470861] [to:13109715481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:13014078680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145566092] [to:+16149180302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345226] [to:18436271913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697071] [to:12398495013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:14849196948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595725516] [to:+14153405895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135980577] [to:+15178615764] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436229] [to:18145944170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-21 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226017] [to:+447470947713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16139170441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126053] [to:16133227032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193099753] [to:+13859851233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182037669] [to:+18185401965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:18025829439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599635567] [to:+13477866264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-10 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182037669] [to:+18185401965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098899] [to:19172041998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:18458094954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154019452] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599635567] [to:+13477866264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001503] [to:+13479067535] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812846] [to:12408388023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708334820] [to:+13476678173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15798888927] [to:+16477991209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405634] [to:17656564556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733931437] [to:+18622278818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800066] [to:15754418638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986913] [to:14043974998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043085429] [to:+18285486092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:16156557194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139177237] [to:+16136047988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12566031480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314859] [to:18503244080] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839629] [to:15136673760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148984809] [to:+14387940621] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064712559] [to:+14388077739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387633275] [to:+14387928127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892849557] [to:+19895334568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003090202] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093427411] [to:+12677938561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723241880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484495] [to:+12139353295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777189] [to:17403576753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-10 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346374407] [to:+15204333895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500034C0201] -Feb 1 11:29:10 ip-10-0-64-11 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:13869162455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587172] [to:14405376966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317964581] [to:+15167349578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-11 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:18458094954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199835222] [to:18154400534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346374407] [to:+15204333895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500034C0202] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171409] [to:+12136300847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003510202] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-20 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CF0201] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325947119] [to:+14155212277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097252104] [to:+17097001597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003510201] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13109246184] [to:18189138140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786297] [to:50231177733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317964581] [to:+15167349578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836747] [to:14237155565] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894342012] [to:+12892755684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076060] [to:5533988572523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416619002] [to:+19412642431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:13364058520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491903] [to:18636189968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:17069960278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853056510] [to:+14153161854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952699] [to:+13069932530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502334398] [to:18436076107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502304601] [to:+14388077244] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:15856427620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077293971] [to:+17864803208] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201101] [to:+18583603749] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334844] [to:17067511298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568405] [to:+12342314708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163536686] [to:+16466998274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126053] [to:16133227032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-21 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CF0202] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086490] [to:13146448014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178176041] [to:+13474340108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502304601] [to:+14388077244] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126527470] [to:+14125354528] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129834491] [to:+17812621969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077739] [to:15064712559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028241947] [to:+16474952845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347218964] [to:+19492981228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300885] [to:12023416472] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865401496] [to:+19177085907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155610765] [to:+15852821713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925733] [to:13065377394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502816981] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792452178] [to:+18724008386] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550542] [to:12608945319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893858207] [to:+12898042762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136332885] [to:+16042652707] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-21 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338185] [to:+447999421825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615685021] [to:+15612319612] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-20 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132238624] [to:+17053028840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214607819] [to:+14076333225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714448152] [to:15417257686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106279214] [to:+12135297293] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17193878243] [to:+17196290048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047567941] [to:+14242839839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338895] [to:+17182558655] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705165796] [to:+15703977535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132238624] [to:+17053028840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595835673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12348172412] [to:+18133315970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958275] [to:18287295122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097709277] [to:+17097005119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808141] [to:12693579997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-20 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447522285397] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731039] [to:17067660461] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050545] [to:17808823374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404138] [to:15109278293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422374710] [to:+19196504184] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15864398719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975052] [to:16316174037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040547] [to:+14153260974] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896872201] [to:+12898047250] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538150] [to:12405204809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249314792] [to:+17248032285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220677] [to:+19785663152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703303381] [to:+14045966751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041932] [to:15198071012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995740] [to:18649215692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-20 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193284670] [to:+12264555366] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298879] [to:12147333993] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427797] [to:15856941275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169485908] [to:+17162792064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:19096783982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946581] [to:12523676321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15128873821] [to:+16475569506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16785789623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493580336] [to:+16474915998] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:13348641109] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022185097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129515177] [to:+18038519647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304361] [to:17542643208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652782832] [to:+14243360646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403576753] [to:+18597777189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573341715] [to:+17185048968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046340208] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789951389] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304361] [to:17542643208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868176] [to:17752920436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133551933] [to:+18133202792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053258893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027541061] [to:+19027021784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912440] [to:15062297878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023041785] [to:+19028019314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047075385] [to:+19199162205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-21 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520670256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227486] [to:19109188504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545624104] [to:+17542009212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16033806579] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314946231] [to:+17027474331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088643319] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297260313] [to:+13217309641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085858325] [to:+12087630304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:17044497875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102326] [to:17053312810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555366] [to:15193284670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035522684] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069960278] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088411] [to:18133055241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:16159813496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171228] [to:+13478684094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764748] [to:15012535258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:13235186842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024578717] [to:+15028040674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449164] [to:19018315461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064190959] [to:+14256789406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194121683] [to:18194321654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242746955] [to:+16139125695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402412415] [to:+12138737252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024390148] [to:+17029565018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162390386] [to:16164309122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337217] [to:12608040455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508572363] [to:+17784030979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156300348] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733547921] [to:+17736669416] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297980966] [to:+17278196470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13174965420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17805070769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:17057940113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15066459849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17099866388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043896227] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-20 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982329] [to:17096912465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065287585] [to:+14148887832] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298845] [to:14055905122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583419] [to:+19717328133] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-11 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578027151] [to:+12136348343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17063517135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486395] [to:19515996711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-11 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-10 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18507608677] [to:+13477989540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-10 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052155565] [to:+16054237960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:16463398853] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:17174058054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538150] [to:12405204809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762238721] [to:+17475001245] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896004396] [to:+17053028680] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824238] [to:15857398269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179806] [to:12024093025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503267687] [to:+18637347990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073424038] [to:+17189627326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025829314] [to:+17186755679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165262] [to:50495356788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278818] [to:19733931437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975052] [to:16316174037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18176009694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084860] [to:17405505225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-11 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-11 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-20 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447946329649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12135455770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-11 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690803] [to:18124540619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-11 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-10 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-11 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-21 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004733] [to:16477075218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788863474] [to:+16042436902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473361] [to:18656615351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093358592] [to:+15204335194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491903] [to:18636189968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169208459] [to:12167033384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017321] [to:13047856368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045050741] [to:+12139219557] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022788938] [to:+13478999454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132061215] [to:+16136049013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088411] [to:18133055241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298845] [to:14055905122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000835] [to:14189323353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CE0201] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000835] [to:14189323353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073338532] [to:+16465472949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206235500] [to:963956577060] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175255] [to:14073148500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138497097] [to:+15874043301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730570] [to:14026714248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305188425] [to:+14123016346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067078] [to:19147032221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405634] [to:17656050900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613863274] [to:+13478967734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926767] [to:13527772107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613863274] [to:+13478967734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088188411] [to:+14087135769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001609] [to:17046915132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181501] [to:17023730882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375378] [to:18133812590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054853375] [to:+17542003701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049444188] [to:+14049004290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474571660] [to:+15204333385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326689829] [to:+17133526820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467042934] [to:+19142064370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-11 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105455533] [to:+19298411449] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515624] [to:17869914898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137640] [to:18025229962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-11 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15066459849] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14028060494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195852] [to:19545262633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365588797] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-11 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-11 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-11 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176553051] [to:+13479568894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-11 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19104747051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708457217] [to:+14043412099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-11 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+15103227611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:19498990988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749475] [to:19858557347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375405431] [to:+19783649424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137863635] [to:+18133205156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17403140890] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982329] [to:17096912465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17802195005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309241] [to:15404356832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463777548] [to:+13072138391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023154] [to:13177934397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042953] [to:16139201219] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16094102373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-21 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069790338] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025397] [to:12508081180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:18649234759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004733] [to:16477075218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688235] [to:19179400646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184150] [to:18183036226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CE0202] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-21 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144775938] [to:+14146005843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812356126] [to:+14387928151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-20 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154129891] [to:+17748557223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-21 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676784089] [to:+16079655863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316035375] [to:+14695323765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154139] [to:+16319800164] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17027388551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991209] [to:15798888927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036188] [to:13214314512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12899903154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474566260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323848] [to:14033529851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001609] [to:17046915132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129965229] [to:+14126940092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-20 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-11 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-10 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144029013] [to:+12148149408] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-11 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704021992] [to:+12709849481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-10 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004723] [to:17042325155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14388046336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149198162] [to:+14387927091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178361034] [to:+14706733462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138264243] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162130314] [to:+12167776786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893680137] [to:+19027004591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387639] [to:13235980340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:15136935532] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184150] [to:18183036226] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024390148] [to:+17029565018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600647] [to:15026540550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309791] [to:16145977693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063583] [to:18603062605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063583] [to:18603062605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144460471] [to:+18126709135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300717] [to:+19027026794] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160947] [to:14076558602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149198162] [to:+14387927091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813510231] [to:+17812052535] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304189540] [to:+15303623218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813169] [to:14692542729] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053009971] [to:17052975345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102794841] [to:+12026015056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537525] [to:12293180203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866298093] [to:+15703974098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016625] [to:17024430119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044957558] [to:+19802092133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-20 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19565360900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19565360900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-10 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175742] [to:16063697352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103252418] [to:+15874107939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177797] [to:15209047786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188267] [to:19545586508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069780682] [to:+14237777934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405376966] [to:+14406587172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155489] [to:15188447584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:16097525807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783589] [to:17044504153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877547] [to:16478766545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286587] [to:15403103022] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286587] [to:15403103022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754418638] [to:+16319800066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994595] [to:13057351495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-20 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234654] [to:+447930075810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184194506] [to:+12134789533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:15879376003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433766] [to:15074914855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042204] [to:19059064882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103064202] [to:+14846339404] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164309122] [to:+16162390386] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069345344] [to:+15103357794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022647062] [to:+13476675702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19797392051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15033600832] [to:15035739306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525871767] [to:+16236664410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022708662] [to:+13025830477] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188662131] [to:+12182031239] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849084081] [to:+18729995999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087528] [to:17807797790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147032221] [to:+19142067078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664411] [to:2348120137796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263472684] [to:+12262407191] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329459] [to:19049030166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664411] [to:2348120137796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464411170] [to:+15204335030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852307] [to:13023625115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-11 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417354148] [to:+15412488633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181942] [to:17023817171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181942] [to:17023817171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863228966] [to:13526502230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-11 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366134064] [to:+13366450054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065940637] [to:+12138613581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501377] [to:13218775842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-21 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946329649] [to:+447520670858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-21 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748253883] [to:+447451205759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-21 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447850480731] [to:+447451207485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18039001499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064782158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298845] [to:14055905122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852137] [to:14108296397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543928010] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16039450621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333738] [to:19898178966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568894] [to:14176553051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884532] [to:14439293834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614925908] [to:+15128987335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188662131] [to:+12182031239] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:14702346066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303237325] [to:+13302374954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064370] [to:16467042934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:15088643319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483098366] [to:+12696356199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129515177] [to:+18038519647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045529836] [to:+14043900073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174809278] [to:+19784009407] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942464] [to:+16465138227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892849557] [to:+19895334568] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003090201] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326689829] [to:+17133526820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186852886] [to:+15817012391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123171017] [to:+18563125452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035837018] [to:+16034134311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272247344] [to:+17274937085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022705792] [to:+12026090142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019356279] [to:+18018934531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369777086] [to:+13369440728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178621306] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283614372] [to:+18458181217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318942077] [to:+16317732886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206311287] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478716298] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164445229] [to:+14062211501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338221] [to:19123900745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801068] [to:+14582015205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334217] [to:17064610694] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328645746] [to:+16784345955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742795600] [to:+13478966443] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096783982] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309791] [to:16145977693] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478722] [to:15033302343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894349] [to:19896150550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164445229] [to:+14062211501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427823] [to:13046715514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045867462] [to:+18046243290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202529753] [to:+17278578481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027192539] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004173] [to:19022107129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:13344689431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179397726] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:13348641109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307768302] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146680474] [to:+14388076356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941938] [to:15875960287] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:16045185954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-21 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:17787621895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164445229] [to:+14062211501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863902] [to:13344150922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-11 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195983755] [to:+18193075983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177138456] [to:+17745498310] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327577] [to:12607043603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809438] [to:16479611634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493725] [to:17572368402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132379] [to:16179824343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735519] [to:17063067671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004723] [to:16787603179] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642199379] [to:+18643346691] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476781201] [to:+14072163507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895338768] [to:+19894020351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650540] [to:12815295304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286587] [to:15403103022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254394727] [to:+13479377116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227405] [to:18035697693] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407391] [to:15197180437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12073338532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004782] [to:14703303840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576332228] [to:+15103405715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857197854] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086696] [to:+13866015030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056917306] [to:+17059102265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245313843] [to:+12138026982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18137850753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176908414] [to:+18173632032] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023041785] [to:+19028019314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611328] [to:19892252893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611328] [to:19892252893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-10 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086696] [to:+13866015030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14806664673] [to:14802057887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:14252109810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:17692323691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002949] [to:+19027056205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:14252109810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609519186] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430593] [to:13304738995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043974998] [to:+17279986913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472338778] [to:19044501034] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478364797] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952845] [to:19028241947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-21 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-20 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946329649] [to:+447520670858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967136] [to:17864684882] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067078] [to:19147032221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144837] [to:18632414395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071128] [to:12606331229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-20 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-10 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032738607] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029565018] [to:17024390148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12687705491] [to:+19027058489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771579] [to:12132745579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778009] [to:19206647902] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-10 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990780] [to:17198490610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17065705339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103064202] [to:+14846339404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436794] [to:+12604070984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852852880] [to:+15852822601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377279270] [to:+15137259246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067287429] [to:+14706735080] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-21 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234654] [to:+447930075810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003350202] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685787] [to:14234261389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-20 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447786070642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788858453] [to:+17786549789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202792] [to:18133551933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19566848733] [to:+18328044263] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018858784] [to:+13476191300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197819050] [to:+12262410626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178621306] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052553303] [to:+17059103207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059181359] [to:+17053026236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:16097525807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:527151112914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14436238726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025428235] [to:+13025958971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205022] [to:18632723064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13174904373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137730595] [to:+13474916656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247866] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:17803640315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:17803640315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14783529172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-11 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-10 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-10 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526502230] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-10 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040275] [to:14389267298] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-10 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352240550] [to:+13858870207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-10 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692054588] [to:13183597080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-10 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14014406081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877547] [to:16478766545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-21 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-21 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816321079] [to:+447451205608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474951301] [to:+13476504265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088425174] [to:19082084725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023154] [to:13177934397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002949] [to:+19027056205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171826] [to:16315539890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195971728] [to:+19165339764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294609110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066396194] [to:+14706730134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050899] [to:16042602976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466878958] [to:18053668365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673036725] [to:+18583048217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045050741] [to:+12139219557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577494586] [to:+19148250912] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073969037] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742074875] [to:+13478085357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798399] [to:17403810809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787323883] [to:+16039450313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808006700] [to:+19194156404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205219] [to:15134793549] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17062472305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437279] [to:17789268552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967136] [to:17864684882] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305307] [to:15185051586] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364810] [to:+17279166854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093337845] [to:+13477866042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167998714] [to:+13478022553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259039010] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202613] [to:14106228541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147694630] [to:+13479199388] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213158] [to:12516439103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663129] [to:12316242032] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033288] [to:18304616960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259039010] [to:+12069469061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190402] [to:12396926889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384961763] [to:+14387927989] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546406059] [to:+13479977843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:13237105646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12185766947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323765] [to:16316035375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179626054] [to:+15862488047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067742] [to:12525642048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735437226] [to:+13123001605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062384831] [to:+15068030088] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703137851] [to:+12138225213] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405505225] [to:+18133084860] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718610] [to:12108878328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086368658] [to:+19088425016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785029031] [to:+15082711766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139352847] [to:17609895457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315789499] [to:+19176634706] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293284541] [to:+12138062338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-20 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879171] [to:18122169380] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095167489] [to:+18583048374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690110] [to:13139995124] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703137851] [to:+12138225213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186877] [to:13472680727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-21 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069653] [to:13474417670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042895] [to:19023060788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784054185] [to:14702659075] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108296397] [to:+13025852137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082494777] [to:+12086202698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-20 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15026090065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17276449068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763411] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13107201440] [to:+18188563051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187687803] [to:+19177373199] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527254443] [to:+17015872231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639534] [to:15593207201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186877] [to:13472680727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14029040433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749674] [to:18124317038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:14044459094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266106] [to:16162580292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097875479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463777548] [to:+13072138391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081665] [to:12253055663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081665] [to:12253055663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14357300730] [to:+14357764913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405172] [to:12263780502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169208459] [to:12167033384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863387] [to:17405259726] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182279519] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558350] [to:14028175766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147032221] [to:+19142067078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028680] [to:12896004396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:18438133708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016346] [to:13305188425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17633137863] [to:+17633015123] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842192718] [to:+16109101409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132924712] [to:+16136048834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852852880] [to:+15852822601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12073338532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797405] [to:19142616925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783348895] [to:+18639492539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464315791] [to:+18582568616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:16602044162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318715526] [to:+16317732442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132924712] [to:+16136048834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318103] [to:12314689397] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010555] [to:14189972546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+15146136920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-21 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447590203521] [to:+447451238369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157270534] [to:+13477981686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408941840] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324664] [to:13056847799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659869148] [to:17656674872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146255566] [to:+14387930985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863228966] [to:13526502230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189277922] [to:+14242768071] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028479] [to:18607105579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953178] [to:13303271176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003250201] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058167684] [to:+19729478827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14705355374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612460121] [to:+15612319735] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444212] [to:14782588661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084570304] [to:+14153269665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192302914] [to:+14197767149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879376003] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675963791] [to:+12672473970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911901] [to:14168357802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:18433072967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488184363] [to:+13137690352] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342218302] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033188478] [to:+16034132102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040275] [to:15146215812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899903154] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023452366] [to:+13479139087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13146448014] [to:+13475086490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15189219191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163507] [to:13476781201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632032] [to:18176908414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812793] [to:14437342609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:12404470102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014406081] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129327924] [to:+13479131354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055698936] [to:+16784338263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537525] [to:12293180203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023452366] [to:+13479139087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-20 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209521] [to:+447783910634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562391199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913530] [to:18195780622] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052388403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475287773] [to:+14259845653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364312] [to:+13203737100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023452366] [to:+13479139087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673771866] [to:+17726177451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194604] [to:16462441338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144002437] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587172] [to:14405376966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877547] [to:16478766545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252177104] [to:+12546930199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232432458] [to:+14808428249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009537] [to:17097437519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067232] [to:17656673826] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067232] [to:17656673826] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105542148] [to:+12482160506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162784734] [to:+12162396181] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058489] [to:12687705491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053046039] [to:+18638552186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990710] [to:15595149284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757403796] [to:+12138028221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17403411339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17403411339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808509100] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162768439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19418773079] [to:18606050704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108878328] [to:+12105718610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846292550] [to:+14844893460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045173899] [to:+19046946002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412951] [to:19545152062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318715526] [to:+16317732442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-21 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328425] [to:+447921212920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788089767] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655412167] [to:+12604070963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-20 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702805192] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702805192] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515996711] [to:+19148486395] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927091] [to:15149198162] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927091] [to:15149198162] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13364710040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893295714] [to:+19895334990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145133] [to:16062602893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868670] [to:17049644417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137699355] [to:+16136046021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556725] [to:14072697281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449439] [to:19015048477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272262568] [to:+14049001677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211719] [to:18037956564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:51:[[Image:d6960504-4897-4029-8a03-dde91c05caf5.jpg]].] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065915193] [to:+16784338647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475961776] [to:+13477055154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440692] [to:13365611761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799856381] [to:+12602327080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017927636] [to:+13015699231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865385111] [to:+19175808950] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:18036517401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-20 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220733] [to:+447952760887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14789726510] [to:+19292201155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13479289245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898373] [to:19853870474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546369878] [to:+17542220406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691910] [to:13059101081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482699] [to:16122135155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:19498990988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688235] [to:19179400646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14436238726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806129] [to:17053217805] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705979419] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133841582] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175972328] [to:+15129525871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242070127] [to:+12672777539] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107904776] [to:+15617664568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433260398] [to:+14437204329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623218] [to:15304189540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145427209] [to:+13476670765] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857142596] [to:+15852822090] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886856] [to:+13479196689] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029867] [to:14182624495] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035899640] [to:+12408924624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324664] [to:13056847799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19794927425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047194] [to:16473605839] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220928] [to:18457647100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14015001574] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052091787] [to:+12264559397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753386] [to:18606045947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177199788] [to:+19172669055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104895576] [to:+13012311218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149982618] [to:+15147004174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833423] [to:12406022944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-21 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737911] [to:16109724813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545262633] [to:+19545195852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18635291008] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018934518] [to:18016033105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003FB0301] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202561] [to:18136507597] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305599620] [to:+12162396428] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800428] [to:16317903560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023042910] [to:+18678883952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086490] [to:13146448014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562031898] [to:+15103358864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942127] [to:15143476271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016269299] [to:+13478085314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:19096783982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:14846397892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806122062] [to:+15415393157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:19059646444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718610] [to:12108878328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990710] [to:12168208270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146146] [to:13374011797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406799632] [to:+13477866489] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607105579] [to:+13478028479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024596] [to:17786798072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041339] [to:12403517460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818895016] [to:+12816035843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135267193] [to:+13479789754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702674674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305188425] [to:+14123016346] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329940684] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-21 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447908505732] [to:+447520621978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003520201] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18146886102] [to:+13479131945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788018] [to:19102283197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182908946] [to:+16513337215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16024233422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479543387] [to:19185686362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239429] [to:15594309294] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455721] [to:16614528765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641969] [to:+14387925967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805317] [to:19059125689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501377] [to:13218775842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063697352] [to:+17726175742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562031898] [to:+15103358864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476675630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164670131] [to:+14402526893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231696] [to:19783775263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18036623951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003FB0302] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164734] [to:19197061862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568361] [to:17656373001] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15408941840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606331229] [to:+12604071128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-10 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370484] [to:14166667708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14087712941] [to:+16503002981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-20 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447908505732] [to:+447520621978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003520202] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124317038] [to:+13477749674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753386] [to:18606045947] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027708407] [to:+12407435950] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587493] [to:16084158205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12766204045] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009407] [to:13174809278] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147104] [to:12035090412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324664] [to:13056847799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403624093] [to:+12408924558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569623] [to:18768691050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14705355374] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-20 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206467] [to:+16475569567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794929694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16164200201] [to:16168022605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773696] [to:17812645721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16103316669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940075] [to:19125800142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12082203204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003FB0303] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613191640] [to:+18328025146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144294070] [to:+14706734383] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218775842] [to:+18326501377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-21 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708824527] [to:+19174094422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139995124] [to:+13137690110] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+13122756194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17096915790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:16785864582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916709] [to:13526135324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414127119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234566670] [to:+12137698183] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632032] [to:18176908414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524573956] [to:+15072626584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17175047309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807996368] [to:+16025528762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568838] [to:16608888357] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785029031] [to:+15082711766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068511713] [to:+16474912440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047719088] [to:+16692252166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:15879376003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846292550] [to:+14844893460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501377] [to:13218775842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12169316352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342080626] [to:+12132957690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552186] [to:13053046039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031277] [to:19022102429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12122808288] [to:+13219993719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205747] [to:14438337690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063697352] [to:+17726175742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-10 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139663706] [to:+18133208742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524199] [to:12102197518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785029031] [to:+15082711766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19705762290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169281003] [to:+13479789403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262461848] [to:+12267795024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982582] [to:+18639493073] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063583] [to:18603062605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143803337] [to:+14146007646] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195926884] [to:+16139093088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267903435] [to:17097301768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14123154480] [to:+17248035648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070984] [to:12602436794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512689] [to:17573865423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18195984551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878502] [to:19367186210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077817252] [to:+13218328328] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193849700] [to:+12262415829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836028] [to:19063736262] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993895] [to:14077975237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17785336260] [to:+17784030941] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479286298] [to:+19177227118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14014406081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502994] [to:13107349795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093337845] [to:+13477866042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658838] [to:13476666411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:16477944370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132340876] [to:+14132736853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742019262] [to:+13123009902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625442675] [to:+13219990725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12894420599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17062472305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189878483] [to:+16784338606] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028697] [to:13049923540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338668] [to:16789945173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778009] [to:19206647902] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326407070] [to:+17323774919] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526502230] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074914855] [to:+17739433766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049644417] [to:+14242868670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086448325] [to:+19086625523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315789499] [to:+19176634706] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610502] [to:12705359013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198309939] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139663706] [to:+18133208742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075006] [to:16137000713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-21 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223899] [to:+447759055445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023507018] [to:+13053406115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122169380] [to:+14157879171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16032900556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12295069504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020351] [to:19895338768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803708] [to:17869303404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162021985] [to:+15613165312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088188411] [to:+14087135769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056399] [to:18178846559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004173] [to:19022107129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14199085408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048910042] [to:+17605895066] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833423] [to:18049394156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136714173] [to:+14357764699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990189] [to:17064958790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042512021] [to:+16264278939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531877] [to:18438339011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15133841582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198165661] [to:+18194140749] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:15194366598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136246677] [to:+12482068454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632580554] [to:+18638555944] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313344939] [to:+19318967326] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:16785429314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228218] [to:17349265964] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228218] [to:17349265964] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102799] [to:14439921590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14349411550] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391636] [to:13029437524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-20 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15025449802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142739] [to:19543933194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804094] [to:18024423436] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178176041] [to:+13474340108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:15735544981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022330148] [to:+19027046396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816388] [to:18124804716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822314426] [to:17579556675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407191] [to:12263472684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18509699469] [to:+19149220005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476323781] [to:+16477997864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743004] [to:12674144502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145516241] [to:+12399000312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108878328] [to:+12105718610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025469608] [to:+16233839291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022038496] [to:+14692708568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076168092] [to:+18724003666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307234222] [to:+12342312223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074587759] [to:+16465472949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488752199] [to:+15862488304] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088643319] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488752199] [to:+15862488304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003350201] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13103479953] [to:+13234268377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003250202] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192302914] [to:+14197404856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316715371] [to:+16317705056] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162103660] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873257311] [to:+15873152364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016357478] [to:+18018903261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054104581] [to:+12136324918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128558577] [to:+16107667831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622662693] [to:+13017786178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347017009] [to:+14242863850] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014043583] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163896061] [to:+16474910678] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515509761] [to:+16572143255] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054104581] [to:+12136324918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18609519186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464179127] [to:19807290261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144907616] [to:+14694147642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016171] [to:16613735105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846199065] [to:+15103226931] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134688018] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803708] [to:17869303404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049311654] [to:+15109482643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-21 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-21 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404378] [to:19102733383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277800] [to:17205040442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-21 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337388] [to:+447950329267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193590654] [to:16194159457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559045] [to:18506070894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368993406] [to:+12604070354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559045] [to:18506070894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:15142424709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893679] [to:17084153363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178057585] [to:+13477989853] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388014893] [to:+15146134401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218039] [to:14172148454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218039] [to:14172148454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218039] [to:14172148454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:15194366598] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053402392] [to:+12898045369] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863543] [to:16107393025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014406081] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033175] [to:12082721708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033175] [to:12082721708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:15053399375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-11 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036075257] [to:+19802620095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-10 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-11 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-11 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877611] [to:13613191957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-10 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-21 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-11 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-20 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470428051] [to:+447451212747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940075] [to:19125800142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974329] [to:18178995249] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050478] [to:17806681246] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896142] [to:12563070954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669387] [to:14437303613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054237976] [to:17012048586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990932] [to:16147331809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:18135037758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16032900556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+17736668852] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040987] [to:12537669119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196661223] [to:+18572405046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055520] [to:16825522610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137699355] [to:+16136046021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13373138342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849861997] [to:14843649976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19012825068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025597] [to:16478257380] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211719] [to:18034458000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:18649234759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-21 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476919816] [to:+13475088548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108006608] [to:+14434530366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897752297] [to:+12892756998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:17575825612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185595312] [to:+15817010080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671455] [to:+18194141171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075912997] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433218] [to:17328161998] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16032738607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774919] [to:17326407070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505975873] [to:+19172833792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372056332] [to:+14242838343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086916819] [to:+17277053734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313469428] [to:+15169341537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571083] [to:15053884254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315799813] [to:+16318127361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12155311937] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403049377] [to:+15165977811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797285] [to:15737184405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14066472363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088188411] [to:+14087135769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13052630241] [to:+17205852780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676432] [to:12704211004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479286298] [to:+19177227118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176435738] [to:+19178778764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323428517] [to:+12819421913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182958] [to:14087675320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033188478] [to:+16034132102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579556675] [to:+16822314426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174801853] [to:+15107756197] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183349887] [to:+13475086862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606045947] [to:+17864753386] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323180684] [to:+17328677570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055804469] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193564475] [to:+19199161438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313469428] [to:+15169341537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647645594] [to:+19148608903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517099565] [to:+14088725733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099549315] [to:+14158535623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173457859] [to:12144061907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:13307768302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571083] [to:15053884254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040823] [to:15099190259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069653] [to:13474417670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196518304] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203609493] [to:+14073371670] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293767100] [to:+18506313606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202561] [to:18136507597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493307] [to:18632414887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391687] [to:15142698920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673771866] [to:+17726177451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:18129468057] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014043583] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15128873788] [to:+16465319358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419838] [to:13344448667] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467503113] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953375] [to:13176029901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049302] [to:13167795872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004021] [to:16787606441] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259039010] [to:+12069469061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139096635] [to:+15102547551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968817] [to:17063517192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-21 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447794563065] [to:+447451208568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120563] [to:16133411694] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056399] [to:18178846559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286569] [to:16072225538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220502] [to:15183849215] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325601] [to:12693404099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-11 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073594] [to:18196653937] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411816] [to:19059260971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218227] [to:17709106580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16032900556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:12262240865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562889006] [to:+12488347563] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475148] [to:19193714695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023504818] [to:+17027794166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750749] [to:+18563126773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003DD0201] -Feb 1 11:31:10 ip-10-0-0-20 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330405] [to:+447881372742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562889006] [to:+12488347563] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14509165562] [to:+14387926697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047744681] [to:+15103225987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003DD0202] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317903560] [to:+16319800428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17027388551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:18433046287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036188] [to:13214314512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:18433046287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16474085798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866489] [to:15406799632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064127569] [to:+19543142542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570299] [to:17785547233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16475224957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18609519186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476871881] [to:+16474992984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138999664] [to:+14388085923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196322681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347259283] [to:+15863315361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802806579] [to:+12139296177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783236288] [to:+16788164717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19414173046] [to:19415381108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058078575] [to:+12262415964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189972546] [to:+17097010555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804880] [to:12705012010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049311654] [to:+15109482643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179413354] [to:+18173632367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842064964] [to:+16465135751] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054947877] [to:+19543141288] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745791] [to:16013316511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:16465468727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145530889] [to:+16467389866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838483] [to:19105805637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17818190720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073723380] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134585990] [to:+13052036714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408941840] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204256319] [to:+17204637858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029569920] [to:+15028049458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652094] [to:19035196556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647707] [to:+18653471819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433293] [to:18482502291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218775842] [to:+18326501377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174708] [to:13525123704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17347966657] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146049] [to:16266651966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12672302919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056205] [to:19023002949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16017148496] [to:16016972865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672691123] [to:+17749921502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-21 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447910856612] [to:+447520629369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156972917] [to:+16149965978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318597] [to:13049511997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152573111] [to:+13478969823] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233336901] [to:+16157779750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+12676860993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274603] [to:19082945931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096783982] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+17736668852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-21 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234587] [to:+447415298006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058700344] [to:+17059101885] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-21 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196518304] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-20 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+15085568988] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703303840] [to:+14049004782] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058700344] [to:+17059101885] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739439253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-21 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143774498] [to:+14388071811] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783654222] [to:+12105718292] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337679] [to:15402362535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033529851] [to:+15873323848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783775263] [to:+19783231696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740528] [to:+13219993617] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12074587759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173310077] [to:+18572190969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12675939343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15064400959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419242] [to:18037164631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641290] [to:12092211169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13619067361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083197] [to:13155762003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015056] [to:19102794841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:19123419378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-20 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221289] [to:+447936996807] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718610] [to:12108878328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152122034] [to:+16467691202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408970] [to:14434176441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249610511] [to:+19173965866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023638165] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849855] [to:19375396878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307141572] [to:+13478029650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833462] [to:15864049826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126167] [to:19028700279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175742] [to:16063697352] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809064949] [to:+19417256662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425021] [to:13862887451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008898] [to:14187203805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-21 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447913304653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477065648] [to:+15168302119] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093402536] [to:+15635497199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192053] [to:19196337589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015306885] [to:+19014449676] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505806932] [to:+17784030467] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195890358] [to:+12267983934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15023036707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632723064] [to:+18133205022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592879] [to:16785700121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149625986] [to:+13309157409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404856] [to:14192302914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12185766947] [to:+12135760721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598277496] [to:+15592232334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047925389] [to:+19802093412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019211072] [to:+19014445131] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143173246] [to:+18312887941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:15703918977] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147552321] [to:+14387927527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733933730] [to:+19734466392] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13302062206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081774] [to:18642056698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012601] [to:12085910056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704653201] [to:+13053400604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023068171] [to:+19027062781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376612] [to:15405334188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14068604364] [to:+13474340704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137850753] [to:+18133201485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:14849196948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046396] [to:19022330148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046682860] [to:+18572193955] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12899219580] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15598645305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16505497248] [to:+18638555477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437689115] [to:+14242769430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042228844] [to:+12139215192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:12023507018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:19096783982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016974147] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040620] [to:+14072681839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315049] [to:18154098623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388212772] [to:+14506391347] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259207] [to:12073413079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18026835973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345321] [to:18435351873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824258] [to:15857470199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314349] [to:13045516348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653612836] [to:+13478968687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109138235] [to:+14433453887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198088680] [to:+19199163161] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169986673] [to:+17162791271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064281208] [to:+13866017605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14436238726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093515] [to:19173641619] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063807277] [to:+15068041762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833462] [to:15864049826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232212402] [to:+14808427768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795788] [to:17578121904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197027808] [to:+12264553109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12162355858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049923540] [to:+12138028697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556822] [to:17409739257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472923462] [to:+19177374643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163443158] [to:+14242769833] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479286298] [to:+19177227118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573860117] [to:+19298413856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133411694] [to:+16139120563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034644452] [to:+13019179497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819839821] [to:+15817001303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643998422] [to:+15752913631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772481] [to:16318297925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642213651] [to:+16475569075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717610] [to:14387637760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176009694] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696294938] [to:19157609232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14159649617] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692252597] [to:15706406741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767563] [to:14192028422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402347] [to:14046804097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105988196] [to:+14158253582] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552521] [to:19313344545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15093883961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12155311937] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073091791] [to:+13024391877] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:14388968753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546540578] [to:+17279986953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12899903154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419134931] [to:+19717778120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071128] [to:12606331229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044501034] [to:+17472338778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+17736668852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15856356246] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388765506] [to:+18193034468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578032461] [to:+17572969647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127106602] [to:+12138737072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233308744] [to:+15612400727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212078] [to:16464923961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013238691] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019967093] [to:+15204335323] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167795872] [to:+15028049302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16418402744] [to:+15154438476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082146] [to:18137700012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148145] [to:+16467019791] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926327] [to:16016049597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13853681644] [to:+17027184773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785860145] [to:14078448257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928081] [to:13062164573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476937118] [to:+17185042396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009902] [to:15742019262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524199] [to:12107879729] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204833] [to:14438212450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-21 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036628790] [to:15713500483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288063] [to:19173794209] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029297440] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315380847] [to:+13309157452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19129968510] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13023638165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148175636] [to:+13477749267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414127119] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144958] [to:13344358754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447834537380] [to:+17027579477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-20 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046735166] [to:+17702005515] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14175543047] [to:+14158909102] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408204816] [to:+12138737037] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185562] [to:19292399668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815510] [to:14199535103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157219] [to:13305500383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600647] [to:15023452443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846149] [to:17329840777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706165190] [to:+14049001808] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552521] [to:19313344545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588518] [to:14402259997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406225] [to:13165587051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659190013] [to:+18653473100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009128] [to:17403308041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735651] [to:18603871735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137699355] [to:+16136046021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163224574] [to:+12167990936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491414] [to:16084950015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146541] [to:14696520923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023042910] [to:+18678883952] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:14388968753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15059344950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785700121] [to:+19172592879] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:12404606889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146255566] [to:+14387930985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477721187] [to:+12264555781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688235] [to:19179400646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13099486855] [to:+16269403932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252098762] [to:+13609727400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408941840] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-10 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152071581] [to:+12626481623] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12299475043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204652] [to:14434671827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652501633] [to:+19175805157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064247086] [to:+15068001084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002949] [to:+19027056205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308158383] [to:+12242140370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F40201] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806850417] [to:+14804393814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679533] [to:17275058105] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613191957] [to:+18329877611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-20 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003666] [to:12076168092] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444212] [to:14782588661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771579] [to:12132745579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495596] [to:18146739039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167106452] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164504258] [to:+16474941620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-10 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323228613] [to:+19038652782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-21 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17135883364] [to:15125694468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349411550] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300847] [to:17657171409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195780622] [to:+16474913530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107714559] [to:+14023874028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044459094] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:16099709995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002584] [to:18157864518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592660] [to:19128509829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108878328] [to:+12105718610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025597] [to:16478257380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636056361] [to:+18036023997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405895] [to:15595725516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440388] [to:13364977645] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F40202] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15094312831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635055] [to:13472668091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833462] [to:15864049826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769833] [to:18163443158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693579997] [to:+12692808141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162627425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015039957] [to:+12404077368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032E0501] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019495703] [to:+19014448280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500032E0502] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12707902652] [to:+12709849485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703187691] [to:+14703334052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806850417] [to:+14804393814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174880111] [to:+19715123406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0503] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19129968510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:18063329479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997439] [to:19143279423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789763] [to:18033207621] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433173781] [to:+19292200741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054168812] [to:+14692053160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614724275] [to:+16614024953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:17272280320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204103303] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:16472338566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15309170237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-21 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406799632] [to:+13477866489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368611] [to:17047740519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18704768400] [to:+13214063587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408970] [to:14105961313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164198350] [to:+16477997381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005349] [to:14187176328] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005349] [to:14187176328] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911502] [to:14165770210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049491] [to:15022247964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022104336] [to:+19028019375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419727] [to:14086242778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109600793] [to:+12136300211] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777147] [to:12704073829] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632047] [to:18452158691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303271176] [to:+12132953178] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019078860] [to:+13214067622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15028075081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148142982] [to:+16136042254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004173] [to:19022107129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19257592737] [to:+19252382941] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0504] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879171] [to:18122169380] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879171] [to:18122169380] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898500] [to:19197572850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14344773817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777011] [to:18599925301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:17605321481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032E0505] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013079396] [to:+19018427013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:17323418720] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543141634] [to:19546382728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049512979] [to:+19727503297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149028230] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046008210] [to:+12813066520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079409] [to:14383934025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138888825] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167106452] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853694791] [to:+19199166460] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735756] [to:17606412352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387930985] [to:15146255566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735756] [to:17606412352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377781] [to:13343245390] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023042910] [to:+18678883952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886937] [to:+13866012502] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030026] [to:15062604251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755123] [to:17314381630] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-21 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447932456870] [to:+447451232197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15408941840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558308] [to:19802489898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407173722] [to:+17279987517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606331229] [to:+12604071128] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19418225207] [to:+19412642744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796507] [to:15678762223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-20 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451223248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040546] [to:15064353655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:14232412191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:16412181296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-21 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447470428051] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473563] [to:19313193388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634572] [to:18174957841] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143481] [to:18039682659] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063409917] [to:+14703336450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-10 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073123703] [to:+14073372611] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368611] [to:17047740519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630241] [to:17743198072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125263] [to:18563049642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163171627] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691202] [to:13152122034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067511298] [to:+14703334844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136714173] [to:+14357764699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:15802807378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042512021] [to:+16264278939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968425] [to:17577399113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329940684] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467611] [to:17085132331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17169986673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252098762] [to:+13609727400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-20 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125395508] [to:+17605899166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099044260] [to:+12132951856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480916] [to:17165102121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025214889] [to:+17123826304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562250206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846149] [to:17329840777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204103303] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414127119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:16785446379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625942] [to:19375737998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563070954] [to:+17605896142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193461] [to:17249317470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037035967] [to:+15617664601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125690989] [to:+13053405673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678448451] [to:+12672732500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19104747051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034857] [to:17248413143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988624] [to:19723428822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249686501] [to:+19705481416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807290261] [to:+16464179127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743004] [to:12157889272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338466] [to:17705405057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19418077578] [to:+16467691064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783821831] [to:+16784123364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065940637] [to:+12138613581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122783086] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562889006] [to:+12488347563] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362440027] [to:+13366450923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822395852] [to:+19729470297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049557515] [to:+12048080115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17747668815] [to:+17748554504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063294862] [to:+14703336423] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344193182] [to:+15103226892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804836325] [to:+12132952298] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023036707] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199790] [to:17013013331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872209285] [to:+15873151836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733547921] [to:+17736669416] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997439] [to:19143279423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-21 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-11 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954055] [to:18159557097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327080] [to:19799856381] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318969221] [to:+19292689520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798065] [to:16143956724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798065] [to:16143956724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017100254] [to:+15624560042] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672699789] [to:+12156667437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623721461] [to:+15092622889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478740523] [to:+16475039259] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697322420] [to:+19705481625] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056079] [to:19025410220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313067612] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685041] [to:13043088973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554989] [to:17404667767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805317] [to:15194100809] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17169986673] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017034] [to:19105840891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477800024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16139791977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145560990] [to:+13479788088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14028060494] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732068] [to:19048944225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025770626] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408970] [to:14432770842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-20 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447946329649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108006608] [to:+14434530366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129525650] [to:17735712928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-10 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-10 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-10 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-10 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:12055698936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-21 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:FACEBOOK] [to:+447520671851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-10 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475309176] [to:+16477995727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125690989] [to:+13053405673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-10 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306223924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041339] [to:12403517460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014381539] [to:+12132957726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485269] [to:16822274428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145912646] [to:+14506391603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002584] [to:18157864518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019967093] [to:+15204335323] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419408262] [to:+15412488292] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17176005780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17176005780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072808441] [to:+14072681387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035628899] [to:+16034138121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147787591] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190402] [to:12396926889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141435] [to:18192150964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338466] [to:17705405057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052347] [to:14692458558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068454] [to:13136246677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404592022] [to:+14439737477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-0-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219990725] [to:16625442675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182612090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-0-20 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447936996807] [to:+447451221289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:01 ip-10-0-0-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228350] [to:18182922234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193565] [to:16179523959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480916] [to:17165102121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-10 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162019] [to:14076162393] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691791] [to:17656318246] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533736] [to:12159087885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086820] [to:12174916362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-11 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287682259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+14388042745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690352] [to:12488184363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028697] [to:13049923540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-11 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133012490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16468740220] [to:+17185043084] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485745076] [to:+12138024938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-10 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530689] [to:18709263273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125084545] [to:+19142793085] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604315364] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364649] [to:+18108527927] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438616] [to:16038457642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715463] [to:14138835916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127267] [to:17863267205] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485269] [to:16822274428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227076] [to:14802497092] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592660] [to:19128509829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347092] [to:17734127790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614052283] [to:15856155969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124141010] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049962986] [to:+16042594982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133012490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234286] [to:17208099109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355091] [to:12602208963] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042217861] [to:+18046245890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635622400] [to:12707480872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:14059487068] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178613817] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-20 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231696] [to:19783775263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044151814] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444212] [to:14782588661] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066480] [to:12403839152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183849215] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859445472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467038751] [to:+14692054216] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149724698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198401110] [to:+19084095118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034334] [to:17246915536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:14044459094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968687] [to:18653612836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328177901] [to:+18328045567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17814357417] [to:18046051243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015039957] [to:+12404077368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817001303] [to:15819839821] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995561] [to:18122052926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997439] [to:18452406067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274103653] [to:+12162396947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419242] [to:18037164631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338466] [to:17705405057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018044] [to:14096788622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062049565] [to:+13475088975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438586601] [to:+18134301810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778122] [to:16462621876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402738934] [to:+12408924193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533914850] [to:+15635387891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323429] [to:19152176788] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550542] [to:12602371283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087542238] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868173] [to:18046848639] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377915] [to:15026000170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548231] [to:18322967692] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346206041] [to:+18133204623] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614052283] [to:15856155969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438252927] [to:+16466875718] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892423471] [to:+16474919852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094930] [to:17034542605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346206041] [to:+18133204623] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049140040] [to:+19162455494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334574] [to:19898200603] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162048091] [to:+16163266488] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493541] [to:19102472261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493541] [to:19102472261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-21 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040124] [to:19293268587] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040124] [to:19293268587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12258032166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:16099709995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045332512] [to:+17408797130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879648] [to:14173199941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15029746306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:13235930220] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17607157532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805317] [to:15194100809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129126734] [to:+15129527399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17727776680] [to:+17726177397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434308348] [to:+12138023146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174880111] [to:+19715123406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14165230059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048086830] [to:12046204482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739000489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14842802492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022505762] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B40201] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072225538] [to:+19142286569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145805754] [to:+16145171542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866489] [to:15406799632] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857649568] [to:+18639491152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315380847] [to:+13309157452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034969947] [to:+15034868481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306220352] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690352] [to:12488184363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167106452] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503231585] [to:+13478022507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127267] [to:17863267205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319801005] [to:16314137101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228350] [to:18182922234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625961554] [to:+18629551748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328177901] [to:+18328045567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-20 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520671773] [to:+447513266963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498949] [to:16194514605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:12108158010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024713849] [to:+19027058450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16104251091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220671] [to:17814292452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B40202] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428486] [to:19045087529] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864049826] [to:+12482833462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642213651] [to:+16475569075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500321] [to:14842738654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077253] [to:15147962954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899441219] [to:+19894550451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583462] [to:+19148291948] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291917] [to:+18046244676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941364] [to:16787918579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243262] [to:18047749243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053047682] [to:+18637347395] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:12766907826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596348] [to:15737198808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187690] [to:19143469031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136037277] [to:+17348228922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800847] [to:13018148092] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049302] [to:13167795872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967643] [to:15136680247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058114] [to:19024495150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578481] [to:16202529753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013235419] [to:+13478968933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195691459] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068884669] [to:+15068042016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483085810] [to:+19893147529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14028060494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252628680] [to:+18326502532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:17059803487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025703924] [to:+13214067026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064270288] [to:+15068018715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558624] [to:19372417463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133285333] [to:+12065827532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049962986] [to:+16042594982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716073] [to:+14388097045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313469428] [to:+15169341537] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066184229] [to:+14706734278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833352] [to:14092218878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048441763] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17814357417] [to:18046051243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092407] [to:19028403124] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502994] [to:13107349795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-21 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849218] [to:12703702023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085910056] [to:+12085012601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274103653] [to:+12162396947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569427] [to:17068332943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588681] [to:14408227659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065292176] [to:+13064000830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336790] [to:18016289466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17163812202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028128005] [to:+17027181583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178182104] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652206426] [to:+14155212594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109087591] [to:+19715129409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677049] [to:18039407512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154556] [to:+18572326657] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13344750095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143476271] [to:+16474942127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801272] [to:16469307710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-20 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122783086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078585694] [to:+19148208607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995178] [to:12294122613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:16175996264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14034041819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:16789951389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:14388968753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734737] [to:17063150711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697736] [to:17573271619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697736] [to:17573271619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384925370] [to:+14387943046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042995346] [to:+12048086781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12066296985] [to:14258304530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099549315] [to:+14158535623] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-20 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447871769353] [to:+447520624741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174018905] [to:+12138024728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239305882] [to:+15109482557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074563373] [to:+14072160331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089499066] [to:+19142795622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12185562514] [to:+12182031761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995561] [to:18122052926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18108756857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168880279] [to:+16475038918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202336] [to:14439382897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239035827] [to:+12134786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472076314] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075103] [to:15147756718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452757515] [to:+18453632660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:16465468727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231875] [to:19784232101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19025770626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910959] [to:16125999285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024938] [to:12485745076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490632] [to:19044050332] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12699088367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077253] [to:15147962954] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537143] [to:12095563432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:16142547863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025469608] [to:+16233839291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784991487] [to:+17747288291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:17059198455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822314426] [to:17579556675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15033587116] [to:+19093405810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526310668] [to:+17866515349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995561] [to:18122052926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483792] [to:15055156819] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-20 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:15803401358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126999584] [to:+18127777164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898341359] [to:+12897790330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-10 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742573414] [to:+14017214303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864049826] [to:+12482833462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154853] [to:+15125759169] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801272] [to:16469307710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695967] [to:+17278602712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18453009656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316083086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092407] [to:19028042248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:13473728981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282731] [to:+13479139204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:14232412191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087542238] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E80201] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168880279] [to:+16475038918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064270288] [to:+15068018715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774997] [to:+15672506460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347966657] [to:+17348211034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145797311] [to:+16149964609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495596] [to:18146739039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192706072] [to:+14197316244] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17378880305] [to:+12148146759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740343] [to:+17727747220] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554504] [to:17747668815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025703924] [to:+13214067026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-20 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522853959] [to:+19084095570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315715] [to:18502128799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-20 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188580253] [to:+15146006841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898341359] [to:+12897790330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408972] [to:19042145571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642469] [to:19412646874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735624403] [to:+14692058083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324384756] [to:+17636849493] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159087885] [to:+12677533736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-21 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:17065348549] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023220179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671554] [to:+16474952180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488184363] [to:+13137690352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472680727] [to:+13475186877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805279821] [to:+15874084503] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15094312831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317903560] [to:+16319800428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-20 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921212920] [to:+447418328425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003090201] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125766] [to:18562498406] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568526] [to:17068290774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142709761] [to:+18573001694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047570] [to:14352298521] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15066261286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:18129878185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406799632] [to:+13477866489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782358574] [to:+13479787388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625451] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049511997] [to:+15612318597] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133285333] [to:+12065827532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347966657] [to:+17348211034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040332] [to:+13866013212] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179798639] [to:+12606337387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737327374] [to:+17736690278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044359809] [to:+17073464855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022247964] [to:+15028049491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-20 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921212920] [to:+447418328425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003090202] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171616] [to:12283421276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-20 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479543399] [to:15059858537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625451] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604816187] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626683669] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027683] [to:17059872130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417077053] [to:+19715129131] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136332885] [to:+16042652707] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379358191] [to:+13479066175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129409] [to:16109087591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328761586] [to:+18572326532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019078860] [to:+13214067622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200025] [to:18593171922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733804145] [to:+12019956207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16519832330] [to:+16125021383] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417077053] [to:+19715129131] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14349411550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485181] [to:+12533361652] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449068] [to:+17273629381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16065256226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060328] [to:14027081683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19718087277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389866] [to:18145530889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668623] [to:13603531209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699187] [to:17175821148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193201760] [to:+12264555747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425021] [to:13862887451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562250206] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672354] [to:+18194141041] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624733416] [to:15308285446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-20 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447759127554] [to:+447418322841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550991] [to:14109467326] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477190423] [to:+12264559572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403981777] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011152] [to:18193290864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474073950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739436375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17162430548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988461] [to:13044398860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202920094] [to:+15094360132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220420] [to:18135036892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:15127341450] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085473] [to:17174493103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011152] [to:18193290864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17188770336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048397175] [to:+14158534719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307379050] [to:+15103405304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067511298] [to:+14703334844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097823854] [to:+12133550267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012601] [to:12085910056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:19162287340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523483090] [to:+17863847953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835132] [to:14435340556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087449] [to:15404561205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377034] [to:13309578968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15309214423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149498517] [to:+18133087021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432679742] [to:+14693016538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048397175] [to:+14158534719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479943627] [to:+16474989552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539485] [to:17249688365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408713083] [to:+19199161402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:16099709995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109060254] [to:+16109105199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057320] [to:15674298784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704073829] [to:+18597777147] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139124] [to:12039063694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297458] [to:12133328802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108756857] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:13473728981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062343537] [to:+12064008438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096368249] [to:+19513070312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792809327] [to:+19038486852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455494] [to:15049140040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602050306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078529128] [to:+13477146344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312121943] [to:+17605895075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256412] [to:18633262894] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-20 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622290] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019495703] [to:+19014448280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022463590] [to:+12026609604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568402] [to:13472643022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068454] [to:13136246677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387637760] [to:+12262717610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527276] [to:18109085205] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199034356] [to:+12264554486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064002901] [to:13063172522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-20 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212614] [to:+447879287611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17149099501] [to:+17142612122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103942234] [to:+18102218107] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677917] [to:16788522384] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054431005] [to:+12132896519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028778509] [to:+19027021856] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E00202] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12345214860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569108] [to:15089584440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898200603] [to:+19895334574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-21 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063050921] [to:+16474910796] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14232187162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:15144736560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375737998] [to:+19086625942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184510597] [to:+19725285637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16397394786] [to:16393178145] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358075] [to:13306973191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343819] [to:13197435634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739747] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136680247] [to:+13478967643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049288000] [to:+17786530249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359768] [to:15084156096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644943346] [to:+18645010244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13303385462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042633606] [to:+13866015760] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852213] [to:16065385392] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243290] [to:18045867462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145797311] [to:+16149964609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:18058863942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176344399] [to:+16177065938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018148092] [to:+16319800847] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:13159559784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411883] [to:17708662405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17758150576] [to:+17027794235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13157663928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327557] [to:16822024161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345360069] [to:+13479192759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:15632750247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077054831] [to:+19542993017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138999664] [to:+16474911719] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595160] [to:18605388049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:13236475249] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653156640] [to:+18653471745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343894955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-20 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15129643278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162746] [to:13473650424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575092943] [to:+18046243425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673536159] [to:+12134547191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023148711] [to:+12264559689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733132642] [to:13237148364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16024233422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552160] [to:12393400246] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791049] [to:17165171597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:12089896657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597435438] [to:+19177376463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12695489466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-21 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447442498513] [to:+447451231542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135754417] [to:+14132715098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-11 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236017] [to:18142053201] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364650983] [to:+13367018003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697360] [to:19892549622] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302750602] [to:+13479376498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854091610] [to:+15852822875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422431] [to:12816903450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-21 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077054831] [to:+19542993017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056285192] [to:+14053005446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602518044] [to:+12138023432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812356126] [to:+14387928151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806681246] [to:+15874050478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018715] [to:15064270288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630241] [to:17743198072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305500383] [to:+13309157219] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418451] [to:19057146165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-10 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-10 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145014997] [to:+14388077274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244676] [to:18047291917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501895] [to:18327989706] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392472859] [to:+14804391493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791215] [to:17168044239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054325973] [to:+12897681629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E90201] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202336] [to:14439382897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316087786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566902367] [to:+13477735934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082394] [to:16312999114] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787538120] [to:+19292200259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196661223] [to:+18572405046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16478364797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013316511] [to:+17604745791] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093131261] [to:+18572401714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488500767] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128416419] [to:+17248035714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147959756] [to:+16149963176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102254569] [to:+13475088429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692718965] [to:+13479139597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096368249] [to:+19513070312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E80202] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076168092] [to:+18724003666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875856505] [to:+16474914647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049159138] [to:+15086236605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196518304] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E00201] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788919017] [to:+18639493108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894342012] [to:+16139096630] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-20 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217153] [to:+447951546750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313383777] [to:+18572194980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263472684] [to:+12262407191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12504639948] [to:+15873157827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708566065] [to:+15103228925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311857] [to:+19142817867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808131] [to:18102213639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167056329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285145827] [to:+17194264412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455494] [to:19165819273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889181] [to:12522029780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:18058863942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19713400526] [to:+19715124690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712402556] [to:+19715129713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238367343] [to:+17346669188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18183035186] [to:+12135296115] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138469] [to:12049608674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673536159] [to:+12134547191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-20 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054100129] [to:+18054202886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153038262] [to:+12676076700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-21 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405715] [to:19418794942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-21 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447517021894] [to:+447418322588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699187] [to:17172268755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319801005] [to:16314137101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E90202] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433173781] [to:+12148149460] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988461] [to:13044398860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105199] [to:16109060254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146215812] [to:+14388040275] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539485] [to:17249688365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173817976] [to:15806473355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16052318797] [to:16059063716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678408] [to:12485336968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468164] [to:17733019741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995785] [to:12178214042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189878483] [to:+16784338606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925733] [to:13065377394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:17788914981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:17542346724] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708566065] [to:+15103228925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432012] [to:19312529796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745887] [to:14104767809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025270] [to:15137466572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-11 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501895] [to:18327989706] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-10 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016443769] [to:+13479196512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500321] [to:17039697411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479298161] [to:+16477997337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665240] [to:15619454014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017626] [to:19043004017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14154661453] [to:15597595767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173983426] [to:+15207278595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:18033619481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147206] [to:12489337191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:18123916922] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742804943] [to:+15084168949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-10 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035979559] [to:+15873231529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654052219] [to:+15103358017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168787116] [to:+14696293943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852221487] [to:+19172593703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800066] [to:15754418638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041787] [to:15063270545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-20 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043653320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082219] [to:14045799770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311857] [to:+19142817867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218746] [to:18109695234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093515] [to:19173641619] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-21 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169302126] [to:+17162793442] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063558] [to:17044495327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:12674442950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787221317] [to:+16784055246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18452839237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549440] [to:12507318176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552160] [to:12393400246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14036137530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439264] [to:13469327057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785510520] [to:+19785335083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:15877842073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852641267] [to:+19852735930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322390245] [to:+13308503633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681629] [to:19054325973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788302] [to:19176788352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255386] [to:+12482160111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234402035] [to:+14237777919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705362] [to:18314068208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026049260] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082163766] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036266356] [to:+18033104541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152122034] [to:+16467691202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234587351] [to:+19252397176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144002437] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:18019806738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526310668] [to:+17866515349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15516664130] [to:15513583243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034109337] [to:+14018677604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852213] [to:16065385392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472076314] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142589] [to:18599828018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077846] [to:12344106218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15302156451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:06 ip-10-0-64-11 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:06 ip-10-0-64-10 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610782] [to:18326612282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:06 ip-10-0-64-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485068] [to:17577483850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15059344950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874901] [to:17856390625] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:17206628486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:13475535657] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15188579422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:13475535657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:17206628486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19292878790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:16465314335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:15034217955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:15034217955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17064964060] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:18323961960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19712823141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550320] [to:12266008851] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286066648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233272299] [to:+14242868561] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003F30202] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12537782181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326612282] [to:+19172610782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-20 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13138264243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020014] [to:15819904772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19292878790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:16465314335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12537782181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:18323961960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19712823141] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16579991968] [to:+17185043102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804010] [to:12548337646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319251] [to:+15852825057] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038867] [to:+18597777450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433605487] [to:+13366452191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286066648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375737998] [to:+19086625942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854153162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286066648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:12013206109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605388049] [to:+19172595160] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063708066] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477851137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:16465523794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082163766] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473563] [to:19315293277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691242] [to:17314606449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066458131] [to:+15068039557] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833626] [to:17573390002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-21 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324918] [to:12054104581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324918] [to:12054104581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393404917] [to:+17726177663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:15125400439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421913] [to:18323428517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045867462] [to:+18046243290] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432991] [to:17123550833] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024957920] [to:+19028019438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601664] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160331] [to:14074563373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807101] [to:13153989359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783849] [to:12293155472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-21 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205096657] [to:+13478021316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173611016] [to:+17604743556] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012689667] [to:+12405732298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787918579] [to:+16783941364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433605487] [to:+13366452191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157688883] [to:+18563125638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179129657] [to:+19148291904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517969752] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776942] [to:16084386371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327577] [to:12607156227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049140040] [to:+19162455494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-21 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18198060986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433707034] [to:+14438550176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776942] [to:16084386371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142863662] [to:+16149963273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326407070] [to:+17323774919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155165632] [to:+19175805419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968802] [to:17065371886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322846255] [to:+17322582035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951716] [to:16472858749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123941] [to:17705805095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018003] [to:13364650983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031644] [to:13085366145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087542238] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708362193] [to:+13867423110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573341715] [to:+17185048968] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038877] [to:15069626144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703579038] [to:+15703977759] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145274] [to:14197905439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440124] [to:15182098749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-21 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065143099] [to:+13069932468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:13026902725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:13239150620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-11 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806473355] [to:+18173817976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025597] [to:16478257380] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178808961] [to:+19177248635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194507976] [to:13474406890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192761957] [to:+13476903451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708362193] [to:+13867423110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866291095] [to:+15103402043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] peiseubug injeungkodeu-ibnida] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455915253] [to:+17323058195] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-21 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018425205] [to:19016075640] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921165] [to:+13479193595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349411550] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665240] [to:15619454014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:17542346724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022505762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-21 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232197] [to:+447932456870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024957920] [to:+19028019438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999610] [to:19287077836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968590] [to:19312134313] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046380458] [to:19125714405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-11 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044359809] [to:+17073464855] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920296] [to:13026041670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503073] [to:13372221292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-20 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977353] [to:18627552642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004811] [to:17097700643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195797787] [to:+12138027376] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17027471251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773696] [to:17812645721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103942234] [to:+18102218107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774919] [to:17326407070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040270] [to:+16612285598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134473421] [to:+18133206548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946133] [to:12017060296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289800959] [to:+17542220139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179523959] [to:+16172193565] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408420] [to:12269230052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411120] [to:15196585760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144736560] [to:+16477999724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326505871] [to:16305389692] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070699] [to:+15068041937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:13239150620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102213639] [to:+13475808131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046292158] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18606552881] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019621] [to:12148611470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564608491] [to:+13479139320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139096635] [to:+15102547551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029747530] [to:+12606337115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-10 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19795752997] [to:+17133896065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17063614820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666964] [to:12423959241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-10 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-11 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477944370] [to:+17185043364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:15195691459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162700244] [to:+17187519085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797049] [to:17703569033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12897767723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379774] [to:17122097053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876267] [to:+12894600537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854659343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15022987392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174906475] [to:+15172585136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-10 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617632032] [to:+15612407177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024957920] [to:+19028019438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173817976] [to:15806473355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588929] [to:12166738208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-20 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447511075565] [to:+447418336845] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552160] [to:12393400246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145098787] [to:+18046246465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980132] [to:16475745314] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:15195691459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193592162] [to:16264839370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193288225] [to:+19148609479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334723] [to:19788064899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145561837] [to:+13147868316] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162784734] [to:+12162396181] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:12604661628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:12604661628] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:12604661628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655090807] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019440] [to:12507027337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285145827] [to:+17194264412] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044955572] [to:+14242768508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174018905] [to:+12138024728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044955572] [to:+14242768508] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631978] [to:+14693537786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066458131] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314907179] [to:15163432935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166285087] [to:+13308503616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822090] [to:15857142596] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093652] [to:17049237174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:12488500767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243290] [to:18045867462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849493] [to:18324384756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-21 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673576343] [to:+18133088901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602257330] [to:+12604076922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235350420] [to:+16784342054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527330] [to:15174556825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B10201] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107393025] [to:+17817863543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073295] [to:19854745931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293887] [to:14794381339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473645] [to:18652249503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172151506] [to:+15172527198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438244878] [to:+16602009682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773135] [to:14436948786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773135] [to:14436948786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B10202] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13857770040] [to:18016042084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:15877842073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040265] [to:+18133244599] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:13345400068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194788201] [to:+17727668770] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269900] [to:12073136257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049513633] [to:+19175805719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+12262406722] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213101] [to:13184468793] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627622] [to:19185754694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046380458] [to:19123240947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733804145] [to:+12019956207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-10 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309578968] [to:+13302377034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977303] [to:15707060350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134473421] [to:+18133206548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19052209269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001509] [to:+18584804897] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15513583243] [to:+15516664130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149121326] [to:+15799148364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178833599] [to:+18722258246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613316886] [to:+19789697102] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078600] [to:15149449273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14036137530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077884912] [to:18072218161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603531209] [to:+19172668623] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896810626] [to:+16474918779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703579038] [to:+15703977759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802398503] [to:+15874004867] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175165735] [to:+13479788831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787005] [to:19713205048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787005] [to:19713205048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094519827] [to:+19162908740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691202] [to:13152122034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-20 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447759127554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:16143639364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299778691] [to:+13866015224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833772] [to:14096702168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787005] [to:19713205048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524845421] [to:+14072161130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625942] [to:19375737998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15142589509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145098787] [to:+18046246465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-21 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011152] [to:18192086536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18325715761] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18325715761] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128449932] [to:+19122084463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703579038] [to:+15703977759] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15022987392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925415] [to:14388865640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024079092] [to:+12676076436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383595] [to:17082967664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178995249] [to:+19282974329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023638165] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017384541] [to:+19727503193] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042288518] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416816608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017384541] [to:+19727503193] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196444780] [to:+17027579179] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14028060494] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017384541] [to:+19727503193] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437279] [to:17789268552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138847436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195208337] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159813496] [to:+16158431585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-10 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102213639] [to:+13475808131] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365200944] [to:+16504860086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032251] [to:14122007134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15065021354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139096635] [to:+15102547551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13126612211] [to:+14434530304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037686784] [to:+13473438869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149337292] [to:+16466998945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056620163] [to:+16474911040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185728781] [to:+15184151548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15059344950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262406] [to:12022464931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875960287] [to:+14387941938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:16813130744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143710220] [to:+14387922589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159398057] [to:+13479806844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050201] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022102429] [to:+19027031277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003AB0201] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138264243] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:18019209237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364650983] [to:+13367018003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:15877842073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740400] [to:+15089668796] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199992335] [to:+12264555913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003AB0202] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056517516] [to:+12262416119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-11 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588929] [to:12166738208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-21 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326877] [to:+447908842233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062903216] [to:+13069928524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452839237] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243290] [to:18045867462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623918083] [to:+13477981298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18193522333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029403515] [to:+19027043650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177397] [to:17727776680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:19082163766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234894243] [to:+17727668534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132705787] [to:+18133209716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473815] [to:15042352962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592614] [to:12703319713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785860922] [to:12293100986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167105427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246815626] [to:+14122301956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003050202] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19719018179] [to:+19715129905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854659343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058684408] [to:+18053942254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+15873280388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:12144559782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14036137530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16104053563] [to:+14849869182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18325715761] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508795275] [to:+18506315516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739562] [to:18146443146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152003024] [to:+13477962811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309798448] [to:+13477149419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066015030] [to:+12138225296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262032637] [to:+12262403373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822042] [to:18598665294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500321] [to:14842738654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656025056] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192751888] [to:+14158537710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406890] [to:+13194507976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001489] [to:12078944992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055289374] [to:+17053026099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416816608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348747] [to:18435933168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797504] [to:15183907629] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-21 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520625455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015008810] [to:+15612400803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019284] [to:17097716531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055418212] [to:+12897790711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:19079470430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019211072] [to:+19014445131] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-20 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201877] [to:+447766226951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12545923287] [to:+12547356090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876267] [to:+12894600537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752189248] [to:+13477368550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:17634431892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043653320] [to:+15612319123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466864] [to:17035689815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195691459] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334844] [to:17067511298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304189540] [to:+15303623218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942931] [to:18056219402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012479611] [to:+13476568548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373228161] [to:+12139731971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372401378] [to:+12138023830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322282492] [to:+19199164269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606449] [to:+13477691242] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436353312] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513377109] [to:18657484745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199885145] [to:+12262410257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309798448] [to:+13477149419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-10 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15516664130] [to:15513583243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607156227] [to:+12602327577] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147540090] [to:+14387922065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13025843592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164570614] [to:+15165977792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14028060494] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045867462] [to:+18046243290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145136429] [to:+19142069062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-20 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033120989] [to:+17256661224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473815] [to:15042352962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-20 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14034041819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568441] [to:17173333425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792534] [to:15853313611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148745932] [to:+14693096326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-20 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451230135] [to:+447748395577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398860] [to:+13477988461] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388076740] [to:15142325382] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020435] [to:16037996854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-21 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198276823] [to:+19199166501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-21 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447577995319] [to:+447418338470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059993315] [to:+12897680683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-20 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:12813520927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608908446] [to:+13479199805] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403198168] [to:+14132736690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14349411550] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14028060494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:15195208337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624162263] [to:15626942447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500505] [to:15139047971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137466572] [to:+12138025270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085359] [to:18134474385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795655] [to:18132636043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192700784] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305219] [to:16363585370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058513] [to:19022409499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403056465] [to:+13015699948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027920641] [to:+13479196658] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824360] [to:18482220288] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309798448] [to:+13477149419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202451731] [to:+15204337276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:17576105063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:16783537568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13346722135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862560573] [to:+14197404862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421459] [to:12057175514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-21 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229496] [to:+447708761613] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049318274] [to:+13474863548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202451731] [to:+15204337276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488047] [to:15179626054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293743] [to:18506311314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328904836] [to:+16465470221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703602199] [to:+15703977150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198309939] [to:+18438888321] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174142753] [to:+13473897098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162287340] [to:+15169260917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145797311] [to:+16149964609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233272299] [to:+14242868561] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F30201] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19363911351] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244157073] [to:+12133550131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193288225] [to:+19148609479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187712503] [to:+15104476417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032108617] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055418937] [to:+12262716559] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165899811] [to:+16163266306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566260] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086468961] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185148417] [to:+15874093817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049644417] [to:+14242868670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448153] [to:18763665024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806473355] [to:+18173817976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345309] [to:14048395830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024722644] [to:+14804393573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277908] [to:+13064000236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043812774] [to:+16474912066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17272907582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416615583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253940071] [to:+12133752796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-21 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205586] [to:+447710778243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333956] [to:12508598439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14165547569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566260] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624208708] [to:+14308087405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057146165] [to:+12262418451] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326506389] [to:15124705535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194507976] [to:13474406890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18108756857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146380012] [to:+15817011136] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004782] [to:14703303840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026692] [to:19028777578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324384756] [to:+17636849493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162700244] [to:+17187519085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365808] [to:17862584647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011103] [to:15144169718] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199186] [to:12109884695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787019] [to:14172934275] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005343] [to:16184092936] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231922] [to:12675304029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750813] [to:14404872977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167162825] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005343] [to:16184092936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158909052] [to:13306417725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237188669] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043002470] [to:+18046245528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981741] [to:17656399521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195667713] [to:+12264570094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406628107] [to:+12628886397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064003158] [to:17802740448] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817003403] [to:15819988854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:19022935120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006412] [to:12509370994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138847364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477796773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673019269] [to:+13479377870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-20 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447979697576] [to:+447418326556] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0201] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14255517743] [to:12064969156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14255517743] [to:12064969156] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18324999974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073456916] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016974147] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003666] [to:12076168092] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308005450] [to:+14064043583] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002581] [to:12506157794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610782] [to:18326612282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:18015292208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528574229] [to:+14076336884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207791953] [to:+16503007668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-21 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691242] [to:17314606449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285534640] [to:+18653471723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743004] [to:12674144502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:4:0]q0] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852012210] [to:+13216136700] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-11 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437424059] [to:+13473439330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082645519] [to:+17027476361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849036254] [to:+16465136354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-21 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207905] [to:14845972801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-21 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303274008] [to:+17187519106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17343884302] [to:+19725347359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:19082163766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308429471] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877788730] [to:+15874059665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813070860] [to:+18176121592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:16108091920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479298161] [to:+16477997337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998352] [to:17042180442] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479663193] [to:+19172319709] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852012210] [to:+13216136700] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364560] [to:+16467677613] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063140415] [to:+13069929909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653603896] [to:+14153253111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-20 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094776] [to:14433537304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042204261] [to:+13478999214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023051567] [to:+19027021320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001130] [to:13123154892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:12142648611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038867] [to:+18597777450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338118] [to:16097244866] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001130] [to:13123154892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342054] [to:14235350420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293743] [to:18506311314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896170] [to:12096844649] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376701357] [to:+16465479846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247625741] [to:+17243200495] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877788730] [to:+15874059665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706013187] [to:+15129523364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472283356] [to:+16474963836] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514218018] [to:+12515819878] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228980] [to:+12262410722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312134313] [to:+19318968590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109068796] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195623234] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141719] [to:18195885195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074650] [to:13205151322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025798336] [to:+14692055135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555838] [to:12267552736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244157838] [to:+17248035762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852012210] [to:+13216136700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717174] [to:15199806073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183907629] [to:+18455797504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:12169265304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437424059] [to:+13473439330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788831] [to:17175165735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162952659] [to:+12313778176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123562] [to:+17205907420] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14143863986] [to:13184162588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516865] [to:13365201911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:15046666480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303540953] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228352] [to:12298152567] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19418794942] [to:+13053405715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168208270] [to:+12167990710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12813890332] [to:+15129524048] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-11 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059646444] [to:+12894600533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427904] [to:17079788136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941364] [to:16787918579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16024737420] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292155] [to:524192979236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489337191] [to:+19893147206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612789] [to:18003733411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-20 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239856] [to:+447518062150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146002909] [to:+14152377872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192150964] [to:+18194141435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568847] [to:12252400291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305219] [to:16363453312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218189] [to:19107292554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735341343] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17205692134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025270] [to:15137466572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169174] [to:17178211133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-10 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217793] [to:17402886290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998945] [to:18149337292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C00201] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:13038751343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407149] [to:18452629650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077389282] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370456] [to:13309150640] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201747] [to:15615742966] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-10 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-10 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-10 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-10 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085359] [to:18134034990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17739310863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019824196] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-21 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208480] [to:+447710134432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434036147] [to:16307706949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-21 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18048882578] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120469] [to:16135323859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18137850753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120469] [to:16135323859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011923071000000] [to:+17409102153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697447] [to:19895512166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373199] [to:15184100421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479979600] [to:17578396966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393400246] [to:+18638552160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16133273316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058583] [to:15713352155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286906] [to:15402805268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143469031] [to:+13475187690] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003C00202] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698746403] [to:19405941711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017593] [to:17246788825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416762971] [to:+19417256451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203193291] [to:+12627776824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19042288518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12019498408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006412] [to:12509370994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14034041819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783343313] [to:+13479190294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159582] [to:18326660674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-10 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412834] [to:14043241726] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876267] [to:+12894600537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:15195691459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274603] [to:19082945931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17022018991] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019621] [to:12148611470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173817976] [to:15806473355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026902725] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148379468] [to:+18326503345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738613427] [to:+19739638923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493710] [to:13347181897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024453188] [to:+13479193592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183306265] [to:+15817000783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14325286267] [to:+12547356029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12407050211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098584121] [to:+16304893285] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065256226] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098584121] [to:+16304893285] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312419607] [to:+19312577530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138447364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735163] [to:14782070165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-21 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868670] [to:17049644417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743509343] [to:+12692808443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171409] [to:+12136300847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13309078602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:18139259125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-20 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447464481407] [to:+447451246275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736995203] [to:+19784009304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784262] [to:16618092392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13308503568] [to:13309078076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322132092] [to:+17324447669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15145716108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16673083132] [to:14437392442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132404002] [to:+18328042307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13305730568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040727] [to:16462629534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13402015522] [to:+17277679577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204875086] [to:18124300595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905122] [to:+15817021025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739000489] [to:+19738789701] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153989359] [to:+13475807101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-20 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144584049] [to:+14387922515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292155] [to:524192979236] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364650983] [to:+13367018003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196653937] [to:+18193073594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233278718] [to:+13234268627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-20 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022496934] [to:+13476764594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849493] [to:18324384756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137235940] [to:13138292191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047108355] [to:+15103223004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-20 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695956] [to:+18133204591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732500] [to:12678448451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-10 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708431492] [to:+17547774617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16827016699] [to:+14696292094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709394489] [to:+14844244904] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809779] [to:18603415162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708236616] [to:+16784968915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16479092277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977792] [to:15163848522] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809699] [to:15139266300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:13475781883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611328] [to:19892252893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:13156902369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18049194391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921069] [to:15178178217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053217235] [to:+19542994396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149319403] [to:+13479979598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:17133926826] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15129643278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-20 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520607931] [to:+447792166739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106901332] [to:+16465479916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184732] [to:14102406577] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329546] [to:16062611714] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789604274] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942675] [to:14383931615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-10 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-20 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383449] [to:13362102483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033740735] [to:+19172318185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479298161] [to:+16477997337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:13854249533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845153414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177067811] [to:14234911540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177067811] [to:14234911540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15513583243] [to:+15516664130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096838764] [to:+17097004837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006412] [to:12509370994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:16159813496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066458131] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14407305259] [to:+19148252493] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751364] [to:17409636941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043653320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606449] [to:+13477691242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137466572] [to:+12138025270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12408411385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262973775] [to:+12135876578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-10 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301935] [to:17272329778] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797954] [to:17404442325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:13109068796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-20 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136354] [to:14849036254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027171439] [to:+19027021557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567573] [to:12489065817] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567573] [to:12489065817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598665294] [to:+15852822042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625442675] [to:+13219990725] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038867] [to:+18597777450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:16309030516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:16309030516] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12604315364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364312] [to:+13479543383] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147787591] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047194] [to:16473605839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:17542425445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052737101] [to:+12048091895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634190252] [to:+15633167329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:18139259125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406890] [to:+13194507976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822314426] [to:17579556675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892132218] [to:+19894020242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:16467306790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327661792] [to:+12139297141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577399113] [to:+13478968425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033089910] [to:+18033050193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097716531] [to:+17097019284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055135] [to:18025798336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406642] [to:14165615930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999671] [to:18145947025] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097233282] [to:+19092934625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040575] [to:+13217309497] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159731] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718933] [to:12106082885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065183131] [to:+14706730784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853313611] [to:+17162792534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12404462800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189470023] [to:+19173834919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019297] [to:19022988006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13304194816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424431] [to:+16317122468] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001013] [to:17059317327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175280751] [to:+19492814691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222273] [to:18458930770] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222273] [to:18458930770] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467506785] [to:+13475187233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-20 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201140] [to:+447745100372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-20 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024127525] [to:+19027062816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347395] [to:13053047682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159153192] [to:+16503007125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179626054] [to:+15862488047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285281051] [to:+17605899984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093818875] [to:+15099550956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167047327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159153192] [to:+16503007125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140945] [to:18196905561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17176005780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942675] [to:14383931615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044853685] [to:+14243364841] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-20 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023220179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358401240] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-20 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216140364] [to:+14073373350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:15029314942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13397884170] [to:+15089166209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:15627124821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806122062] [to:+15415393157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685093] [to:+17727667444] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432712007] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184705572] [to:+13479376078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739313046] [to:+17604748285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773503] [to:15618898568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968604] [to:12318860013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007756] [to:16476331128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652434016] [to:+15104555492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096702168] [to:+14096833772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-20 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876475005] [to:+18572195771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286569] [to:16072225538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025270] [to:15137466572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-20 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118562096737118] [to:+16129305884] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026670507] [to:+13479714434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503456084] [to:+12672777128] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569327] [to:17742517938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045029] [to:12262032404] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076485] [to:12603558969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109082626] [to:+16466328984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078944992] [to:+13024001489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15038374110] [to:15033177632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023759537] [to:+19729478937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265029] [to:12819288698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863797] [to:12104607914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-21 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447827850371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16264988046] [to:+15102549623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046744450] [to:+19802092806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013552497] [to:16462996248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692458558] [to:+14692052347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483790001] [to:+12484601513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13866829632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024160266] [to:+17279987124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084501014] [to:+12626482617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273889649] [to:+18326538019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905122] [to:+15817021025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787698846] [to:+16784123990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025770605] [to:+19027004314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:13017481096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126520] [to:18565032364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175791721] [to:+13073703003] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122973085] [to:+14126940830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175791721] [to:+13073703003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-21 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451211261] [to:+447913467969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125076069] [to:+12133550317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388695542] [to:+16474915460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138447436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175791721] [to:+13073703003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165411] [to:13157835531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196120064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195512671] [to:+14352497443] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15516664130] [to:15513583243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066458131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:12603886067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412834] [to:14043241726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865988] [to:13086242806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-21 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388695542] [to:+16474915460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002928] [to:19088944851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12152816039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406184] [to:15595563226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-20 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-20 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:14049214948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940092] [to:14129965229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116596556495] [to:+17786541867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003030201] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020709] [to:+15874059049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135440538] [to:+12133756726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388695542] [to:+16474915460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12098096585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671463] [to:+16475569659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863621749] [to:+12512068617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193565] [to:16179523959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865676677] [to:+18107725866] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391307] [to:15205897483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12404490378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116596556495] [to:+17786541867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003030202] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015207748] [to:+12184163605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202454726] [to:+13039930803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-10 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187051887] [to:+12148148640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045095946] [to:+14703336194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12019498408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397091] [to:+19542994604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479273439] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908500] [to:18142258014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082967664] [to:+13369383595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017593] [to:17246788825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372221292] [to:+18326503073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:15188660195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017060296] [to:+12136946133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404467429] [to:+17034199163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184355724] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12404490378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-20 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447708761613] [to:+447451229496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137264794] [to:+13059014028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635141] [to:13615430024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546406059] [to:+13479977843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-21 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:17542464754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15153031302] [to:15175128872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:16467306790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078944992] [to:+13024001489] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524691532] [to:+15102549848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259478739] [to:14256917619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610967] [to:19549182028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140903] [to:18192095530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:14049214948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109068796] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474921194] [to:16479290882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908004] [to:19167069811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538974] [to:12407796023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-21 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614724275] [to:+16614024953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139098210] [to:16134134245] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479943627] [to:+16474989552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069780682] [to:+14237777934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146253761] [to:+15799148407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108331014] [to:+15103278011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913174] [to:16478524668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13303291945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713371099] [to:+15406286716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740938] [to:17856141610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377034] [to:13309578968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137466572] [to:+12138025270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16065256226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:15414184495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255532] [to:19415240124] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033175] [to:12082721708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-20 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817003403] [to:15819988854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167440313] [to:+14706735285] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830045] [to:13022585531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19054315560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784262] [to:16618092392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133274642] [to:+16136047641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198393] [to:12294443979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:12603886067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718062] [to:14843472201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:1587782666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522575655] [to:+15169260955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:13475566914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109695234] [to:+18102218746] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733595489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086123373] [to:+19177370023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791532] [to:17162922610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220215] [to:18456487927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220215] [to:18456487927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-21 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447418334105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323848] [to:14033529851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522575655] [to:+15169260955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432358923] [to:+19148250912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404045467] [to:+17408798491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624805] [to:17179034867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029403515] [to:+19027043650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16022915066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:16785443462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197572850] [to:+13473898500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707802919] [to:+19894550753] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455461] [to:12314293652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:12404606889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203075106] [to:16122312834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538449766] [to:+12533361497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837576] [to:13302811796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977792] [to:15164570614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12403617039] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136036771] [to:17576945050] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029996287] [to:+19028019398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-20 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447976217706] [to:+447418330124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023105147] [to:+14088725980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267552736] [to:+12264555838] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002413] [to:18157617032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184732] [to:14102406577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076168092] [to:+18724003666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317204576] [to:+12315987166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404127290] [to:+13015699470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324273659] [to:12132721315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178501764] [to:+13609494286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615430024] [to:+18173635141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042411] [to:132665] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14096562230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058794898] [to:+17864803932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178501764] [to:+13609494286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:12547360634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001218] [to:17604989131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414083399] [to:+17248035501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406462600] [to:+13012885403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042098143] [to:+18722258322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655090807] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137438] [to:19102419252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18704218991] [to:+12039904051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066196237] [to:+13103070507] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136048217] [to:+12816433491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168357802] [to:+16476911901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106082885] [to:+12105718933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025843592] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102146292] [to:+16466320580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853696030] [to:+15852824920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125076069] [to:+12133550317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134064935] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023730882] [to:+17027181501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027004594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326669187] [to:+17604745845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064078715] [to:+17702005580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043653320] [to:+15612319123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135440538] [to:+12133756726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031D0201] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963978] [to:16105733591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347022] [to:18637096783] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:16785443462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17034199163] [to:15404467429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500031D0202] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19565360900] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-20 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042180442] [to:+19709998352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349411550] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654669804] [to:+12134017515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567896] [to:16108832098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059716092] [to:+17059102275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:14432535910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158475538] [to:+16519275894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077607247] [to:+13475087435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:12562548890] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EA0201] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-10 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-10 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-10 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439912313] [to:+19292200921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-20 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-10 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291904] [to:13179129657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:16266025621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678452] [to:18576151773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062737608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19733422211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941938] [to:15875960287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455461] [to:12314293652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16176344399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500032D0701] -Feb 1 11:35:00 ip-10-0-0-21 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806122062] [to:+15415393157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-21 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043142168] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908613] [to:13155912795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:17325137710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406058797] [to:+17408796567] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0703] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412757] [to:16783823085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076692927] [to:+19172660015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963174] [to:16147350293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044424785] [to:+16043050913] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032C0201] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032C0202] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032D0706] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032D0704] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046744623] [to:+16043050899] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0707] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347181897] [to:+18639493710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406444094] [to:+12342313941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:13528746204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478364797] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129965229] [to:+14126940092] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177508870] [to:+15672057422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168789099] [to:+19162455463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804430] [to:15857377963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603558969] [to:+12604076485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085136360] [to:+15635593054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739439253] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286516] [to:15408199418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-20 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337623] [to:+447462919998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-21 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239077] [to:+447711865468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13204312034] [to:+17194960493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168587266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-10 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:13137783156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-10 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467506785] [to:+13475187233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263122733] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478716298] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-21 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13029815929] [to:+13025955646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232187162] [to:+17633015532] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284351288] [to:+17605899984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137214938] [to:+13015699036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085910056] [to:+12085012601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206687386] [to:+16466288686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040335] [to:+13479544918] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038677785] [to:+19783231012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003EA0202] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16176344399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155078165] [to:+16784123652] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17634431892] [to:+16124448055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467306790] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661187] [to:15704396798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168251280] [to:+15415392377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-21 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320824] [to:+447470465745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019284] [to:17097716531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:19162385109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145442025] [to:+16304893673] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570062] [to:16476684256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17207678191] [to:+13203074818] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168136030] [to:+19175808852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15153031302] [to:15175128872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748040141] [to:+14017214220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19029211556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745850] [to:1256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306034395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365728] [to:17049159986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854659343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307713358] [to:+13309708874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-11 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796194] [to:12702509778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062889468] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181501] [to:17023730882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809779] [to:18603415162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:15029314942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027278086] [to:+16096144647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085164] [to:17026894299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397091] [to:+19542994604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044424785] [to:+16043050913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968687] [to:18653612836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199981865] [to:+18193074976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137264794] [to:+13059014028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16478364797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232987079] [to:+17279353647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094102373] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18138422253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15068011586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164269] [to:17322282492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-10 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-10 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049798739] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344773817] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173000411] [to:+17273629124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143469031] [to:+13475187690] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006289] [to:12505105856] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390064] [to:14505228920] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072680685] [to:14077808444] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072680685] [to:14077808444] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865615] [to:17049535445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076335293] [to:+16474934356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076909536] [to:+19418009022] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184732] [to:19043838547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17056266855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190294] [to:16783343313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025178893] [to:+13479801295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17623380556] [to:17069455822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-21 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447919970510] [to:+447418333947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-20 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003060201] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076909536] [to:+19418009022] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808187] [to:19187666898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-20 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085136360] [to:+15635593054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613468306] [to:+15612403794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328096] [to:12056328982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476191367] [to:12079749072] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198596769] [to:+12048092090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15303606582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126964152] [to:+13477868824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477385149] [to:+16474910153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782398582] [to:+14703335256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149679298] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195783494] [to:+18193070257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435353024] [to:+18435345456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969570] [to:17579528441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-21 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046848639] [to:+17817868173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259207] [to:12073413079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225785] [to:13365124844] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751767] [to:14059021066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:19312648531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:14049148248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143686025] [to:+13147868601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405323853] [to:+12162396240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103070507] [to:16612623625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300646] [to:19107282733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447970282799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003060202] -Feb 1 11:35:16 ip-10-0-64-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:15088643319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17013172939] [to:+17014122539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447875097527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155969501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812671] [to:14433884918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168584903] [to:+16784338751] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095730593] [to:+17097015576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168584903] [to:+16784338751] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168584903] [to:+16784338751] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:15879906505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:14042736673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744978] [to:13209681757] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851975] [to:13023125165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851975] [to:13023125165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127723] [to:+19199164481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392828] [to:16077319856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174403994] [to:+18583604736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12267802159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474931197] [to:15062925095] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276988032] [to:+17279985231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123122978] [to:+18572405070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065256226] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345321] [to:18435351873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004981] [to:14046109658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109724813] [to:+16109737911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911901] [to:14168357802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175165735] [to:+13479788831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064353655] [to:+15068040546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404356832] [to:+12136309241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296115] [to:17605088735] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065243740] [to:+14703334069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046663903] [to:+14146006019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:14436682114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503001237] [to:12765916852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789754] [to:15134290096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027004594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875960287] [to:+14387941938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-20 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353816] [to:16606352114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038677785] [to:+19783231012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:13342758969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023507018] [to:+13053406115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796194] [to:12702509778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554121] [to:15417435203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143976180] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001751] [to:17052067921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247547969] [to:+17279987657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15669847850] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812430301] [to:+17816548758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857142596] [to:+15852822090] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-20 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-21 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235790] [to:12603887523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599799074] [to:+14243364291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142652671] [to:+15146134612] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702964215] [to:+16784123095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188049443] [to:+19172751596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059995444] [to:+13477691224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010201] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059995444] [to:+13477691224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010202] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17755835774] [to:+15103222429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538449766] [to:+12533361497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046744623] [to:+16043050899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:17037729193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106063310] [to:+17073007799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570062] [to:16476684256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197446907] [to:+13364500557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F50201] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862452] [to:16172336689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166397120] [to:+15162187703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124576] [to:13619356924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343901020] [to:+19148608352] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649253] [to:13044171224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968425] [to:17577399113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538508] [to:14439808278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:13214202267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492814596] [to:17406803773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604496061] [to:+12604077562] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049344] [to:19106853068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157020] [to:13306159829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137841461] [to:+18133081179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519136] [to:13478457641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154123991] [to:+13473898422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166877] [to:19193303931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014289] [to:+18724003276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661187] [to:12156646148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320921] [to:17179779167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097716531] [to:+17097019284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13395329224] [to:+16172132195] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105774599] [to:+18107725582] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126501235] [to:+13479193364] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434271] [to:18569867539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434271] [to:18569867539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220481] [to:15617552995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234894243] [to:+17727668534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-21 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229496] [to:+447708761613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359670] [to:14235399778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13302127429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346822] [to:12532457510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788089767] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003F50202] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15042027611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234437701] [to:+12132951667] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392828] [to:13044833510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045209586] [to:+19292009028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020177] [to:19895748491] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19892132218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702964215] [to:+14704446204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358252] [to:13309870950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18058684408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132102] [to:16033188478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102419252] [to:+13216137438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789936001] [to:+15614124451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099327910] [to:+14097771148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522783964] [to:+13053406770] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789936001] [to:+15614124451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502307161] [to:+15817022544] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12162355858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786956] [to:14239035827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343038060] [to:+13479196851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:14044549234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16062101311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308095992] [to:+17248034868] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048397175] [to:+14158534719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642766320] [to:+13479193491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398420] [to:15754055232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16062101311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744278] [to:17313341572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-20 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053217235] [to:+19542994396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-10 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-10 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14846339152] [to:13475892018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-10 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-10 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802486566] [to:+12138065848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365728] [to:19804309814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-10 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437342609] [to:+14436812793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876276] [to:14135527836] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876276] [to:14135527836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329512393] [to:+18327772141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-21 mdr: 2016-02-01 11:35:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803296594] [to:+14804392377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946133] [to:12017060296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623244596] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132005330] [to:+15137259463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024179004] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157274] [to:13302575046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048751281] [to:+18583048321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022988006] [to:+19028019297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886859] [to:+19292688403] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769296] [to:18593917758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17757735766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876276] [to:14135527836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866829632] [to:+13866013668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792534] [to:15853313611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:16013238691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005446] [to:14056285192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408721037] [to:+14342340525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084502] [to:18133943939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-20 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-20 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262314438] [to:+12262717671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329649028] [to:+16615334092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665916] [to:14048896314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076060] [to:5533988572523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305516] [to:18647608513] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577602] [to:19316751735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822188] [to:19177082735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01141767415686] [to:+16784968880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039683663] [to:+18038143481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677135043] [to:+16319802399] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+17053029661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157835531] [to:+16413165411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473726500] [to:+19173834104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595072] [to:19733328397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748040141] [to:+14017214220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291417] [to:15742185721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-20 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202883] [to:+447776217987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12403981665] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577602] [to:19316751735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864386] [to:12407935886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601664] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347815426] [to:+17348228236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075788348] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467506785] [to:+13475187233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-21 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468522724] [to:+447451241321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18684772116] [to:+16465139711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:17606098464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13134249278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127468] [to:16314550159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-10 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313845722] [to:+16476911500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022338253] [to:+19027046345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196905561] [to:+18194140945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538449766] [to:+12533361497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:13852888361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163894] [to:16572512062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656025056] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:14807473335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517969752] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583435] [to:+16317707296] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148652716] [to:+14388077893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438670] [to:15706608205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568895108] [to:+18569429326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735263269] [to:+13126310408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308747] [to:17728008416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179663637] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-20 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296115] [to:18183035186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-11 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176029901] [to:+12132953375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025947330] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699470] [to:12404127290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196661223] [to:+18572405046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149959097] [to:+14387922872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14344773817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:13104632348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573036646] [to:+19172720573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:19092228611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-20 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337882] [to:+447561207109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177576253] [to:+14694237772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606178318] [to:+19172595939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-20 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017508185] [to:+18572408242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884919] [to:14105980287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041969] [to:15063655233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676681] [to:16786206202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:14049148248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307880583] [to:+16475037529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16129139167] [to:+15072626338] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364575176] [to:+14342340670] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188049443] [to:+19172751596] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138121] [to:16035628899] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779649] [to:13302084495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635141] [to:13615430024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313364013] [to:+16315171826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164811] [to:19197501012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695891798] [to:+12695755441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785503257] [to:+16172139488] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867964] [to:+12816436020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472339077] [to:18704504489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15772818039] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14075019191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503849] [to:18329030890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653864985] [to:+17205852947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022927505] [to:+19027030781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995336] [to:12177108121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715897111] [to:+15714454127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162350401] [to:+12167772174] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864144] [to:15045130354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946133] [to:12017060296] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201346] [to:16625827940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403812995] [to:+17605735551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19892132218] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:19735927951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353198] [to:19072316167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200921] [to:14439912313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479273439] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302575046] [to:+13309157274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004981] [to:14692600325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099709995] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500033D0201] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CC0301] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047933623] [to:+17784030927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436682114] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028075081] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-20 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099709995] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033D0202] -Feb 1 11:35:45 ip-10-0-0-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033529851] [to:+15873323848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102406577] [to:+13475184732] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CC0303] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242511349] [to:+13106278208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044151814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328336] [to:13392359154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-20 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875097527] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096585] [to:15149730354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433072967] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138835916] [to:+14132715463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-21 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302316] [to:13048805031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318597] [to:13049511997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788831] [to:17175165735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015717] [to:14702168118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242511349] [to:+13106278208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459869] [to:14192361416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-20 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18176009694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953597] [to:13172368704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265029] [to:12819288698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125316258] [to:+17817863421] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373052130] [to:+16572211182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018432] [to:19024017371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406444094] [to:+12342313941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642766320] [to:+13479193491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-10 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145133] [to:16062602893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-10 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176207727] [to:+12017428801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004548] [to:14044849638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-10 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-10 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784669039] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137438] [to:19102419252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-21 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16022915066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005021] [to:16787599427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043438658] [to:+17786530065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239035827] [to:+12134786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473181] [to:18169822882] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12157962265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342521161] [to:+17786529976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892132218] [to:+19894020242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069791138] [to:+17205999682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-20 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447708761613] [to:+447451229496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012442] [to:12089258369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-20 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534000981] [to:+447451201674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193310668] [to:+12267983966] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968425] [to:17577399113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084931333] [to:+16503007616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751229] [to:15709725976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AC0202] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17709402813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436554934] [to:+14438550041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802398503] [to:+15874004867] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809779] [to:18603415162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168019223] [to:+19417256954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092771470] [to:+17097022710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-21 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227237] [to:+447850461486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046850314] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-21 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227237] [to:+447850461486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-21 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227237] [to:+447850461486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387928090] [to:15146040455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095147] [to:12015893943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595370] [to:14782583770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-21 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-21 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042411] [to:14062171893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784968] [to:17049998683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182648639] [to:+16034130763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:12168824170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14164278063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632343] [to:18572440018] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-20 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177067445] [to:+14706730663] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172048074] [to:+19739639294] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163525110] [to:+17162790260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172048074] [to:+19739639294] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063650] [to:15593528026] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023224699] [to:+19027058059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020177] [to:19895748491] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-20 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692091431] [to:+13475076827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073330] [to:14146995061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-11 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175869438] [to:+13479376267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-10 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300717] [to:+19027026794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433030462] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455383705] [to:+18455797200] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631981] [to:+17027475864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15147095426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808210088] [to:+15873158148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032D0705] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032D0702] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134279192] [to:+14073371106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157083699] [to:+12135874952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246788825] [to:+17402017593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003510202] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124705535] [to:+18326506389] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003CC0302] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712828081] [to:+13478023196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003AC0201] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184705572] [to:+13479376078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436167956] [to:+13479198525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003510201] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022983763] [to:+19028018626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939442] [to:17247574927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176509656] [to:+19172720394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-20 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-21 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447585423878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-20 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393400246] [to:+18638552160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738319198] [to:+14242837049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473181] [to:18169822882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477369] [to:15878967203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738319198] [to:+14242837049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738319198] [to:+14242837049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515216] [to:17862314455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059317327] [to:+17053001013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316936987] [to:+15169341630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788352673] [to:+19785334173] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792831396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739439253] [to:+19738789701] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438398787] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12193701823] [to:12196719746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:13602705556] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476778223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083472216] [to:+18622278714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898311] [to:18165983079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597402416] [to:+16612285660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036296116] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194007216] [to:+14146005212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661224] [to:16033120989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018519] [to:13157179169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635141] [to:13615430024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600537] [to:16476876267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267552736] [to:+12264555838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985535] [to:18622838479] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288429] [to:13473648544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807005978] [to:+15873285763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612258518] [to:+13055017810] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374184] [to:14072855695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137134356] [to:+17205997327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081179] [to:18137841461] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048632] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786956] [to:14239035827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865578] [to:14053038276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14075019191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044456] [to:13616888098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057487131] [to:+19546412725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784669039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17149473429] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371857] [to:12532985766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621969] [to:15129834491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942197] [to:14388620409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302316] [to:13048805031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041969] [to:15063655233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406132638] [to:+13477697883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285803715] [to:+19148250777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157062975] [to:+17408798663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-21 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084502] [to:18133943939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734547151] [to:+13475188622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:16789720199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303094897] [to:+15755672704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232348] [to:17197663181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685041] [to:13043088973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278967] [to:18625882361] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014724] [to:+19282325119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346787708] [to:+17348214398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784669039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147867] [to:12017458262] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844266233] [to:+16109101942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313637965] [to:+16129305847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439912313] [to:+19292200921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167900041] [to:+17162790206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132566392] [to:+18326503238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15158903942] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-10 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364342] [to:+15612408842] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184100421] [to:+19177373199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105455533] [to:+19298411449] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195881337] [to:+18193075816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277491] [to:19185650397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048988507] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12564578259] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074763554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235350420] [to:+16784342054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145824176] [to:+14387928410] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167281255] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788145] [to:16014551872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143732533] [to:+12133773298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15147552321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-11 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13308830989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555747] [to:15193201760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254508] [to:18434679052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784592] [to:15015039713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069733] [to:14048638988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045335829] [to:+17278600859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15302092632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232862128] [to:+15103354347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263462844] [to:+12264555456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064911927] [to:+17204637645] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074596503] [to:+19086625940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162141830] [to:+12317455259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134615] [to:+12262415897] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926251] [to:17408531518] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:16477944370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214202267] [to:+16463497668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896847646] [to:+12262437202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309496270] [to:+19148818715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-21 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451222686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13395459672] [to:14052136490] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038877] [to:15069626144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045760090] [to:+16784345236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-10 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183137851] [to:+19148291367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387928090] [to:14387630455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432710015] [to:+14435835277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017034] [to:19105840891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635068716] [to:+15635593429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555379] [to:14435108004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265319] [to:17069518326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052347] [to:14692458558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054072337] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177304] [to:18284039864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222337] [to:18458533628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735651] [to:17064105578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391180] [to:17737906759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013238691] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414091996] [to:+15413635964] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022259500] [to:+19027046225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179779167] [to:+16466320921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064911927] [to:+17204637645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175980772] [to:+19175805526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485033] [to:16305894504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391180] [to:17737906759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328336] [to:13392359154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17638529142] [to:13203720857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19314096230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252906] [to:12085130645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14389883669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036900177] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:18433072967] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346822] [to:12532457510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253455172] [to:+17743570309] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095147] [to:12017061820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284615610] [to:+17817863424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622152561] [to:+17063959225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13866829632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038518979] [to:18033513047] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900082] [to:17708964926] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948394] [to:16169904148] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179872924] [to:+15047027250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668851] [to:12182600021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016180335] [to:+19014740996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142973238] [to:+14387928465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446289] [to:12705861183] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690682] [to:17734410896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:17325137710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:16785443462] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527404] [to:17575153105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527404] [to:17575153105] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062244134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168018210] [to:+16475039329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244349527] [to:+17248035450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637096783] [to:+18637347022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303274008] [to:+17187519106] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253455172] [to:+17743570309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197501012] [to:+19199164811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896219466] [to:+19894557126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673424306] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303274008] [to:+17187519106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514280249] [to:+16513338542] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136774138] [to:+16139098186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061277] [to:19143181483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-11 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177824] [to:13609092546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132956162] [to:12526731216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-11 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066480] [to:12403832963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440454] [to:15185246372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184718] [to:18705515847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145784371] [to:+16149228010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612789] [to:18003733411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476684256] [to:+16475570062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968095] [to:15138288781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438211505] [to:+19148486616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786975018] [to:+13479809572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:15083145546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412261797] [to:+19703158825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F30201] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931022] [to:15142651393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931022] [to:15142651393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404474932] [to:+17053000977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-20 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:13602705556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083897509] [to:+13866012335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018519] [to:13157179169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025397] [to:12508081180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718601] [to:12109136278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503457582] [to:+18506313631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176079757] [to:+15172586816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-21 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:17272198053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314907254] [to:16314153529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479846] [to:19376701357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138292191] [to:+13137235940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-20 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062989933] [to:+13479138295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488047] [to:15179626054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379911] [to:16204401894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939442] [to:17247574927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808428174] [to:16025529340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063614820] [to:+14703335576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023188808] [to:+19027058512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:16784316610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783270888] [to:+19784896052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063363281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155078165] [to:+16784123652] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418171] [to:12263763939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044263] [to:19566848733] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596031] [to:15092026130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596031] [to:15092026130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053082964] [to:+17053027677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F30202] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162756623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234585482] [to:+13478683708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610782] [to:18326612282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193201760] [to:+12264555747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:17208997798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034734013] [to:+14387940527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039564] [to:16475509399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:16477944370] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507841] [to:17622120972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067762853] [to:+19729470541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13308029661] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865385111] [to:+19175808950] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049314907] [to:+14703334342] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291417] [to:15743430804] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034988344] [to:+19148208300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894449832] [to:+19894020045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12166509786] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234507239] [to:+14072161521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:15144736560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783529172] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-20 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784669039] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107292554] [to:+18102218189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16129305847] [to:17313637965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506392355] [to:15149121054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146040455] [to:+14387928090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204336] [to:14437894249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603887523] [to:+19543235790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272335744] [to:+17277679761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:12766204045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864386] [to:12407935886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043085429] [to:+18285486092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003070301] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164094150] [to:+16474965375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-20 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-20 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520606018] [to:+447470585321] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040619] [to:+15092623592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076485] [to:12603558969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003070302] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048304034] [to:+15612910787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:17272198053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538363] [to:12608490868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003070303] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062072350] [to:+18597777060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018044] [to:14096788622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911307] [to:16479956239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17248807935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054849482] [to:+16054237960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067742] [to:12525642048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660335] [to:15742974623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364917] [to:12294571560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027042890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196091818] [to:+18194141600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397091] [to:+19542994604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046109658] [to:+14049004981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18672221036] [to:+18678883993] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827619] [to:19379473439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-21 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329012] [to:+447720097366] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163894] [to:16572512062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438398787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062727225] [to:+16319802132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643998422] [to:+15752913631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473059321] [to:+12138068568] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403189446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403189446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274727] [to:17322163413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14239122327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884919] [to:14105980287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167800637] [to:+16162390152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313166148] [to:+19318967315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886948] [to:+18107725115] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536917074] [to:+12532480110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680745] [to:16476679769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17272691083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252397684] [to:16619320467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035227803] [to:+13477972298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17814080737] [to:+17816548869] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309870950] [to:+13309358252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325137710] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:17272198053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672531954] [to:+12678444412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148065657] [to:+14387942039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434778] [to:16093340306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175165735] [to:+13479788831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787606441] [to:+14049004021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-21 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736804] [to:14135193353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:15414184495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220420] [to:18135036892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12036900177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816617] [to:19082202929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049314907] [to:+14703334342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322752591] [to:+12138063826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676681] [to:16786206202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022203] [to:14189349333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595939] [to:18606178318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898373] [to:19853870474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557635] [to:19053214055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163034065] [to:+15129523652] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18434085218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174684392] [to:+14848164763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053082964] [to:+17053027677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15135606303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433286] [to:17736417449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177304] [to:18284039864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039440478] [to:+13216137143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286716] [to:15713371099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404084757] [to:12404095716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921089] [to:+18458181446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023180495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239429] [to:15594309294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488500767] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159798309] [to:+16157779512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-20 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674866665] [to:+13475088664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236290167] [to:+19725977042] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14796332901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740466] [to:+17723618215] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809717] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075096] [to:14508814375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896149] [to:18285507701] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13158782992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17709060673] [to:+18285486203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555456] [to:12263462844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-20 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-20 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447885420383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12819485362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12819485362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202849183] [to:+19285992812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14093002761] [to:+12135296116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14075019191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:19293313351] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:17788914981] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231058] [to:16038520956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346787708] [to:+17348214398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404209345] [to:+15102542869] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12166509786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691800] [to:13372449727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452269] [to:12079749402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053211471] [to:+17053029061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067762853] [to:+19729470541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179129657] [to:+19148291904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234894243] [to:+17727668534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373338772] [to:+16474985427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084059] [to:19105286618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743342635] [to:+13479971676] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570062] [to:16476684256] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365770] [to:13142017348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034475493] [to:15038582983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:14049348258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122808894] [to:+16125022049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787224337] [to:+18622278405] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805173586] [to:+15874087003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178214042] [to:+18729995785] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407941397] [to:+17408797920] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13363387802] [to:16048123214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344014113] [to:+14342340199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078605103] [to:+13477148504] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-21 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629616] [to:19177800570] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437342609] [to:+14436812793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005948] [to:17063016194] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022969936] [to:+15028041548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154126905] [to:+17182558871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488047] [to:15179626054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184705572] [to:+13479376078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13363387802] [to:16048123214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15077792253] [to:+17736690260] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671460] [to:+16477995096] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:16149076342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-21 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034794298] [to:+12138611647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402081597] [to:+16513335842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188571666] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733328397] [to:+19733595072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17608671420] [to:17606416167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951055] [to:16476485055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267002199] [to:+12262411688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827619] [to:19379473439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097018145] [to:+12092641754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434098199] [to:+12135876093] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15077792253] [to:+17736690260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802398503] [to:+15874004867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187287556] [to:+15817003345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314550159] [to:+16318127468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218253] [to:15132123417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685093] [to:+17727667444] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-20 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866829632] [to:+13866013668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132793043] [to:+18133244626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028239632] [to:+17027478248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322282492] [to:+19199164269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676681] [to:16786206202] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364710040] [to:+19783231437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177526592] [to:+13479787250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14182085399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025229962] [to:+16465137640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314058566] [to:+16317732651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704073829] [to:+18597777147] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249703600] [to:+17248032022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040806] [to:12506448894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-20 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895730065] [to:+17277052276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255916178] [to:+17605896450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263463710] [to:+12262418419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17696105744] [to:+17182559638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494286] [to:17178501764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548412] [to:16502438489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494286] [to:17178501764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262401985] [to:12896755077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674744489] [to:+12676909927] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784669039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:17606098464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402412415] [to:+12138737252] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084224934] [to:+18583048283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595098] [to:18502949619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595098] [to:18502949619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565032364] [to:+18563126520] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474669773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-20 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451228935] [to:+447757675307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462404] [to:19736500943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:12265040857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:13058962194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012913583] [to:+19046947081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957694] [to:14439078439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803357277] [to:+17187510180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473621520] [to:+15164724779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170013] [to:+19027021775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703306115] [to:+14706734251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306223556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817867] [to:18144311857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143926470] [to:+13477147934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12535170102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517031571] [to:+16474916297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475705171] [to:+13476678104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13619356924] [to:+19715124576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346787708] [to:+17348214398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019790382] [to:+12405587809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124563] [to:17243050412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027042890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868311] [to:13369444729] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298006007] [to:16307507849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053217235] [to:+19542994396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173543246] [to:+17739433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066188449] [to:+13478968551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298006007] [to:16307507849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712036962] [to:+19715128457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-21 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609328] [to:+447904840935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-20 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451224661] [to:+447930916467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144736560] [to:+16477999724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358252] [to:14195663586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17063614820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12166509786] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207891040] [to:+14242835457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981016] [to:15195322905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345236] [to:14045760090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132109887] [to:+14158536525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568744811] [to:+12134787170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062805410] [to:+12139217619] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182377462] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676784089] [to:+16079655863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503764879] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075006] [to:16137000713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038341190] [to:+13479789882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666996] [to:17734187202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195485301] [to:+19172660440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-21 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:15102534743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886862] [to:+17077507683] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035031] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517031571] [to:+16474916297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179523959] [to:+16172193565] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334342] [to:14049314907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181446] [to:17854921089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13303567705] [to:13304419770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863862] [to:15082943471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852592922] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122200032] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607053651] [to:+12604077431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132122692] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293155472] [to:+12134783849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148392567] [to:+14388096924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189770875] [to:+12132959694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189470023] [to:+19173834919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096835493] [to:+17097019082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234942452] [to:+13017786535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623236231] [to:+12628884471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127012443] [to:+18127777108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788305860] [to:+16784345881] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569867539] [to:+16095434271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027042890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145947025] [to:+16466999671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785808176] [to:+14704446258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196034397] [to:+19199161249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055037551] [to:+15102548975] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-20 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816421] [to:18122293179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370160] [to:13305926941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412757] [to:16783823085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349043488] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:14232412191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387776618] [to:+13436001576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316729174] [to:+15087884893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15135606303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19795870994] [to:+19798885046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639534] [to:15593207201] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082466] [to:16032338520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475078505] [to:+19177905877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14708390944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-20 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262310479] [to:+12264570457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336790] [to:18013884353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231710] [to:16039913741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707809157] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109785145] [to:+15104555492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14163011864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178165807] [to:+13476672563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048638988] [to:+17188069733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258246] [to:12178833599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358252] [to:13309870950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317123661] [to:18765721059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292912266] [to:+14353391493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792340304] [to:+17133735896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535840] [to:12245880995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024104325] [to:+19027062593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188693742] [to:18188615021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402430096] [to:+12604077042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177906180] [to:+13059014094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19023048632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-21 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-10 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407796023] [to:+12405538974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263463710] [to:+12262418419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022451276] [to:+17123825849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830718] [to:13614553874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375958] [to:19739304695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-11 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17638529142] [to:17632600441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001673] [to:12498788642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171956] [to:+19783649224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102545138] [to:+15068041844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:18434190502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135859483] [to:+19027046441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198905520] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196041310] [to:+19513095201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348214398] [to:17346787708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083314687] [to:+13052037143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243972] [to:18049093532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773503] [to:15618898568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897098] [to:17174142753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302406] [to:17734995675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12766204045] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-20 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447788212505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088433964] [to:+17077507919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968551] [to:17066188449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19029680938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404590227] [to:+13302370835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263463710] [to:+12262418419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-20 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221289] [to:+447936996807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145693] [to:19392240490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+12048130590] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024032073] [to:+18108527078] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143181483] [to:+19142061277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19122200032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782583770] [to:+19172595370] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075096] [to:14508814375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:14155259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405304] [to:15307379050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123122978] [to:+18572405070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043769] [to:19198009515] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-11 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:17018710762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137235940] [to:13138292191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-21 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473059321] [to:+12138068568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-21 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053047682] [to:+18637347395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:17018710762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:17018710762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027250] [to:13179872924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185901097] [to:+15817014683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317123661] [to:18765721059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093988] [to:12047206745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135859483] [to:+19027046441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068498281] [to:+12085010363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064105578] [to:+14706735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802810448] [to:+15873322555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:14044412023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863862] [to:15082943471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:14034657712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14438252749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005580] [to:17064078715] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127012443] [to:+18127777108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593429] [to:15635068716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185991576] [to:+18724008819] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170013] [to:+19027021775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779688] [to:12345174740] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550224] [to:14696616514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476671816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028131165] [to:+19149798977] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147934] [to:18143926470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:17789037352] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348980] [to:13186582541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183325915] [to:+16465137056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973326] [to:15702696110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419024] [to:14238382417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404388] [to:19802264762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19204204349] [to:+17204637414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032649] [to:12094169976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013451158] [to:+14017214221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671509] [to:19144140565] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075006] [to:16138067971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868311] [to:13369444729] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-20 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209779092] [to:+19725251847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042334919] [to:+15169269207] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183259504] [to:+13052036821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BE0201] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802630089] [to:+15204338732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127356792] [to:+12679232337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102033388] [to:+14845485117] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603887523] [to:+19543235790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408216738] [to:+17408796722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396132] [to:12162689638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097142] [to:18433728215] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035031] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16132625639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593655358] [to:+12135876369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403103022] [to:+15406286587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042334919] [to:+15169269207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087528] [to:15875948887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183259504] [to:+13052036821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BE0202] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044613] [to:17572376475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179034867] [to:+17273624805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202925515] [to:+19717328549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13179690828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:1929285235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-11 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:14344144369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-11 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:16013238691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-11 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-11 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003300301] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19314944429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302574249] [to:+12604071409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513919797] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003300302] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183304697] [to:+16465648160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-21 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215973] [to:+447784241180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-20 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737911] [to:16109724813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134974376] [to:+14198777085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736391729] [to:+12135760115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157651795] [to:+17206236857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429207] [to:16092318917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048096030] [to:+18133207720] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+12262411756] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387776618] [to:+13436001576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124576] [to:13619356924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-20 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329641] [to:+447599835354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171826] [to:16313364013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194807138] [to:+15672506106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-21 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003300303] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377113] [to:13305416159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145766343] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13148998538] [to:12699939412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543933194] [to:+19543142739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17197663181] [to:+17206232348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167281477] [to:+16474941891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748040141] [to:+14017214220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:17325137710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053214055] [to:+12264557635] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-21 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774086] [to:14147398199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837576] [to:13305570446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:18329921282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-21 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736500943] [to:+19738462404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045760090] [to:+16784345236] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196041310] [to:+19513095201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14438252749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412033632] [to:+18133202054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314787780] [to:+16315723861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-10 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:15037916506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146146] [to:12182050908] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749341] [to:12039829375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035031] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032649] [to:12094169976] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163191708] [to:+16475567571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267002199] [to:+12262411688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200726] [to:18608188664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198309939] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154250422] [to:+12672732137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634190252] [to:+15633167329] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003230201] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438616] [to:16038457642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033208903] [to:+12138026042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634190252] [to:+15633167329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003230202] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247875691] [to:+17248035791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478377] [to:+12536422250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-20 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337388] [to:+447950329267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044613] [to:17572376475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557884] [to:17605355322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241982] [to:+12262437181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387776618] [to:+13436001576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203586509] [to:12262032940] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-21 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13134652282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108296397] [to:+13025852137] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173488088] [to:+15172586952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065947994] [to:+14706734456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974576] [to:17047701956] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181112] [to:16147331997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709725976] [to:+19172751229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-20 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025213] [to:17059302389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025213] [to:17059302389] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:15144736560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784669039] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+16139122415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969821] [to:12312882607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B80201] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B80202] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:12143643911] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-21 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:19178684272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-20 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F60402] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F60403] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003F60401] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375664] [to:12488200543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:15513330927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862596] [to:+18639491773] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188210795] [to:+15186155460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432666582] [to:+14433453880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349043488] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137698183] [to:13234566670] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542022232] [to:+12262415897] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033892780] [to:+17077507197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043895663] [to:+15107756997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026902725] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164763] [to:17174684392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799887] [to:15705292481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-21 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315421] [to:12515046935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069518326] [to:+13219265319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783633942] [to:+13475086739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179872924] [to:+15047027250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731447] [to:15599722129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-21 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044392423] [to:+13479971989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572180428] [to:+14695324619] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176760049] [to:+13479805812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381124] [to:13365834320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437894249] [to:+14437204336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889979] [to:13308092969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808509100] [to:+16042594978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332724] [to:19185132184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921089] [to:+18458181446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946963] [to:19044030473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779649] [to:13302084495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063805565] [to:+13176881205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16829909176] [to:+16136048235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076003943] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876093] [to:18434098199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266406] [to:17205034117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644373539] [to:+14073371617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17022499152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073547745] [to:+19172669376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197737703] [to:+16139125711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076003943] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069492102] [to:+14706734546] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742747971] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517477447] [to:+18575764456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-21 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447518062150] [to:+447451239856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062472305] [to:+14706734996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603558969] [to:+12604076485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786798072] [to:+17784024596] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014446] [to:14439390147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15082711868] [to:12605702998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17347966657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326161] [to:18595539711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19132047662] [to:+12139353727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439796793] [to:+14437202258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174877235] [to:+15104477848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12084574703] [to:12192268464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659680] [to:14253452414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303903] [to:12075055883] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772934] [to:+19149089954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042292005] [to:+16465648476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175280751] [to:+19492814691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154552] [to:+15109482802] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527276] [to:18109085205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15594700660] [to:15599011635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735163] [to:14782070165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016037351] [to:+18046244135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790285] [to:17164997543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-20 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817001303] [to:14189515997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188660195] [to:+14072162425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413166002] [to:16412245582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805350037] [to:+15624735028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143181483] [to:+19142061277] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-20 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959694] [to:15189770875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853122] [to:17409941505] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:13045493860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048456563] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134652677] [to:+16464179408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193271] [to:17404032202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853122] [to:17409941505] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347395] [to:13053047682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:29 ip-10-0-0-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-0-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842191455] [to:+13479808463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-0-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:15138851468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599750002] [to:+14156493943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019398] [to:19029996287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057213631] [to:+13477966838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022785] [to:+17077507709] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609669] [to:12072057152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653604] [to:17787880454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137327] [to:17709120135] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137327] [to:17709120135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026331458] [to:+14155494141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455743] [to:18323183843] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455743] [to:18323183843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549848] [to:12524691532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:15037916506] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033353] [to:17246012964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713371099] [to:+15406286716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086467404] [to:+17029016601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845972801] [to:+14844207905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437342609] [to:+14436812793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974573] [to:15202738162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195048729] [to:+16474980554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305758951] [to:+13309708850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036900177] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086467404] [to:+17029016601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453106] [to:17147529815] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063483261] [to:+15308631780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199186] [to:12109884695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449676] [to:19015306885] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449676] [to:19015306885] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16472356000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853780369] [to:+13473438496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455383705] [to:+18455797200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500036E0201] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673386529] [to:+19175808233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586952] [to:15173488088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362283] [to:+12138026586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660440] [to:19195485301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500036E0202] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18453009656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635068716] [to:+15635593429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785371] [to:+19148468592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14847979685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156902369] [to:+17162792216] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993017] [to:14077054831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852008744] [to:+15852824319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-21 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653604] [to:17787880454] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-20 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12547356220] [to:15407184453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044758365] [to:+18046244955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293363] [to:19727427754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162067179] [to:+19165339738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809038] [to:16785060424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082943471] [to:+17817863862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291904] [to:13179129657] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414511147] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737477] [to:12404592022] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163504] [to:19194825295] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-20 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18198060986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:12146769897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033860423] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370411] [to:13305196869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016968013] [to:+14092205959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102534743] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-20 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447526654441] [to:+447451236738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044961987] [to:+14049001074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016968013] [to:+14092205959] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482220288] [to:+18484824360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412409] [to:18723035752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491152] [to:15857649568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269230052] [to:+12262408420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061277] [to:19143181483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749589] [to:19195593339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332724] [to:19185132184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182050908] [to:+18583146146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063999] [to:15149289566] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063999] [to:15149289566] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218189] [to:19107292554] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305035376] [to:+15103405586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-20 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188571666] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-21 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198276823] [to:+19199166501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082943471] [to:+17817863862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:19059624221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787757217] [to:+16136046954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153157534] [to:+13479379614] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19288971168] [to:+19282976411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17024098639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-21 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672970] [to:+447974053322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053593014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170013] [to:+19027021775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585899] [to:15172909623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435189394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773130] [to:18439179780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868404] [to:18144945908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632069] [to:13868379635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085562379] [to:15712476992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961540] [to:12763409051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587809] [to:13019790382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106063310] [to:+17073007799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608352] [to:14343901020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228996] [to:16068723020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19314345818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021514] [to:19023296866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-20 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235973] [to:+447956527123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235790] [to:12603887523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18584284891] [to:+17026748682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:19404428291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024596015] [to:+19177954138] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168776633] [to:+12693325692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896890382] [to:+12262418503] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734127790] [to:+18637347092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672354] [to:+18194141041] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024430119] [to:+17029016625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13619356924] [to:+19715124576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916102] [to:19084513423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052347] [to:14692458558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010363] [to:12068498281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12048815303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602705556] [to:+13606383149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004021] [to:16787606441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17073827343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134334179] [to:+16139093331] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993032] [to:+14706734025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612466182] [to:+16465688500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-21 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447808077042] [to:+447418329567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527330] [to:15174556825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181446] [to:17854921089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789141725] [to:+13478083050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525149093] [to:+13866284171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095977030] [to:+19027003915] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309870950] [to:+13309358252] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450399] [to:18622004288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993032] [to:+14706734025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-21 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333360] [to:+447572598118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627326] [to:16073424038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039470613] [to:+19172835170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054104581] [to:+12136324918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-21 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333360] [to:+447572598118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422491] [to:14233779529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792254267] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109167381] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665528] [to:+14437201409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082026499] [to:+19083824775] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779737] [to:13304323241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-10 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343333695] [to:+12136946793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404167550] [to:+17408797954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-21 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451223509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-20 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208480] [to:+447710134432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042225607] [to:+12139217519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15097397100] [to:15098513968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869524] [to:13857430334] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313166148] [to:+19318967315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562940537] [to:+18572194615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182908241] [to:+15817009575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124419] [to:16107632993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079470430] [to:+19172592230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960195] [to:17195699596] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:17089829053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096527208] [to:+14088778638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803713] [to:18607710725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809821773] [to:+15874004806] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026976749] [to:+12406857149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702441347] [to:+13053400936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947704] [to:19042946085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148627364] [to:+12029991133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19317434857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703694609] [to:+17279986949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799856381] [to:+12602327080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789186789] [to:+19782384414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183156552] [to:+18108527731] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17708824527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536917074] [to:+12532480110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049817859] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042983500] [to:+19802092946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699212] [to:12027023978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797920] [to:17407941397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:14437981616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021160] [to:13177193349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059343930] [to:+13054175905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922065] [to:15147540090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364424] [to:+13473898461] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387108] [to:13234826936] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-20 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232197] [to:+447932456870] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445831] [to:19152070133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450647] [to:13364017242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14439951764] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809556] [to:18648047820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126740808] [to:+16465135490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632802] [to:17577712603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044151814] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17064964060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345236] [to:14045760090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973566] [to:16105686799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808751742] [to:+14694147126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132226723] [to:+12137978757] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12036900177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12266887436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19312529990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350530] [to:14048630349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:17722091497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166660830] [to:+16474910452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605199688] [to:+19199163205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404032202] [to:+13479193271] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17062472305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863437488] [to:+17863471390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008398] [to:14186161004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743605405] [to:+18572195907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971989] [to:18044392423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437903577] [to:+13024398714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037341] [to:13472511468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038431] [to:19294654271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267002199] [to:+12262411688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145328599] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143642505] [to:+12628886392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196687336] [to:+18194141002] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313989674] [to:+13475188012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F60404] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042246663] [to:+13479569746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478922471] [to:+12262405594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048632] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188571666] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063990900] [to:+14703335249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604247870] [to:+15152034488] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249317470] [to:+14128193461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624400204] [to:+19142796553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404095716] [to:+12404084757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046970517] [to:+19046947195] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132941338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128457] [to:19712036962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069939032] [to:12506131451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022282501] [to:+14803008793] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796722] [to:17408216738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15807047902] [to:+13369383203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144736560] [to:+16477999724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:447451225788] [to:17738753200] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326997] [to:15802365629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773130] [to:18438582714] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106063310] [to:+17073007799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:447451225788] [to:17738753200] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642469] [to:19412646874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142424498] [to:+14387920514] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188580253] [to:+15817009285] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440164] [to:15182315414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023001331] [to:+17053003109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118562096737118] [to:+16129305884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308717] [to:13218050473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062244134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374680] [to:13304124383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286716] [to:15713371099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028155444] [to:+19027040198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064003158] [to:17802740448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473154] [to:12673562217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162480008] [to:+16177067158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134715422] [to:+12132896979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474867374] [to:+16474916410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809686] [to:12524552834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168322258] [to:+14074424746] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967756] [to:17035856068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18472074515] [to:+13126145667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004981] [to:14046109658] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375958] [to:19738614031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266406] [to:17192998768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:14437981616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-21 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447585330790] [to:+447451207440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365391] [to:16074258094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062232004] [to:+17727668917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336953] [to:15147429374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364482] [to:+16503001289] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857560] [to:+13479803761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255654406] [to:+15102548464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-20 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-21 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447974562790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:19162385109] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-10 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-21 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602260209] [to:+13478993807] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305035376] [to:+15103405586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195485301] [to:+19172660440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15798888927] [to:+16477991209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018764214] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337335] [to:12602249673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018764214] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-21 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336765] [to:+44772940880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603887523] [to:+19543235790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812510] [to:14015782472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312374558] [to:+13366452635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564799022] [to:+17184812208] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177247] [to:17724943546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:17166034883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042100329] [to:+16465037017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:13474892152] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124576] [to:13619356924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:17166034883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450402] [to:18082096560] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177177160] [to:+15183440103] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046983856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803713] [to:18607710725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-10 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139259125] [to:+15107799580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099402] [to:16133620404] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619176069] [to:+16615334281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12014231321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14195590544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18562916292] [to:18562296469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491750] [to:13614630566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-21 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-11 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-11 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-21 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447936996807] [to:+447451221289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-11 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195649842] [to:+12135295275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065848] [to:19802486566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-11 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16473815664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965527] [to:19102319614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-11 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15416567336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-11 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157421] [to:19044831686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15416567336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15416567336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653513544] [to:+16466691170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147805829] [to:+19706010046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-21 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-21 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118562096737118] [to:+16129305884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231922] [to:12675304029] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323428517] [to:+12819421913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194039668] [to:+12262404818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256225528] [to:+12062588297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12395290605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17064095938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645597536] [to:+18649997083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189489823] [to:+15103135331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12395290605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764402] [to:18035076398] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037134625] [to:+12134547738] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059234300] [to:+15817003582] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187090361] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555747] [to:15193201760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875856885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-21 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605355322] [to:+18638557884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:13045416469] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049627724] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015852556] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882875] [to:13236749829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14437846129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:17174952879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179913266] [to:+15399999076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179913266] [to:+15399999076] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129834491] [to:+17812621969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702441347] [to:+13053400936] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225870] [to:12293769233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225870] [to:12293769233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197919117] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17084928301] [to:19857100945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225870] [to:12293769233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168646735] [to:+17162792660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929469] [to:13068812825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15853091811] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152132158] [to:+18724008386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313552378] [to:+15169082620] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701308] [to:12342447644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828933] [to:15092017058] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701308] [to:12342447644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507919] [to:14084712668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:18325497056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073889895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:18325497056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177732552] [to:+18506315065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19014517803] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569851] [to:18023709387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960621] [to:17028597460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206640060] [to:+19203933443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437266] [to:14422228074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349235] [to:13377181612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19014517803] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19014517803] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188693742] [to:12132944739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155259086] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033120989] [to:+17256661224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195699596] [to:+17194960195] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803358966] [to:+19802093554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132941338] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066174385] [to:+13477974551] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477818532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705302750] [to:+19148818665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232854719] [to:+12136163484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971058] [to:18039335417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569826] [to:15085255395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066174385] [to:+13477974551] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141287] [to:16318735216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182085399] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660038] [to:13022429061] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559837] [to:19172920898] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251541] [to:12146040960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19788958786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309685] [to:13477179666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:12488500767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19788958786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019790382] [to:+12405587809] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024911040] [to:+19142812754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164269] [to:17322282492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705515847] [to:+16513184718] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955806] [to:14026016859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14165203276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:13474654570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475231173] [to:+12048137291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036675909] [to:+19172318733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13303013590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437202] [to:12896847646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014272] [to:13043761268] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617632032] [to:+18572401422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168357802] [to:+16476911901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038431] [to:19294654271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204256319] [to:+17204637858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347962914] [to:+17279165053] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19364147593] [to:+18329877811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053308397] [to:+12138227002] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183156552] [to:+18108527731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053022789] [to:19059034091] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053308397] [to:+12138227002] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12402858025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022971847] [to:+15068038942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13346256512] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053308397] [to:+12138227002] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549182028] [to:+19172610967] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053022789] [to:19059034091] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865385111] [to:+19175808950] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195916721] [to:+12085012552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606178318] [to:+19172595939] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053057947] [to:+14159889423] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702771378] [to:+14044811147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-21 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239856] [to:+447518062150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172806695] [to:+14158538733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-21 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447784241180] [to:+447451215973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046984949] [to:+12048093291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203584163] [to:+17185042876] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12483282524] [to:14233162014] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723607654] [to:+17726177197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17126428430] [to:15407596482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407149] [to:18452629650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411970] [to:12269883544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054411264] [to:+17053026943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785808176] [to:+14704446258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286268] [to:14076199350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019297] [to:19022988006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185650397] [to:+19035277491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411688] [to:12267002199] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302903224] [to:+19177375960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735604] [to:17138261564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16394805323] [to:+16474963550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043078615] [to:+19785334082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473269] [to:16025297492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502747777] [to:+18508950634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528839924] [to:+14157876723] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186161004] [to:+15817008398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787238751] [to:+13479067600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052407611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-20 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447957083004] [to:+447451247976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804623] [to:12398222453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:13474892152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174684392] [to:+14848164763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047171966] [to:+12138733520] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056103687] [to:+15058004277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179945502] [to:+13478023719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872046521] [to:+19173911223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784847253] [to:+14242797071] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808370] [to:12693651230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179690828] [to:+16413165184] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415905648] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462404] [to:19736500943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-20 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776698] [to:12163070620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611663] [to:13474357207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404592022] [to:+14439737477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685041] [to:13043088973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144935824] [to:+13477735010] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194807978] [to:17192044711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168556917] [to:+17186755876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137377] [to:15103618197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048992774] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207390] [to:17657026681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072970317] [to:+19172594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359768] [to:15084156096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359768] [to:15084156096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16133153236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:18139259125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720761] [to:19419323140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19055188135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058794898] [to:+17864803932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731927] [to:17063055319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+14153227988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308700] [to:12139240553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:16175996264] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440164] [to:15182315414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960195] [to:17195699596] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029776] [to:19024141951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898500] [to:19197572850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123478731] [to:+16233839616] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695678378] [to:+12692244182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164661604] [to:+16163190153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305187736] [to:+13052036132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473815664] [to:+16474940511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18567453116] [to:+13476674413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132941338] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062602893] [to:+13477145133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671509] [to:13474198258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027541061] [to:+19028018416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069146696] [to:+13143842657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595939] [to:18606178318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449076] [to:19013140997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:18152132158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022083075] [to:+12342314005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:14025948991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969821] [to:12318307529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099327910] [to:+14097771148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068412086] [to:+12069469067] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784851844] [to:+19196516978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403887653] [to:+12405457903] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029863] [to:12523619277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750839] [to:17722039373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244098] [to:14348485782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:16788917492] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049221719] [to:+12048179589] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321508] [to:15875913036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:15144164179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188686951] [to:+15817021984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176029901] [to:+12132953375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183155929] [to:+15103404745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16123526362] [to:+15209997026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476566099] [to:+12897808771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193201760] [to:+12264555747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015852556] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801272] [to:16469307710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164763] [to:17174684392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:14025948991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328177901] [to:+18328045567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158685] [to:17025924782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12185766947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059754520] [to:+17053004988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314787780] [to:+16315723861] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19032654521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874641141] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19153050090] [to:+14693096784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004193] [to:19194389444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081889] [to:17325584827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302892] [to:14123392880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387108] [to:13234826936] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085201857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387108] [to:13234826936] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992553] [to:19084257771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062330629] [to:+19148818065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179388] [to:+12342313930] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12564578259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805445] [to:12894562314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653019] [to:17788722429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824257] [to:15856230545] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188686951] [to:+15817021984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592577650] [to:+15592239417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-10 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143181483] [to:+19142061277] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-21 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239077] [to:+447711865468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365124844] [to:+15103225785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-10 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19039412572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19039412572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-10 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-10 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965138] [to:16179018023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549182028] [to:+19172610967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524694972] [to:+19196517078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-10 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306054509] [to:+14158530473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286268] [to:14076199350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16472980707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196322681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992553] [to:19084257771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889260] [to:17656674460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-10 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15163134589] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145479183] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445831] [to:19152051251] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406226173] [to:+13476670361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-20 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D50501] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908991] [to:18604494080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134175835] [to:+13437001445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455383705] [to:+18455797200] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364609131] [to:+13366452483] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502323392] [to:17097708576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134752864] [to:+18133087256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733032269] [to:17736981541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049911793] [to:+14242769725] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019297] [to:19022988006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062472305] [to:+14706734996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104930] [to:12243816660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862645] [to:+19298411267] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031531] [to:12183085196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036900177] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005813] [to:17709120475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018605] [to:15062591993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14164764106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19542542177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026943] [to:17054411264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261478] [to:50372228895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164661604] [to:+16163190153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041009] [to:15025534936] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543172194] [to:+14695321599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054925320] [to:+17723601634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032310711] [to:+19032130669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086827831] [to:+12678444493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402350948] [to:+16172193265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139329] [to:17742655470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-21 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447875097527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792082238] [to:+19172751493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204081] [to:13174602421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207905] [to:14845972801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132941338] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-20 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-20 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248824292] [to:+17248033707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D50502] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-21 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930364229] [to:+447451201674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676945386] [to:+12677988803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558445] [to:18034008297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967246] [to:18503639195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:13033247296] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718933] [to:12106082885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396451393] [to:+17865673639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:13033247296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-21 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003110301] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159264783] [to:+12148147848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524694972] [to:+19196517078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16106999413] [to:14848858597] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043085429] [to:+18285486092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548326020] [to:+17542003113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195279700] [to:+19193240575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072138353] [to:13072541656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554747] [to:17198216159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039090571] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133614523] [to:+18438720566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053919223] [to:+18638552671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104593302] [to:+16467380987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D50503] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046713005] [to:+17194960348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-21 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003110302] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074258094] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951667] [to:14234437701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606177465] [to:+13479131061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:17063300054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996373] [to:12315997415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022362995] [to:+13025958971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031277] [to:19022102429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16473815664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073424038] [to:+17189627326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702263000] [to:+19033789006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:16813133017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283941804] [to:+14243361757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16132008433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:15193172026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15163134589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-21 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110303] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018715] [to:15064270288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049911793] [to:+14242769725] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437846129] [to:+17745498325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554747] [to:17198216159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479791] [to:15134106887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:17174952879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142424498] [to:+14387920514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966592] [to:18025571197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162722231] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857789496] [to:+15168285436] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455918] [to:13236325057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340254] [to:12105645372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038431] [to:19294654271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-20 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362625881] [to:+18582237512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473045379] [to:+18582401961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003890301] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203978] [to:14438751662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314787780] [to:+16315723861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003890302] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-20 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240745] [to:+447949317709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847695938] [to:+16106999227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706559362] [to:+15072626231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083146052] [to:+12627776684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003890303] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083477] [to:12703123904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940559] [to:14036185695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147429374] [to:+14502336953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024179004] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14124284216] [to:17247091324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563901778] [to:+13479569506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D50504] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653019] [to:17788722429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153452312] [to:+19015042445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059263129] [to:+15612403113] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815880508] [to:+15614916771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CD0201] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14349079790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995918] [to:16462891637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348485782] [to:+18046244098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003CD0202] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102797] [to:19074149400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12488127905] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815880508] [to:+15614916771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059263129] [to:+15612403113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062591993] [to:+15068018605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329462] [to:19172161003] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:18062908904] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:18062908904] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015744] [to:50372525553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14168395152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676959] [to:13308145236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302892] [to:14123392880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19152443636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013294] [to:12315703005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542685937] [to:+17864107329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:14047813665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389373568] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175152455] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-21 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18158141809] [to:+13123001979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018095] [to:13365809873] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755876] [to:12168556917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172692929] [to:+14706730685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784098] [to:13179006137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:16813130744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610967] [to:19549182028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136104109] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162185328] [to:+12085012019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152023148] [to:+16158075682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166245878] [to:+12894600762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13143842657] [to:17069146696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667388] [to:12154799754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018519] [to:13157179169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218253] [to:15132123417] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683119] [to:14023070052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-20 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203813] [to:+447919522330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17807125668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886881] [to:+18133082946] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:13479927772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328025673] [to:12109297518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:18189878251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D50505] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286906] [to:15404870328] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144171] [to:17326875325] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498163] [to:12405338295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869397] [to:19022188900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16479862558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147919278] [to:+14388042662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985200] [to:13022706189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364017242] [to:+13366450647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868374394] [to:+14073374049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150245803079] [to:+14018677848] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BF0201] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316721540] [to:+12138737356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045169] [to:14167685613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045169] [to:14167685613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045169] [to:14167685613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205908132] [to:12146093659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16183170823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187299] [to:13473557827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096680939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255068] [to:+13364500364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702358870] [to:+19142798168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178307837] [to:+16466328112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16208753416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911397] [to:17097710782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268669] [to:14022082859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145133] [to:16062602893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356149] [to:14792645435] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347996146] [to:+14353102411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15747251945] [to:12192049933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653216545] [to:+13866012963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097700643] [to:+17097004811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176814036] [to:+14073374830] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495744] [to:14044381605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-20 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447448535162] [to:+447451220153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137767] [to:13375166600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288411] [to:18035976588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175280281] [to:13176284083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063611405] [to:+14153408720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389033] [to:18608799864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16473098250] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825532414] [to:+14692052149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133285333] [to:+12065827532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735544981] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835170] [to:12039470613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220982] [to:17402778173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507197] [to:18033892780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-20 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522901320] [to:+15612408971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184162588] [to:+14143863986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381156] [to:13362640709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218207] [to:12525441636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406444094] [to:+12342313941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:19563776922] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:18193292278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176814036] [to:+14073374830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424407] [to:+15082711750] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573271619] [to:+13477697736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:16615203359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:16615203359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632236] [to:16417802502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12512293310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163028049] [to:+16474989388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706531859] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463732577] [to:+13479130227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077928] [to:15144302676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:15193172026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122783086] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134474385] [to:+18133085359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193044228] [to:+12264553257] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167359704] [to:+12894600917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189470023] [to:+19173834919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150245803079] [to:+14018677848] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BF0202] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466393141] [to:+16463494845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13052409610] [to:+14692057062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593605] [to:12502552674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192688032] [to:+18193076022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953175] [to:16625422549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474184] [to:17743033632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348485782] [to:+18046244098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042264771] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159264783] [to:+12148147848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874901] [to:17856390625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159046] [to:13373715942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763411] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E30301] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E30302] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E30303] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261478] [to:50372228895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:17579128873] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038799243] [to:+19034595742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046713005] [to:+17194960348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:17138059907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103855] [to:19546913079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14029991717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602241572] [to:+12602327663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14124284216] [to:14127730879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028597460] [to:+17029960621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:13237105646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602241572] [to:+12602777291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318103] [to:12314689397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239123699] [to:+12693366367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108091920] [to:+12674862868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162741438] [to:+17053001602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073547745] [to:+19172669376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437458470] [to:+19172836909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-10 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036532916] [to:+19703158262] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783589] [to:17044504153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673537407] [to:+13234865874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176760049] [to:+13479805812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:15102534743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320379] [to:13154019452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-10 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178098527] [to:+13475184643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272907582] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012442] [to:12089258369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168479307] [to:+14157878784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999805] [to:16065050752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434818] [to:14352100233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405368] [to:19096765584] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:12537541614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161412611962] [to:+15169082213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672014] [to:+15817005965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675174] [to:14345092727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695437647] [to:+18724003287] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036332] [to:18196619082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12568560608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12568560608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785088193] [to:+14049001372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-21 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+93793215474] [to:+447451200839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434299] [to:13143490405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318892876] [to:+13475184780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715967] [to:14136937190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-10 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039217074] [to:+13475076339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:17174952879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429207] [to:16092318917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785589964] [to:+16784348077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370484] [to:15146605839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991209] [to:15798888927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720761] [to:19419323140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17342715758] [to:+17348210348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845972801] [to:+14844207905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785088193] [to:+14049001372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594882] [to:19543910363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963857] [to:16472428275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-21 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447884373123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365391] [to:16074258094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:14436940870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16478929035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603094716] [to:+18609559400] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695329704] [to:+12694308243] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106799606] [to:+16108804590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-20 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-20 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314168098] [to:+15165443460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046713005] [to:+17194960348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14182085399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054925320] [to:+17723601634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991549] [to:12024913382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457903] [to:12403887653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14029991717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162350401] [to:+12167772174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17188094294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134175835] [to:+13437001445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12394054837] [to:+12392190430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954198] [to:19023030849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184407] [to:16512627401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473238] [to:12763656590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493132] [to:15807476392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003689] [to:14052028682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+15874049963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14152956882] [to:+19108888197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787918579] [to:+16783941364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162741438] [to:+17053001602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045217321] [to:+17185675354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:19015852556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569826] [to:14135220846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148227] [to:+14155494189] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16813130744] [to:+17408797130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265051546] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164661604] [to:+16163190153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069146696] [to:+13143842657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868374394] [to:+14073374049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600647] [to:15026448616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468209] [to:12072334283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:16143988147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18633378385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:14192085000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18158141809] [to:+13123001979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162722231] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040806] [to:12506448894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015721133] [to:+18623079671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453828] [to:14437606655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239035827] [to:+12134786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195322905] [to:+12267981016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021514] [to:19023296866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103917] [to:13055422579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13036216006] [to:+17205021765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148198643] [to:14389881448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038341190] [to:+13479789882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177824] [to:13606248838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699212] [to:12406035512] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652917316] [to:+12134786163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153157290] [to:+18722251431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020746] [to:15818860388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020746] [to:15818860388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673585] [to:16062737939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625826] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168282033] [to:+15162526035] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974187] [to:15703574652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444335] [to:16097272760] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029879] [to:17174660910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:14155259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:19702911119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:19702911119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450647] [to:13364017242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-21 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-11 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-10 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-11 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-11 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-11 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010557] [to:13062314968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-11 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318892876] [to:+13475184780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-11 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131061] [to:18606177465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980169] [to:16138484530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137867897] [to:+19146897449] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187051887] [to:+12148148640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437266] [to:13258647709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020746] [to:15818860388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014868253] [to:+19725348604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383920215] [to:+14318003832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133734048] [to:+19174094111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314168098] [to:+15165443460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653216545] [to:+13866012963] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084007273] [to:+18622278501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859676734] [to:+15852822695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024596056] [to:+18639491694] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807101] [to:13153989359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132003129] [to:+12135295359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981619] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845972801] [to:+14844207905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981619] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097441] [to:15145880598] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13157663928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699212] [to:12406035512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370805] [to:13302173550] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001480] [to:12812229919] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162801819] [to:+17162792433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032268121] [to:+14706734306] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043755002] [to:+17786529971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072190575] [to:+13866283895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15712103507] [to:18042412234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166034883] [to:+12342314488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837576] [to:13305249529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652296] [to:15199658926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-10 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:17405840563] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-10 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661163] [to:15858159448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022870263] [to:+18572329908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924904] [to:12402041912] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018095] [to:13365809873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102847062] [to:+16474918999] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862243] [to:18329449192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525664] [to:12675152897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364617] [to:+12342315321] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622989698] [to:+18185401976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042946085] [to:+19046947704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058477] [to:19028305624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095725] [to:15149946358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783343313] [to:+13479190294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736095] [to:14234401789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652296] [to:15199658926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635888772] [to:+16034132542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600917] [to:14167359704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875895653] [to:+16474916023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17019898501] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040110] [to:14104302167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572021875] [to:+13478120130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157152982] [to:+16158431476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980169] [to:16138484530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16269050962] [to:+18188535871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003550201] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003550202] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:15194366598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139098258] [to:16133304980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479979935] [to:17735124346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139668] [to:18142850736] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028399980] [to:+13475804812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:14155259086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481361] [to:15629407435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163371348] [to:+16164200481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340254] [to:12105645372] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809717] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061352] [to:18705573149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:14049575745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-20 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083146052] [to:+12627776684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026230] [to:14847695180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-11 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862707] [to:+12344017383] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526789] [to:15406718699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216450] [to:15704198417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245583] [to:13109993312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786730527] [to:+14706735242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147529] [to:12483085810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12564578259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181402] [to:13125889123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419861] [to:16019352106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084007273] [to:+18622278501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406842] [to:19057469763] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126520] [to:18565032364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993080] [to:12705668291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15714326046] [to:+17039967351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353816] [to:16606352114] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042729] [to:14068504855] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14847979685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15594160051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479429832] [to:+19177374375] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132109887] [to:+14158536525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024596] [to:17786798072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18038789195] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18038789195] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059064882] [to:+12898042204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15597240929] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15094312831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287682259] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18158141809] [to:+13123001979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-20 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628505] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487970011] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323146447] [to:+18638554062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132470] [to:18572516141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070176] [to:+16477994659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513498073] [to:+17636849675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527916] [to:15175541328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017742] [to:17403022654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685093] [to:+17727667444] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:12166403118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334724] [to:15174490719] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024179004] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487970011] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126798908] [to:+15129524127] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494845] [to:16466393141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197191936] [to:+12262411901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:17048366514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-21 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243998] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328614082] [to:+14242795619] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-20 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447940740355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228801] [to:17346597133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-20 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447940740355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137759] [to:17166387161] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017012590] [to:12014210498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158262] [to:18036532916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126798908] [to:+15129524127] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392421991] [to:+16467691647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135503488] [to:+19148609508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405594] [to:16478922471] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405594] [to:16478922471] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476781201] [to:+14072163507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159264783] [to:+12148147848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655324084] [to:+17659869072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168461882] [to:+16304892914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14174259543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730322] [to:15188940612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126059112] [to:+13476673993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703539906] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404079] [to:17863165536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17347966657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404079] [to:17863165536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173818636] [to:+13479376158] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404128542] [to:+14582025331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796167] [to:13363947314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947704] [to:19042946085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092060172] [to:+17073008779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405368] [to:19096765584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403364660] [to:+17402017786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523978431] [to:+17866515237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-10 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752683878] [to:+15058006635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234587351] [to:+19252397176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043461] [to:19028123267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177095071] [to:+17408797871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:12087044062] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817032319] [to:+18326501064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675794194] [to:+13476908840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190554] [to:16167881312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063389428] [to:+16699007553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:16789493238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703123904] [to:+15022083477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020435] [to:16037996854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057062] [to:13052409610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13179690828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269884376] [to:+19027058273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013552497] [to:16462996248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615077] [to:15177508757] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947704] [to:19042946085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026141400] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015721133] [to:+18623079671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132400153] [to:+16139098530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:15163766882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179345] [to:15106001047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049817859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0201] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-20 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074124808] [to:+17862200484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751229] [to:15709725976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957033] [to:14046929425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148147003] [to:14092381096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032D0202] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625422549] [to:+12132953175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065504538] [to:+14702963472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692280869] [to:+12533289635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:17736100502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172850486] [to:+13475184739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-21 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470428051] [to:+447451212747] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440294] [to:17573430490] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474020406] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593998294776] [to:+17182558101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-20 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406674367] [to:+12139927824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343333695] [to:+12136946793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967234] [to:14195777214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108750303] [to:+14158916658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126798908] [to:+15129524127] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026705506] [to:+19027046477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164526] [to:19195230804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473269] [to:16025297492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033991800] [to:+19033076634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174660910] [to:+12138029879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13618774332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16094102373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142424498] [to:+14387920514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627427677] [to:+16503008417] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105010204] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017012590] [to:12014210498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889764] [to:13176929712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404389310] [to:+12029991052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092508028] [to:+16025721880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12049976994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041312] [to:15024756508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19207400428] [to:+12628886808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018744312] [to:+19177086753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342547] [to:14705147924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036023997] [to:18636056361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:7:06080423B40201] -Feb 1 11:39:37 ip-10-0-0-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058796909] [to:+17864801272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-20 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624105] [to:+447894871386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593528026] [to:+16613063650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038482] [to:14015791909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328518] [to:19715999910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500036F0201] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083177851] [to:+12087633812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500036F0202] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066392296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488969] [to:15412974725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047813665] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080423B40202] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185045172] [to:18645389981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513095201] [to:12196041310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626003745] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145094010] [to:+12627775272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479956239] [to:+16474911307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046390987] [to:+12134785261] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14059227401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14059227401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822695] [to:15859676734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042264771] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053807274] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323183843] [to:+12135455743] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808933540] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731859] [to:14787374836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122783086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132008433] [to:+16136048237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046390987] [to:+12134785261] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063140544] [to:+13069932473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046390987] [to:+12134785261] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-21 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192580933] [to:+17194265343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293083646] [to:+13072137532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784847253] [to:+14242797071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397213] [to:+13476673757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294571560] [to:+14243364917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-20 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126318663] [to:+12138739728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892801555] [to:+19895334075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356149] [to:14792645435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138061339] [to:+16139098455] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483085810] [to:+19893147529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288441] [to:13106546786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:15166593612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053807889] [to:+17053006350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-21 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930053106] [to:+447451238236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12512293310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14389373568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502552674] [to:+16042593605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177824] [to:13607714021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804842836] [to:+14073372223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068704668] [to:+14706734880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053096575] [to:+17053028687] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155259086] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144425306] [to:+13475086580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102534743] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327023193] [to:+14158908082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615077] [to:12313502390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-20 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292727877] [to:+14155620997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364749] [to:12158265353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176435730] [to:+18572406056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:19015852556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242368081] [to:12406260319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186288] [to:13232419052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007012] [to:14144849712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058406] [to:19027511076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15594700660] [to:15599011635] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:12087044062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19103546714] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605355322] [to:+18638557884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594982] [to:16049962986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306054509] [to:+14158530473] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745384550] [to:+18134301575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147369801] [to:+17408798858] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:19737237030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797595] [to:13479651294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126366987] [to:+16125023396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:14049748655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440294] [to:17737240739] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:14049748655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168078552] [to:+19166373923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898545838] [to:+17636849995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-20 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215973] [to:+447784241180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667905] [to:17654803139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193876237] [to:+15068039873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139177237] [to:+16139096612] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043461] [to:19022136006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13618774332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444503] [to:16095335183] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830005] [to:50230360825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830005] [to:50230360825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096602489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178278193] [to:+12132371656] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406408] [to:16266248591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857751218] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:18597072022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181402] [to:18304617686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637313] [to:13173842806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751229] [to:15709725976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937865] [to:12702503921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319055718] [to:+16319802443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968061] [to:14707758922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139676] [to:15089040273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17788739747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036699520] [to:+15612407896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:18025829439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016346] [to:13305188425] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444097] [to:12679082552] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:12087044062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288441] [to:13106546786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037B0202] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500037B0201] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473815664] [to:+16474940511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911764] [to:16134064935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465834346] [to:+19172318299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244098] [to:14348485782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860435] [to:15136784078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-20 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017012590] [to:12014210498] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-21 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057681868] [to:+17053025754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088753] [to:14049662339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145094010] [to:+12627775272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825611] [to:19135752241] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147529] [to:12483085810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195011470] [to:+12264551248] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058616955] [to:+18572409189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274737] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18164197261] [to:+16465139617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593528026] [to:+16613063650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361403] [to:15137879005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195011470] [to:+12264551248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-21 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608094] [to:+447849587161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873572855] [to:+15874090821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16476861099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195011470] [to:+12264551248] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406718699] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344014113] [to:+14342340199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:19055179019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17193627961] [to:+17199990484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-21 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447852175418] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-20 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003630201] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325375883] [to:+15103131091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663749] [to:13046855458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-20 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220733] [to:+447952760887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127996] [to:12542286754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12036900177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:19179827171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14142022368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087003] [to:17805173586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303404873] [to:+13395459478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305764] [to:16187045446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17808509100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:13234073345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383473401] [to:+14387940790] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003689] [to:14056644109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473815664] [to:+16474940511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929258] [to:17808703252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153136417] [to:+12677939213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070176] [to:+16477994659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-21 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14143863986] [to:13184162588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192044711] [to:+17194807978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872046521] [to:+19173911223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438557015] [to:+17279353329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143643911] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402350948] [to:+16172193265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172850486] [to:+13475184739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102545138] [to:+15068041844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179700125] [to:+13866012007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196159130] [to:+14197768033] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570094] [to:15195667713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317039683] [to:+19173911215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493582804] [to:+18678883672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326504912] [to:13615714012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708411772] [to:+17727745479] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365809873] [to:+13367018095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:13344984421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836743] [to:19893324379] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473283852] [to:+16474914033] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438836] [to:15045091052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421675] [to:+13479130572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886869] [to:+17189628634] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506125946] [to:+12138733498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095403898] [to:+14097771073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165723173] [to:+17072427797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859676734] [to:+15852822695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195699596] [to:+17194960195] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18304806101] [to:+12816033167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504055550] [to:+13053400809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349079790] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991508] [to:12405850128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-20 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062611905] [to:+19148608471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133340815] [to:+17279986375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053909] [to:17272446776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078680055] [to:+16042437092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786085] [to:17135914808] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:15879906085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002206] [to:15404352624] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002206] [to:15404352624] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688316] [to:13156018966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195905387] [to:+14146006770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003070202] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003070201] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701956] [to:+13477974576] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479927772] [to:+16463494458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038473106] [to:+18506314093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319237145] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105374303] [to:+12485375933] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383595] [to:13365587509] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364017242] [to:+13366450647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193627237] [to:16195777819] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-21 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026485910] [to:+15865747895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137209039] [to:+19492453060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054740032] [to:+16503377592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672014] [to:+15817005965] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338899] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105275422] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022211050] [to:+15068039680] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019094] [to:16105153027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708715100] [to:+17278602358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089258369] [to:+12085012442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783993389] [to:+19785334213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017605] [to:17064281208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952667] [to:16478892452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125090805] [to:+13478023674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004971] [to:17053580925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-20 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+2348084392871] [to:+447520623696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18593396464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222337] [to:18458533628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483085810] [to:+19893147529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799194] [to:12059146819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084257771] [to:+19088992553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19373292118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708950165] [to:+13216137599] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-20 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905122] [to:+15817021025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034275574] [to:+18033104557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874059758] [to:17808841248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963904] [to:14435396746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134279192] [to:+14073371106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064078715] [to:+17702005580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054740032] [to:+16503377592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122169380] [to:+14157879171] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305171333] [to:+14153404607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13618774332] [to:+18326502532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12812229919] [to:+17475001480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654803139] [to:+17736667905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374731] [to:13308064775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874059758] [to:17808841248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004464] [to:14049143567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592614] [to:12703319713] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691647] [to:19392421991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403229558] [to:+12346507731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:13234073345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107258875] [to:+16177065562] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094169976] [to:+17074032649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042640] [to:18192309902] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065915827] [to:+13477697873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799194] [to:12059146819] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702020788] [to:+13477962169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146155] [to:19805055307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302173550] [to:+13302370805] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173467694] [to:+16149228917] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976203] [to:19283038791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438945] [to:+18053666511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742974623] [to:+17256660335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236619794] [to:+15703973125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:12269269118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15807476392] [to:+18639493132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035682661] [to:+15617665231] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014637390] [to:+12138028437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E40301] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+13064000458] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708325220] [to:+15703974030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124055] [to:14434931007] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16052318797] [to:16059063716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306103659] [to:+13479139459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+13064000458] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022402201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006029] [to:18435355357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083477] [to:12703123904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031E0301] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043613543] [to:+15109722166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:19053807274] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:19053807274] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:19053807274] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498949] [to:16194514605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968007] [to:14152400262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15852306478] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031E0302] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278809] [to:16064162519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105859] [to:16105743731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031E0303] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194429865] [to:+14197316108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019284] [to:17097716531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749162] [to:18127777864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12486131644] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14159479692] [to:+18583605409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608612886] [to:+15163625366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173722433] [to:+19142795409] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502552674] [to:+16042593605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878784] [to:19168479307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074985845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074985845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824417] [to:15853638595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024173872] [to:+13072753763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825016] [to:15856890672] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E40302] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332813] [to:15807131823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439863196] [to:+12405538345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:19059998491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704859430] [to:+16106999845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500035F0201] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624738379] [to:15625843405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849514218] [to:+12148149351] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493389] [to:18137773879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500035F0202] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607710725] [to:+13479803713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797151390] [to:+19177376248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407481] [to:13157675003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587809] [to:13019790382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375161187] [to:+12133550686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068290774] [to:+13479568526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007670] [to:17049741164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478394821] [to:+13476191458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17066993032] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077975237] [to:+19542993895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162672] [to:19102828933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563752956] [to:+12342314093] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015413810] [to:+12139352877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897152] [to:15103447931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147962954] [to:+14388077253] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:15182385413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-11 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162648951] [to:+16162390235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054925320] [to:+17723601634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003E40303] -Feb 1 11:40:16 ip-10-0-64-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408290880] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16473815664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068290774] [to:+13479568526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573769963] [to:+12138064390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182955135] [to:+12134547584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212119] [to:19292397210] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955955] [to:14183789717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12105714563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130045] [to:+14344736493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785261] [to:13046390987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-20 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139259125] [to:+15107799580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614972488] [to:+16614418253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784053957] [to:12052462468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784053957] [to:12052462468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433978168] [to:+14437205955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556968] [to:18132417402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:17405840563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066392296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:16042029173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16139177593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-20 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202883] [to:+447851032355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-20 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202883] [to:+447851032355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175517] [to:18286781304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161012] [to:19196303050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161012] [to:19196303050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164160577] [to:+16476998388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:17249895491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032007055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142149] [to:13129983038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338893] [to:13343066139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102472261] [to:+14156493541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14028803315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076925108] [to:+13214065729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789003257] [to:+14706734430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109060254] [to:+16109105199] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19102971614] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13052409610] [to:+14692057062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:19542037726] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720853] [to:18432269168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393166836] [to:+14842842351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376182400] [to:+12133550105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076925108] [to:+13214065729] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638014855] [to:+18637347466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159186033] [to:+15154438660] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863862] [to:15082943471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19102971614] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12269724475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102797] [to:19074149400] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390424] [to:12267897808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140085] [to:15704521034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236090937] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053754262] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012442] [to:12089258369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13618774332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126678] [to:18569821812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19854150257] [to:+12139212900] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545899168] [to:+19417256297] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-20 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125838408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624738379] [to:15625843405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032742974] [to:+12139926488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099402] [to:16133620404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784854377] [to:+17277569843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787606441] [to:+14049004021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102472261] [to:+14156493541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477416899] [to:14233885448] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937576] [to:19057827915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669493] [to:17186666668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208094818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689406] [to:17545813721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208094818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017479200] [to:+14056213263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029879] [to:17174660910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163134589] [to:+15165977957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102971664] [to:+14849869017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037514] [to:18285699063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622957420] [to:+14158535082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493389] [to:18135163595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223472] [to:19123900354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-21 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337090] [to:+447873873197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988121] [to:18173501348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190029] [to:16162839064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023209] [to:14185648084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14149141424] [to:+14146006480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+18173637313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938810] [to:12673990230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:12055698936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990346] [to:13013886479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898904200] [to:+14158403993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862758139] [to:+15865746729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064003158] [to:17802740448] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782384414] [to:19789186789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991330] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148146] [to:+15082711371] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404389310] [to:+12029991052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458930770] [to:+18456222273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195667713] [to:+12264570094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305527452] [to:+15304882684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052469112] [to:+19492981033] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246465] [to:12145098787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800398] [to:15165823536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102472261] [to:+14156493541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17047508313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478892452] [to:+16474952667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526789] [to:17173296833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-20 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812552] [to:13155708386] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139177237] [to:+16139096612] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192907696] [to:+13309681978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040310] [to:+15172585092] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135220846] [to:+15085569826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176219323] [to:+13312087409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527404] [to:17575153105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824887] [to:15023315178] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:18453892970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438836] [to:15043314624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039470613] [to:+19172835170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12269776123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-21 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19724152044] [to:+13212700851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157020] [to:13306159829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434163265] [to:+14438550884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097716531] [to:+17097019284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18183875136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:15155207041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568526] [to:17068290774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853758854] [to:+18178184630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503617191] [to:+12148149438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:16108091920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063650] [to:15593528026] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354528] [to:14126527470] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041562] [to:13179036273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884760] [to:14439832454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356048] [to:15173926212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404467429] [to:+17034199163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771455] [to:18018360894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477120185] [to:+16474916097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478618189] [to:+16463497445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438252749] [to:+17745498325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19135752241] [to:+17123825611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477168649] [to:+14503286393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-20 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:19045378680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012963] [to:18653216545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:17272551635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041312] [to:14043375495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946106] [to:13302241607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191134] [to:18635583809] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-21 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447511075565] [to:+447418336845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742000288] [to:+13219998755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049991563] [to:+18046650257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161245] [to:19194491104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218253] [to:15132123417] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253337739] [to:+14158907745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805173586] [to:+15874087003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405122500] [to:+16149180195] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438252749] [to:+17745498325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123390633] [to:+13479379774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863081529] [to:+13312086100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018782896] [to:+19014449167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003ED0201] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274737] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446516] [to:+12267983336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042141366] [to:+17273332348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18708266190] [to:+14242836323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158142] [to:17024124140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802810448] [to:+15873322555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050437] [to:19729469004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003ED0202] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992553] [to:19084257771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176219323] [to:+13312087409] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015696703] [to:+13476568257] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152365659] [to:+13477699324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:12344105575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166245878] [to:+12894600762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594637] [to:17788478782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015306885] [to:+19014449676] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17185067069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134276869] [to:+12138739393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065133] [to:17042583160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137721] [to:19105275422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189770875] [to:+12132959694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046606562] [to:+13369382199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407082411] [to:+17408798448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015565298] [to:+14242846184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139081] [to:14702094272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095665270] [to:+19093405860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176929712] [to:+13176889764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093520887] [to:+18563126073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015249767] [to:+13012311167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833658] [to:17022018705] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585909] [to:15097315499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255068] [to:+13364500364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313294531] [to:+15124007190] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501295] [to:17064665363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815872] [to:15137959741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404370] [to:13305180312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504912089] [to:+13866017680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148065657] [to:+14387942039] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016757512] [to:+14018677509] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187510338] [to:16462876977] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477812697] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132597798] [to:+18133316673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024498554] [to:+17027794166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15167257290] [to:+19176634753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035628899] [to:+16034138121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193567558] [to:+18484828998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320468] [to:13157260152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783053006] [to:+14695323996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450647] [to:13364017242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13073924435] [to:+14072161884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014521853] [to:+14157878982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-21 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384984686] [to:+14387945342] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187767342] [to:+19177730322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024037469] [to:+19027003988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473533547] [to:+13475185492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523706772] [to:+12138068778] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18169201381] [to:+16513184804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032040145] [to:+14308088315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012885827] [to:+18133086540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407665] [to:15612944177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302406] [to:17089264835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854659343] [to:+17162792216] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15082711868] [to:12602409317] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-21 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003800201] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-10 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188785364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039192858] [to:+15873280388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563322335] [to:+19599999565] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896988870] [to:+12262418246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619002973] [to:+16612285702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:15145180451] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:12263123561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878311] [to:19362014822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236393607] [to:+12138614120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353816] [to:16606352114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836909] [to:14437458470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981139] [to:15105937641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005652] [to:14043543755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349254943] [to:+18108528357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14026864842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053909] [to:17272446776] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620997] [to:12292727877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625676664] [to:+16465472246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-20 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475272720] [to:+16474965198] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856892245] [to:+19142812178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565032364] [to:+18563126520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:14012271456] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869572581] [to:+17277679349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419727] [to:14084896037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17149473429] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994820] [to:19856878604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361403] [to:15133495831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109723240] [to:+12678676873] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364017242] [to:+13366450647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407227141] [to:+15072626621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349254943] [to:+18108528357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13073924435] [to:+14072161884] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137773879] [to:+18639493389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162428893] [to:+12162396084] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615182] [to:15179458778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168255786] [to:+18077880178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257862] [to:16362848341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15012313955] [to:+16467691310] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-20 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-21 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315647] [to:18503540817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082943471] [to:+17817863862] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419752] [to:12693488083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052340195] [to:+15592232463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064281208] [to:+13866017605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375421] [to:14235050342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684260] [to:18652106083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408139] [to:13528167172] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532367741] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783053006] [to:+14695323996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063614820] [to:+14703335576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406674367] [to:+12139927824] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800786] [to:15089697763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896988870] [to:+12262418246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18502263564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631650] [to:17752356247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745384550] [to:+18107725285] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864430342] [to:+12048093485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152443636] [to:+15122657511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287682259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-21 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-21 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447913467969] [to:+447451211261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916097] [to:16477120185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657483] [to:18134100921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809821773] [to:+15874004806] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864430342] [to:+12048093485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126527470] [to:+14125354528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305355] [to:16186042842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334483] [to:17067677526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107292554] [to:+18102218189] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175155532] [to:+13479190671] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069096310] [to:+13479067867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17185064718] [to:+15169341911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792452178] [to:+18724008386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485535] [to:12149713809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049311654] [to:+15109482643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432634185] [to:+18438720560] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958694] [to:12256630515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086827831] [to:+12672777535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796017342] [to:+15103227863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042635211] [to:+18133084211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022429061] [to:+19172660038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312336115] [to:+16314907373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18475218629] [to:+17203586378] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198247849] [to:+13478967078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:16015203796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587461] [to:14406547192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896988870] [to:+12262418246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227079] [to:12298157523] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605223392] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-20 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205322] [to:+447469705468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057908066] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:19734335187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122761578] [to:+16158075990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18129634314] [to:+19177905426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918976] [to:16048189815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052737108] [to:+13479478436] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044961310] [to:+13057355979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134276869] [to:+12138739393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026339066] [to:+16233837835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204953] [to:14434096150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146266] [to:19735178162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137721] [to:19105991330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-20 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238982449] [to:+12627775221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592879] [to:16785700121] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17146570664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788842599] [to:+19783619091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099751199] [to:+15209996186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083104729] [to:+12087574526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334751] [to:19894942990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981139] [to:18156213157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802886] [to:16024029790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12512293310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062023648] [to:+13064000398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401976] [to:15622989698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138443] [to:12522135148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174380380] [to:+13072759034] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286061] [to:12769528338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14349079790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237148364] [to:+17733132642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362373471] [to:19024031469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-21 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447960748497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822695] [to:15859676734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567424] [to:12487597172] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022208944] [to:+19027062464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:17349043488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612013530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:16783537433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:12403672433] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148231] [to:+17073007464] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066819389] [to:+13069928092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800458] [to:15167432146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004021] [to:16787606441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562391199] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672014] [to:+15817005965] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493389] [to:18638088654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-20 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955503] [to:16476085144] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721202] [to:15042989185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:18454016037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305390] [to:18034048847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059465006] [to:+18053941845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892934364] [to:+14242867432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865030340] [to:13528070483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:12344105575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138363] [to:17708371223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198795427] [to:+19166371549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168851385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204336] [to:14437894249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068778] [to:12523706772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176961779] [to:+12017428793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148246324] [to:+14388072408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146093659] [to:+17205908132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122783086] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174142753] [to:+13473897098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178284120] [to:+14158536261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329315609] [to:+12105718194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067161817] [to:+14703336645] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292060574] [to:+12139212522] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189068425] [to:+15817014960] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15749039878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132597798] [to:+18133316673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19132673655] [to:+17323287740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993032] [to:+14706734025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168040043] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198906002] [to:+12267982255] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478173] [to:15404507957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084634847] [to:+13478023371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084634847] [to:+13478023371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065371886] [to:+16784968802] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174753332] [to:+12679077716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836964] [to:18605753288] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033673039] [to:+18133208737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193037745] [to:16133225096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559836] [to:15193006368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559836] [to:15193006368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12087915382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393837] [to:13092645177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326505529] [to:18329680040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123455] [to:16785991331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123990] [to:16787698846] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-20 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430947] [to:16203886004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431580] [to:12269806097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015306885] [to:+19014449676] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18502263564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17348589070] [to:+12136036303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994820] [to:13377356193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513919797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016041005] [to:+17206235720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003070201] -Feb 1 11:40:58 ip-10-0-0-20 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447771591716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898545838] [to:+17636849995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034774307] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17348589070] [to:+12136036303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176150553] [to:+16515608164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12489781172] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550884] [to:14434163265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077890257] [to:12042944132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237148364] [to:+17733132642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771455] [to:18018360894] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178278193] [to:+12135596538] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+13478029229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493132] [to:15807476392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223472] [to:19122863554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139665170] [to:+18133201485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132927510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14846339152] [to:13475892018] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176284083] [to:+13175280281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105233] [to:19148302579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001032] [to:18643478865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019682119] [to:+15733623367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436938] [to:15198172328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342005] [to:14044545266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265983633] [to:+17323624355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17042546241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12627483219] [to:+19176634497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627548] [to:18456493568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-21 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792166739] [to:+447520607931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759034] [to:14174380380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13477856607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338504] [to:19145364234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073539021] [to:+14044811581] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023025] [to:14187205306] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106903098] [to:+13203737521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14436531995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047842917] [to:+12132957246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190029] [to:16162839064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036196136] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18629558112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477046128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-10 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865030340] [to:13528070483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873270614] [to:15875759078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-10 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742138660] [to:+15617666916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17146570664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-20 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156918952] [to:15024351842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501578] [to:15129633372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16024737420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329967] [to:18048373858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-20 mdr: 2016-02-01 11:41:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930053106] [to:+447451238236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-10 mdr: 2016-02-01 11:41:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749162] [to:16185991268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087003] [to:17805173586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431580] [to:12269806097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-21 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502552674] [to:+16042593605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809527] [to:15703770381] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739490375] [to:+17736690296] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+15874084459] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17073827343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163414221] [to:13365148747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725582] [to:18105774599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703123904] [to:+15022083477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336782] [to:13474600877] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336782] [to:13474600877] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570094] [to:15195667713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336782] [to:13474600877] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804237] [to:18143319115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149690879] [to:+14503286092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153736093] [to:+19142795727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579285183] [to:+19142062460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315797] [to:15862318800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061366] [to:18038073907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039990788] [to:+15713500640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196165877] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034773] [to:12819011414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102653513] [to:+18103393940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072854738] [to:+14146004325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18702736100] [to:+19015042897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148989901] [to:+14388088266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739490375] [to:+17736690296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053754262] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12103654167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998506] [to:17049050577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129335157] [to:+17736666015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998209] [to:14507509545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096362758] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025090222] [to:+13478086415] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196165877] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797546] [to:13474376206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076702512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196165877] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518707543] [to:+16178634852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448067] [to:17639134213] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-21 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447813623769] [to:+447520673964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:19514566955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286061] [to:15404938810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-20 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237148364] [to:+17733132642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642213651] [to:+16475569075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163205] [to:18605199688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403887653] [to:+12405457903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376267] [to:17175869438] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366622111] [to:+14243364981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316242032] [to:+12312663129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734892989] [to:+13479808547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212180] [to:12815715489] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328950331] [to:+15165977875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731352] [to:15015742802] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127579] [to:527711528745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028437] [to:15014637390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635388223] [to:15635647569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742655470] [to:+16172139329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-11 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:15879906085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421913] [to:18323428517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802886] [to:13214024139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006975] [to:17058081229] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144814] [to:19548257501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222273] [to:18458930770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-10 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:14135305937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:19514566955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163717] [to:14043951831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951269] [to:19045637759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-21 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14233226427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869572581] [to:+17277679349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:15188660195] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148136] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071423] [to:15148920786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605465] [to:15056862016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075413] [to:15145015061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370805] [to:13302173550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286293] [to:15402938727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992537] [to:14092232665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473045379] [to:+18582401961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053754262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378238] [to:17068778145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611322] [to:13602701837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629316] [to:12673485804] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993173] [to:16106538923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625984655] [to:+12627776116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068607882] [to:+13065004263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124760] [to:14842418245] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245955473] [to:+13125099763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474072231] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157179169] [to:+16467018519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026835973] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164309122] [to:+16162390386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857757662] [to:+16464751219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026230] [to:14847695180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:19514566955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-20 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338899] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449167] [to:19018782896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003740301] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942127] [to:15143476271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862246] [to:19292316010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608471] [to:16062611905] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213263] [to:16017479200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133568194] [to:+16178619678] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856878604] [to:+19542994820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328614082] [to:+14242795619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:14046947405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742138660] [to:+15617666916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134072605] [to:+16136041988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526242153569] [to:+17813862838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735771] [to:15048120439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704198417] [to:+15705216450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-10 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862816] [to:16108095698] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735344] [to:17068255619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615226] [to:13236439744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-20 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447502732995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12156068019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188940612] [to:+19177730322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097272760] [to:+12678444335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402350948] [to:+16172193265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581337] [to:16787793896] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-21 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451207362] [to:+447979471671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166245878] [to:+12894600762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+15874084459] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375642208] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148678] [to:12404317279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165246] [to:14698316675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17066993032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19025992885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026149266] [to:+13478968426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569271] [to:14798836437] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802094] [to:16314168646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802094] [to:16314168646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789186789] [to:+19782384414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139488] [to:14785503257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168479307] [to:+14157878784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046984949] [to:+12048093291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123041537] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032638] [to:15157299855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193037745] [to:16133225096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196340341] [to:+12267792991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072970] [to:18063409384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524691532] [to:+15102549848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15012607926] [to:+14148824989] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546622656] [to:+19543144368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802886] [to:13214024139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057062] [to:13052409610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548999794] [to:+16784342383] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249317470] [to:+14128193461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190180] [to:13473674623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373292118] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466875718] [to:12039531596] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-20 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447943410006] [to:+447451246220] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991330] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17185067069] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-21 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-10 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:527861001682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-10 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716867460] [to:+14158538753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-10 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:15712640967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-10 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018598364] [to:+13017786538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863363098] [to:+13866016659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003740302] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393716] [to:16192884468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347022] [to:18637096783] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150256015870] [to:+14043411026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817246] [to:15704859613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:17244751047] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123226819] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334085] [to:12519797535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691800] [to:13372449727] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083477] [to:12703123904] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039673] [to:15064800258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139148] [to:19083616202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031653] [to:19027542344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817016187] [to:15813183044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062244134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094232] [to:12406028613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154443] [to:+19725348714] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033104548] [to:18035143296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540879] [to:16502012287] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-21 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605209] [to:+447908662033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899465] [to:13136037751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144466] [to:16014339126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042501370] [to:+19196516584] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143797109] [to:+14144006547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-21 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195667713] [to:+12264570094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478088] [to:15169650645] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041286] [to:16139030067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688219] [to:16463276090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435614007] [to:+14435299748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712833721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039890019] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136579083] [to:+13479804016] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472246] [to:16625676664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185648084] [to:+15817023209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126520] [to:18565032364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609106206] [to:+13478022773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195663586] [to:+13309358252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669296] [to:16074445258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474953358] [to:+19176366827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743611683] [to:+12602327565] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282287470] [to:+14692055414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152179465] [to:+18456220981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403557290] [to:+13015699231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188471439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793533708] [to:+14155698309] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:16789737082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:16789737082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147529] [to:12483085810] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288396] [to:12316226271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056046941] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19164963348] [to:+12092511148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-20 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693488083] [to:+17073419752] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-21 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447788212505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027719324] [to:+17027475637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-21 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563483097] [to:+12547356478] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-21 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624532] [to:+447789778722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349043488] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014637390] [to:+12138028437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063089597] [to:+17279166773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123873051] [to:+12134786873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443512] [to:+13025957430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092516440] [to:14356409539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789368281] [to:+16784342477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696154394] [to:+15748578975] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003740303] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14438630307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12049976994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053754262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12344105575] [to:+13053400830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046171335] [to:+17784032997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209529] [to:18134315699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043142168] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053134135] [to:+15056007549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603186] [to:18702093290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038073907] [to:+14694061366] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:12493582804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:16032096760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504587] [to:18609856432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017605] [to:17064281208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13072598488] [to:+13072138389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13166804610] [to:+14157995573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12103654167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196340341] [to:+12267792991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:16465525925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105869538] [to:+15103228698] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-21 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-20 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748531336] [to:+447418332648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0202] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15158640828] [to:15155776883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12136337790] [to:+16162755248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163554741] [to:+16467018036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192427989] [to:+15104474940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765941664] [to:+12135297733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349079790] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779860556142] [to:+15092623399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19057836587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862243] [to:18329449192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306417725] [to:+14158909052] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13376802182] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028401486] [to:+19027021544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404745] [to:13183155929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606019738] [to:+14259478723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019893] [to:16047818900] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029211] [to:13166892897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14023070052] [to:+13478683119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-21 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242937] [to:+447946297227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326865] [to:14696727922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128278] [to:15033677126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018782896] [to:+19014449167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143255] [to:12515509761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454159] [to:14344142097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102653513] [to:+18103393940] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:12293310606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006975] [to:17058081229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017481096] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570094] [to:15195667713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-20 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014010769] [to:+17607014528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412033632] [to:+18133202054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433072967] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-11 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094232] [to:12406028613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737140] [to:14439962519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612013530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872986866] [to:+15125597512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018639] [to:19026290767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15039890019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049136120] [to:+18585199132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088975] [to:17062049565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138035460] [to:+16139092530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157673199] [to:+19177374530] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197329230] [to:+12262418030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144466] [to:16014339126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894942990] [to:+19895334751] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14438630307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19374672208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13072541656] [to:+13072138353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196992] [to:12703700148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:18127014630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849343] [to:12706191234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093547310] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:13045493860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433050] [to:16155784326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035976588] [to:+17747288411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992984] [to:16476871881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139329] [to:17742655470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-10 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373424] [to:13214398941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369050] [to:14028927729] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:18018575198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:13013053800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-10 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183868394] [to:+13478303673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14793065705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-10 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477856607] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-10 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12424240545] [to:+15172585792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16518006100] [to:+18134300325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12424240545] [to:+15172585792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302173550] [to:+13302370805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12149713809] [to:+19038485535] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419808669] [to:+15417900432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661210] [to:17166501279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934459] [to:19053761423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:18656583095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:19053997098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548220560] [to:+19046947910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748649] [to:12294158102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783341905] [to:+12138029590] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372149009] [to:+19172610837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13097408338] [to:+13479569841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090360] [to:+13479804016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326865] [to:14696727922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587756] [to:15138074764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572669112] [to:+19177370423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-20 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059021066] [to:+19172751767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449167] [to:19018782896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702897395] [to:+13479713797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090360] [to:+13479804016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157179169] [to:+16467018519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096602489] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961966] [to:15713599159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007548] [to:14502043417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136302831] [to:+15617666340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546706740] [to:+18133081520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023220179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347473797] [to:+17348228546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158265353] [to:+14243364749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403297018] [to:+12672777605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004462] [to:14046219591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632802451] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163507] [to:13476781201] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474020406] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16477925318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178089967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178089967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158909052] [to:13306417725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604491941] [to:+12602327543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404732] [to:13057854264] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767644] [to:14197097860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409257655] [to:+12406857736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049157640] [to:+12048086764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303237325] [to:+13302374954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063240443] [to:+15874101578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647122351] [to:+17636560125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-20 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403981777] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344366401] [to:17345459366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167939845] [to:+15109480058] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714448234] [to:18434722266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142068776] [to:18027292391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049318274] [to:+13474863548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042426649] [to:+12026015717] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078500017] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022740712] [to:+12404926970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817199] [to:12703669434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15807476392] [to:+18639493132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968915] [to:17708236616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163414221] [to:13366930772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634450608] [to:+18638557497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994820] [to:19856878604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364144] [to:+13477989802] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694613214] [to:+13479478103] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347997129] [to:+17344365127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12548337646] [to:+13479804010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313634415] [to:+17315744227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024200816] [to:+15714454358] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281313] [to:14806691429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13376802182] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677509] [to:14016757512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392421991] [to:+16467691647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007756] [to:16476331128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-21 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447428156536] [to:+447418325112] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336144] [to:18126554507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167891551] [to:+14406587753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137959741] [to:+19142815872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061366] [to:18038073907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195866] [to:14045439998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152006926] [to:+15852822374] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028535795] [to:+12405587796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010201] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049157640] [to:+12048086764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156701914] [to:+13476762599] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968802] [to:17065371886] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872986866] [to:+15125597512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028535795] [to:+12405587796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010202] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097977834] [to:16063364556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:13013053800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476311812] [to:+16474911631] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796194] [to:12702509778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-20 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784847253] [to:+14242797071] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735985023] [to:+17073418824] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457903] [to:12403887653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426107] [to:19012120512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:14236090937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14166483466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863363] [to:19183047007] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776116] [to:12625984655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14693179796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003700201] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:18138987247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-20 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-21 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320991] [to:+447971136440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464395339] [to:+19173911776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163999138] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862830] [to:12154313161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103654167] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042911] [to:19027016139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134064935] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072449142] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749039878] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921699] [to:16023139998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000398] [to:13062023648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328276] [to:15135356668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454590] [to:12182308692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213171797] [to:+13217309541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16047675847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+14153671979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968055] [to:12286976131] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968055] [to:12286976131] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968055] [to:12286976131] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626218152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245416] [to:17576477468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739747] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698316675] [to:+17279165246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168479307] [to:+14157878784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676718488] [to:+12138023206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671927] [to:+13479862076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159183748] [to:+16467019472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660335] [to:15742974623] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:16099035175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:16099035175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14693179796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003700202] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313337106] [to:+13024991974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673492] [to:17173713372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17037855957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034196400] [to:+16465641653] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474020406] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612818046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328950331] [to:+15165977875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525841819] [to:+19199163818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672308266] [to:+12674377072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528070483] [to:+17865030340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884101] [to:14344296154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844260438] [to:+14843979247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-20 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17343085065] [to:+15172527492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13198990300] [to:+19172661348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068255619] [to:+14706735344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160591] [to:18632417044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473831302] [to:+17472237475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478305] [to:17024235341] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075915] [to:15148042873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169690816] [to:+14158532430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745731] [to:18176093678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123455] [to:16785991331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064281208] [to:+13866017605] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-20 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12548337646] [to:+13479804010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196992] [to:12707343520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185699892] [to:+15817009370] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622414530] [to:+19492981941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022779] [to:17097437314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819681] [to:14195713245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148168415] [to:+16467691308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001673] [to:12498788642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165246] [to:13185339180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477046128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605465] [to:15056862016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011524774658285] [to:+16193592156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538526] [to:13344704245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-20 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548591] [to:13853336737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822023327] [to:+19365878100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028620093] [to:+13852657536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432318089] [to:+12132896001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405410707] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187180142] [to:+19259574733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074985845] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647810] [to:+19717328525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010983] [to:12086601300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037072791] [to:+19148988455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469199011] [to:+19177731550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439832454] [to:+14108884760] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035976588] [to:+17747288411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632288280] [to:+17636346823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179397726] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064415056] [to:+19027056328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:17735931522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177588834] [to:+14242866497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712833721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199132] [to:17049136120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560125] [to:18647122351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003070202] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154019452] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149666308] [to:+16466289789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267470474] [to:+15874042249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192386784] [to:+18193036926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177952149] [to:+15103227354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306103659] [to:+13479139459] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059121525] [to:+12894601551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699413164] [to:+12695755494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672308266] [to:+12674377072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436682114] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562766986] [to:+13478993244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312238837] [to:+18312188963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+14153671979] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314018241] [to:+19018421575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137437411] [to:+15022083297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605199688] [to:+19199163205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946963] [to:19042948679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864421] [to:14019990197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703610104] [to:+17702005926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782783283] [to:+14156850906] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314018241] [to:+19018421575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155271410] [to:+15109487546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817003403] [to:15819988854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965132] [to:12139440733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165246] [to:14698316675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474020406] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13197599316] [to:+15155057855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740442] [to:+13477361968] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136858444] [to:+16163266360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215360432] [to:+14256789311] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958694] [to:12256630515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159398057] [to:+13479806844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349319] [to:17192326725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313048] [to:18502416173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077598576] [to:+19172751996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215360432] [to:+14256789311] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:18282012763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087003] [to:17805173586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274477] [to:+14706735615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314441189] [to:+18312228941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173867291] [to:+12138228103] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175261335] [to:+18173637605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137619] [to:15702399347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:19072059643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566527066] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281313] [to:18078532765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344366401] [to:17345459366] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010983] [to:12086601300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062164573] [to:+13069928081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077816336] [to:+14072681678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977710] [to:15704927232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13197599316] [to:+15155057855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348747] [to:16784294122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621900] [to:17865368408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515509761] [to:+16572143255] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125927982] [to:+13866018901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14349079790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038378875] [to:+12626483956] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185699892] [to:+15817009370] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805308] [to:18102883718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001304] [to:14043956745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022779] [to:17097634218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077816336] [to:+14072681678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:15152504598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021890] [to:16477812697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123226819] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19729575111] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-20 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679050420] [to:+12679669832] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667819] [to:15742133382] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336581] [to:16175135824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336581] [to:16175135824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608471] [to:16065210769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500110] [to:14344715385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304157765] [to:+14159687265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15853318205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097441] [to:14388251288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063072705] [to:+16465135954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-21 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003810201] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022185097] [to:+19027030637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454590] [to:12182982645] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242387834] [to:16782088416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053754262] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506912049] [to:+13214067606] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19157305242] [to:+17194266789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286606] [to:19032926464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046954] [to:17787757217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986752] [to:16165584348] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942464] [to:+16465138227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023634] [to:13344921175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022402201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15134856805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538526] [to:13344750876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BF0202] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BF0201] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701097] [to:17879750226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:14697671420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048302281] [to:+17248030930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184804] [to:18169201381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856878604] [to:+19542994820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374055266] [to:+14155706189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577348] [to:19312161136] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328950331] [to:+15165977875] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17877091425] [to:+19172668837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149724698] [to:+18133081384] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:14697671420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:14697671420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063364556] [to:+14097977834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034196400] [to:+16465641653] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954151] [to:13123308217] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474936560] [to:12266220964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143786953] [to:+16149228692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-20 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-11 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-11 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046696850] [to:+17604745133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-11 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-10 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143255] [to:12515509761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-11 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-11 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-21 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035143296] [to:+18033104548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039400033] [to:+13476672011] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479200] [to:12565571419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077323175] [to:+14076336962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015802469] [to:+14242769008] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204777461] [to:+15204338024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477046128] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183590180] [to:+14694157255] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314220] [to:13303400233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405658184] [to:+15712103689] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062163] [to:17192012086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133896065] [to:19795752997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:13475987360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027662698] [to:+14049004497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173531778] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-20 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447834465450] [to:+447418338903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125087039] [to:+18583603381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19045081108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075958204] [to:+17187479075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557497] [to:18634450608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084259245] [to:+15089668681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006547] [to:14143797109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742138660] [to:+15617666916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658838] [to:13476666411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:14843369384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175280281] [to:13176284083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287682259] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587834] [to:19542548811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622414530] [to:+19492981941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173713372] [to:+13476673492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455575] [to:12316705241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12049514864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003A80201] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039261149] [to:+14692054976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783823085] [to:+14043412757] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044986726] [to:+12135455428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-20 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796898243] [to:+17323774752] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705899009] [to:+15028041359] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669770] [to:13153166592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-20 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047570] [to:14352298521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023209] [to:14185648084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677704646] [to:+12672732210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787516302] [to:+16784345445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790324] [to:17166278724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044129594] [to:+14242835857] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300847] [to:17657171409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:18033797446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743271119] [to:+19142812515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198490610] [to:+17199990780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862164805] [to:+13866015979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740364] [to:+18107725109] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053807889] [to:+17053006350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364671] [to:+19282325249] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746178] [to:18608195881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746178] [to:18608195881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805945] [to:12012057231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044129594] [to:+14242835857] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079749072] [to:+13476191367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434722266] [to:+19714448234] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195713245] [to:+15672819681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:12344105575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132149816] [to:+14137289330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164761434] [to:+16463495960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096602489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297451] [to:13176791832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003A80202] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629316] [to:12673485804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407409] [to:16463729025] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009230] [to:18452838352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:16813133017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708236616] [to:+16784968915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:15599170769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156182927] [to:12153597973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057809061] [to:+13052035776] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405658184] [to:+15712103689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006975] [to:17058081229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038799243] [to:+19034595789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107782] [to:18506722698] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372388287] [to:+12139353547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755494] [to:12699413164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-21 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838684] [to:14807986664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569841] [to:13097408338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347527791] [to:+13137690636] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649615] [to:12079076686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165330715] [to:+17162791539] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255068] [to:+13364500364] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184707903] [to:+18133208973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026485910] [to:+15865747895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152944865] [to:+19148609891] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017446978] [to:+14018677237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193461] [to:17249317470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12489781172] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124671967] [to:+16465135490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812491359] [to:+17817863441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048189815] [to:+16474918976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897798094] [to:15198353358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836143] [to:12157836203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:18649234759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-21 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206592] [to:18136100802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022853611] [to:12622374200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034927364] [to:+15873327226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002815] [to:18064484730] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-20 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523606717] [to:+15406286292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640602] [to:+17184166726] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:12898792490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049050577] [to:+13219998506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021514] [to:19023296866] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433159357] [to:+18438720754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-10 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049607761] [to:+19802094650] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103719407] [to:+13053400200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576477468] [to:+18046245416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16479862416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697515064] [to:15872252716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:19739437567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473521057] [to:+16467381873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524800] [to:19402240967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:16155564957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052056196] [to:+15068040211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474969122] [to:14168380980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474714854] [to:+16475038816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063072705] [to:+16465135954] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329315609] [to:+19172592205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328297234] [to:+17323774532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12548337646] [to:+13479804010] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199186] [to:12109884695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172736978] [to:+12174889141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407409] [to:16463729025] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-11 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-11 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012301429] [to:+17743570465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392240490] [to:+13477145693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053761423] [to:+16474934459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14847979685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041324] [to:19022122441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475496363] [to:+15164724390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637096783] [to:+18637347022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528167172] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199950584] [to:+18193035456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142666688] [to:+16149964316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137274644] [to:+14132715949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205518897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205518897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547091594] [to:+13052037693] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740358] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698316675] [to:+17279165246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303090] [to:15708770580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475496363] [to:+15164724390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294158102] [to:+17604748649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-20 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447717782862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-20 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096788494] [to:+15873151764] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924760] [to:15404467349] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340233] [to:17578120807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968135] [to:19199065439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622414530] [to:+19492981941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454590] [to:12188411490] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345445] [to:16787516302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413913664] [to:+15415392867] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-21 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12403533331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641141] [to:16063105974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709357127] [to:+12543347318] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:14047696882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268544] [to:13157307831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045738752] [to:+18133209005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074627790] [to:+14072681644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086622462] [to:+13479372396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045108800] [to:+13126311474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643478865] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327543] [to:12604491941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928081] [to:13062164573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671913] [to:+18572329035] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082901378] [to:+19083824933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548591] [to:13853336737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13376802182] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:190183134047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173531778] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-10 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-10 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736821] [to:12692174002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-10 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259210728] [to:+12139926405] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-10 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702399347] [to:+16465137619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704416168] [to:+15703977349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:12038333493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785954183] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19418704301] [to:19412683966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529615] [to:+14153408972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023206] [to:12676718488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787698846] [to:+16784123990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022711741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807714711] [to:+14694061017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370408] [to:18454898503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849084081] [to:+18729995999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049514864] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849353] [to:12526196095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502789988] [to:+14249996713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038046358] [to:+19176635891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15168282027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069621126] [to:+14706732979] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029648] [to:15065430730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610496] [to:15058041546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252458250] [to:+14692053102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094776624] [to:+16095434564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899710511] [to:+19894557043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:17737326547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082901378] [to:+19083824933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142665583] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144301575] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805173586] [to:+15874087003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528040806] [to:+16825007350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162185329] [to:+13134688705] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:14087848721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043098] [to:16138980936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563839351] [to:+13478999164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12168040043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029211] [to:13162072718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:16394718042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168235498] [to:+12138068567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074985845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102840665] [to:+17186755809] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679669832] [to:12679050420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:19173463619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867598637] [to:+17274937471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013443667] [to:+12016214639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477046128] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028942887] [to:+12133752245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:19374232067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:19374232067] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375646044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212674] [to:13049941532] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188590788] [to:+19172669077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916182] [to:14782861539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853318205] [to:+15852824194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:17577766542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409732] [to:19059282776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:17692323691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:14087848721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438505645] [to:+12136036349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286292] [to:12523606717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013614450] [to:+17133896673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504439242] [to:+17277568024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-20 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402041912] [to:+12408924904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762072620] [to:+17604748400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041324] [to:19022120859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808142] [to:18104937147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215969] [to:14174996390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17862359082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AE0201] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523364] [to:12706013187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477037596] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18144751047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429207] [to:16092318917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698316675] [to:+17279165246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237766815] [to:+14144096106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803713] [to:18607710725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281313] [to:19736870594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19564593464] [to:+13015699274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056328982] [to:+13218328096] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:19123419378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952550] [to:16475882854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838666] [to:19014882839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000796] [to:15142675031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141825] [to:18192100085] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:19893190095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:17807187255] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194414320] [to:+12897681340] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802782996] [to:+13479190910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916182] [to:14782861539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704416168] [to:+15703977349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999425] [to:12287120384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17862359082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003AE0202] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996231] [to:12313424954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601672] [to:17729406961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183389256] [to:+13473438491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287382936] [to:+12536422956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287382936] [to:+12536422956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176284083] [to:+13175280281] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360104] [to:16304845593] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-20 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147787591] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194910914] [to:+17193561022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14355139348] [to:+14842842572] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030930] [to:13048302281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038509230] [to:+12134784829] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155706189] [to:19374055266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019001577] [to:+19014448791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046389156] [to:+17726177470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167730302] [to:+16163266122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927018] [to:12403544403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212674] [to:13049941532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038509230] [to:+12134784829] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176815198] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069944387] [to:+14703335820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192121344] [to:+14197767486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416003529] [to:+19412642471] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507827] [to:12253283230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702805192] [to:+19142812809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507827] [to:12253283230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783633] [to:18508438473] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515509761] [to:+16572143255] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670501] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165584348] [to:+17279986752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:14015480747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12029044955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138046003] [to:+13476304492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389033] [to:18608799864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195649842] [to:+12135295275] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-21 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432618144] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336581] [to:17816545212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384660] [to:14803277294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066070637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262700999] [to:+12264559394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13302065238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647122351] [to:+17636560125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303897474] [to:+15308631786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154815063] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874093635] [to:15877789009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-20 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003670503] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201211] [to:+19715129502] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109993519] [to:+17029565560] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287682259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797151390] [to:+19177376248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208083328] [to:+15103136376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107141627] [to:+14842842883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454159] [to:14344142097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15307188470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003670504] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050649] [to:19026311089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018782896] [to:+19014449167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819681] [to:14195713245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-20 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447784135481] [to:+447451230405] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754953176] [to:+15754497605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670505] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032833] [to:17246222973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19367761364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025359078] [to:+19149089284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402601628] [to:+15406286191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136266] [to:12296696108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177998110] [to:+14433453821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12049976994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736474300] [to:+13126142617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737491159] [to:+13126310350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168380980] [to:+16474969122] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175280281] [to:13176284083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996231] [to:12313424954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055380] [to:12146623179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047265298] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168355524] [to:+12167990702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-20 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869196] [to:17325673479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218050473] [to:+13217308717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345174740] [to:+13305779688] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184162588] [to:+14143863986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029893708] [to:+19027062829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164811] [to:19197501012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579210174] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-21 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875501052] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245416] [to:17576477468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016918972] [to:+19015042897] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:13014376809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228692] [to:16143786953] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12566527066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143319115] [to:+13479804237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143037349] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17162085991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035103] [to:18198173777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974372] [to:15858131127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974372] [to:15858131127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024979487] [to:+16233839692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-21 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064216187] [to:+14706731927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17276449068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-20 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447771591716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192386784] [to:+18193036926] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433233] [to:14845749822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868279] [to:16068138691] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868279] [to:16068138691] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077253] [to:15147962954] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272146] [to:+18133243011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006256] [to:13169280224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038073907] [to:+14694061366] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138292191] [to:+13137235940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006256] [to:13169280224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15145716108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203934] [to:14102699162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18023455609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-10 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774752] [to:14796898243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237766819] [to:+12243103325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058041546] [to:+19172610496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874093635] [to:15877789009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103858115] [to:+15103407408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239364] [to:16166101611] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-21 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473792] [to:12676704753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-21 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033797446] [to:+13477962771] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072626798] [to:15072027409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-20 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940740355] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12093547310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515384] [to:12087498161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367758222] [to:+13479788088] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199486019] [to:+19498771485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17029177090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17029177090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17029177090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632414887] [to:+18639493307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:12035728166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132977316] [to:+17097000514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001032] [to:18643478865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440454] [to:15185246372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157020] [to:13306159829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472339012] [to:18122905873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939213] [to:12153136417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537223860] [to:+13478684528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746502] [to:13153551335] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:18034047312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:18034047312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:18034047312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911764] [to:16134064935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045453] [to:14164337947] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007572] [to:18595768865] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356149] [to:14792645435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354528] [to:14126527470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:19072059643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196060331] [to:+19199161771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499766] [to:19893928503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-21 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447971136440] [to:+447418320991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245880995] [to:+18722535840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000796] [to:15142675031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248739] [to:17042777718] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135356668] [to:+19177328276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19026907580] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345473539] [to:+13477982344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572566262] [to:+16149964591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929302] [to:13063708066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046340208] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12408010041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653277796] [to:+19142815124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748084] [to:18594818527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074627790] [to:+14072681644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517476320] [to:+16129305928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370805] [to:13302173550] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576752990] [to:+13369383792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104302167] [to:+16099040110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19525002369] [to:+18584804721] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177576253] [to:+14694237772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748649] [to:12294158102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086866] [to:12522992321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12408010041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12013005417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-20 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845508663] [to:+14844165808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:17055001026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086156275] [to:+13025851148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220928] [to:18457647100] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154605] [to:+19703158397] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292463599] [to:+16463490288] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927018] [to:15713592896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141825] [to:18192100085] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183156552] [to:+18108527731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-20 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627312] [to:+447592317570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-21 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704234841] [to:+15703974591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668623] [to:13603531209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342213193] [to:+12138225769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009908] [to:14183917532] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199486019] [to:+19498771485] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473792] [to:12674016124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438630307] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001032] [to:17047265298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680704] [to:16477060906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023237021] [to:+16467018982] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16307859982] [to:15743471036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639343415] [to:+17748557080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041874] [to:+19543141918] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015904424] [to:19734186591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148899634] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198072] [to:+19175630241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186327169] [to:+14698740317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894194] [to:+17744255046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640602] [to:+17184166726] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523704970] [to:+18046242498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049514864] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562260174] [to:+12132958488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654079256] [to:+12135593889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640602] [to:+17184166726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613054804] [to:+12816433491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604061918] [to:+13609727116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003670502] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176599000] [to:+13477988918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076868] [to:17316959678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027453] [to:16139869445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19367761364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198173777] [to:+18193035103] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560125] [to:18647122351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747258662] [to:+15102774005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952550] [to:16472923006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048030690] [to:+15817023437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009935] [to:14185545799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19177418522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672968594] [to:+16503001215] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805308] [to:19178037638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867978887] [to:+17736668818] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526647] [to:19187044731] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15853095346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-20 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245258125] [to:+17248035761] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-20 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447763748690] [to:+447451240616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153100560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699413164] [to:+12695755494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-10 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-21 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977303] [to:15707060350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656359379] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:14136487476] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13068806758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:18156441840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651548] [to:12507184742] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056109303] [to:+14088683413] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500033B0301] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609447] [to:12027047728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286130] [to:15403925015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154892639] [to:+13475087679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-21 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:18503261856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314614669] [to:+17344366233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045453] [to:14164337947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303187] [to:13473105952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12028440067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168282027] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733952] [to:19738689832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874704] [to:17656694418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199486019] [to:+19498771485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15853091811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897752297] [to:+12892756998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595835673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477046128] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499766] [to:19893928503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242140336] [to:15409233599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126207633] [to:+13478022579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19417132944] [to:+13603138930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842455] [to:14848491695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637313] [to:13173842806] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187526877] [to:+16079687320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637313] [to:13173842806] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539385] [to:16785050109] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287385790] [to:+14806664660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047570] [to:14352298521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123720] [to:15039135541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095415037] [to:+18583048201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127152993] [to:+15172586622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012885827] [to:+18133086540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809094707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19806898006] [to:+16172132686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158916482] [to:12525649037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255654406] [to:+15102548464] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060132] [to:17856151794] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-10 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156775] [to:15672131582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174812422] [to:+16178634097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325739] [to:15744040445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674240776] [to:+12678676882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530731] [to:13183218385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968915] [to:17708236616] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:19176269550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19363911351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-20 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056109303] [to:+14088683413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033B0303] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653301185] [to:+13476568973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653301185] [to:+13476568973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572006741] [to:+16178634251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065243740] [to:+14703334069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022467053] [to:+13477697617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408479983] [to:+16233838794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047707689] [to:+13369383380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526196095] [to:+17636849353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:19088840790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470286] [to:17096850923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999601] [to:14702199441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176503913] [to:+13475187149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049817859] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022850301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037855957] [to:+15713273942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:14046431248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195713245] [to:+15672819681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779688] [to:12345174740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703041573] [to:+13479789334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177481486] [to:+19172661315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-10 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433233] [to:19313084869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185648084] [to:+15817023209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102971614] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193590555] [to:12514012185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-10 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988228] [to:528641003638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19715635936] [to:+13052037700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729025] [to:+18459407409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448280] [to:19019495703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482140] [to:17067689295] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974372] [to:15858131127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476693] [to:19544514652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174966339] [to:+13479192611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495778] [to:17709064464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163818] [to:19197501179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19025992885] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076702512] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477669415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076702512] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134856805] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516430905] [to:+17547774239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] jasna mason: perfect condition? |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862777220] [to:+15865748143] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632417044] [to:+14072160591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008758] [to:14803002892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874093635] [to:15877789009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:14144301575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12025203808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13303566625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076424] [to:12604100393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-21 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001673] [to:12498788642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614972488] [to:+16614418253] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508438473] [to:+12134783633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-21 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-21 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520628480] [to:+447402280627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722679093] [to:+17723618250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991330] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893019] [to:15412808805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15405225957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024813700] [to:+14803008009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259717] [to:13137691984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15093182063] [to:19174102130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874107948] [to:15879264039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086588] [to:15879840441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541871] [to:12503181888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13376802182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192001436] [to:+12174889161] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536404031] [to:+12065196309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12269776123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015802469] [to:+14242769008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546058770] [to:+18638555881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127152993] [to:+15172586622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035103] [to:18198173777] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194807978] [to:17192044711] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:13132122692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603333015] [to:+19172610730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017497004] [to:+14012038482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14438630307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048003813] [to:+14156498442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746761] [to:17726432968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852274686] [to:+15852823884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403140890] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528638] [to:14195775686] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201996] [to:14102516934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201996] [to:14102516934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17545813721] [to:+19292689406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512038667] [to:+19093431028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17162539227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543141396] [to:18646219173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103702943] [to:+14437202243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155127072] [to:13173842806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15853318205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143348690] [to:+19142062698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13166804610] [to:+14157995573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787193942] [to:+12138610820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17135015445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17135015445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047265298] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072057152] [to:+19148609669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142518834] [to:+17142153623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015621840] [to:19012817927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373087166] [to:+19177730129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708856453] [to:+16465130562] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691385] [to:18434786476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742048784] [to:15164992450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419583] [to:18436371247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15405225957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155673869] [to:+15865748059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437303613] [to:+19172669387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042204] [to:19059064882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763453281] [to:+12139297141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239993174] [to:+18572407060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:13216848694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792648288] [to:+19794265196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168274491] [to:+17053025637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-21 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077323175] [to:+14076336962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483858] [to:15636634333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024895392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638014855] [to:+18637347466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315070365] [to:+13477736003] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329471186] [to:+17323774964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274477] [to:+14706735615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12542338153] [to:12547494846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:17405840563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106082885] [to:+12105718933] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314677] [to:14044141099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842455] [to:14848491695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407720666] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708856453] [to:+16465130562] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173710401] [to:+18133316695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-21 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990780] [to:17198490610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:13142978473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12136337790] [to:+16162390329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168166307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13477856607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252411696] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687674] [to:19512243691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142675031] [to:+15817000796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402945258] [to:+14122301827] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752683878] [to:+15058006635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026099] [to:17055289374] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362014822] [to:+19365878311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-11 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-21 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447788212505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708856453] [to:+16465130562] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081774] [to:18642056698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403090790] [to:+12169294494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102381] [to:17053622392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15144373555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042264771] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137398871] [to:+14097977835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109921774] [to:+16109105747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827532] [to:14133285333] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053302134] [to:+16474955627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321430] [to:19198856071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-20 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447474709739] [to:+447451232017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377035100] [to:+12138026518] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038F0201] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12017421209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302173550] [to:+13302370805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673606] [to:12299771178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038F0202] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764402] [to:18035076398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327594592] [to:+17133099432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155207041] [to:+12267983065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739040658] [to:+15169260618] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633262894] [to:+19417256412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14122302039] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B70202] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704609196] [to:+15703977361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913174] [to:16478524668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143173246] [to:+18312887941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027453] [to:14137527028] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277886] [to:13146859829] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022796] [to:+19142060972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777515] [to:18593242883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234539515] [to:+18572402015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496786] [to:19177368581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074464156] [to:+16474937630] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735756] [to:17606412352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196658453] [to:+18193032234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607710725] [to:+13479803713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739168] [to:16087907762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516584] [to:19042501370] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493582804] [to:+18678883672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190634] [to:15172408299] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753612115] [to:+15758258609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:17069790338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146998126] [to:+14148887417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528709] [to:12164159542] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691385] [to:18433292693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787339012] [to:+12139297989] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138761895] [to:+16136041863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17084462752] [to:+18722258017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167641] [to:14099510716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237806] [to:19562263332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023209] [to:14185648084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377035100] [to:+12138026518] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803277294] [to:+16026384660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999339] [to:15416619185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314808059] [to:16318138327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632802451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216634428] [to:+14072163400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472833173] [to:+13477691255] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069937943] [to:13064803280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12609092132] [to:+12604077012] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066070637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17037855957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145669101] [to:+14387923817] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-21 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528430] [to:18109623410] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19048992774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864398021] [to:+18637347395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184563224] [to:+14387925654] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604015] [to:18583756156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602514470] [to:+12342517699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033120989] [to:+17256661224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126527470] [to:+14125354528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024724] [to:16138809727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13207610888] [to:+15632317298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:18033797446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930136] [to:13069990114] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12017421209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095403898] [to:+14097771073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708824527] [to:+19174094422] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142079] [to:13312133446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-10 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-21 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335880] [to:+447808801416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176815198] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-10 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-10 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097308650] [to:+16474916487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675152897] [to:+12679525664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16474951179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145669101] [to:+14387923817] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16148002297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328984822] [to:+18326505514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017096] [to:17407279687] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002515] [to:17209894553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865633032] [to:+13139607504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108598113] [to:+19292009028] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19036193309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746502] [to:13153551335] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783633] [to:18508438473] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076963450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138555264] [to:+12139353883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787608692] [to:+16785867720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740370] [to:+14096833360] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] peiseubug injeungkodeu-ibnida https://fb.com/l/1LpP6ZylG96cRqs #fb] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260433] [to:19177439513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-21 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624741] [to:+447532296679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:14047813665] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19363911351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19177418522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604015] [to:12402809900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053943010] [to:18052753043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049003661] [to:14042464764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026325430] [to:+13024991309] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038200] [to:+14158536166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787553486] [to:+14704446753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304566998] [to:+19542994578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058286954] [to:+12262409601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094868] [to:13476382809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18183875136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18183875136] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-20 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864398021] [to:+18637347395] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031725] [to:19025780762] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074124808] [to:+17862200484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:14153406100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074124808] [to:+17862200484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028620093] [to:+13852657536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063708066] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028620093] [to:+13852657536] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:19736007159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-21 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447402280627] [to:+447520628480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234946926] [to:+16233839155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046814229] [to:+12138064199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062320410] [to:+15068040038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182243904] [to:+19033076673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732693] [to:12157306905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138040644] [to:+15862488189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049817859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392359154] [to:+13218328336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018599] [to:15044914939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412928] [to:18282151813] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16475267078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803646879] [to:+13479372591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389264499] [to:+16474941247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477190423] [to:+12264559572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:14434886828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037142936] [to:+13069928240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168040043] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17577485493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805189] [to:15183662834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:18282012763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027453] [to:15164051759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163818] [to:19193955145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139212089] [to:15742612080] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973143] [to:15707289087] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093547310] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847958440] [to:+16109102832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015617] [to:16477948267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483858] [to:15636634333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076232] [to:14785954183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:14048201620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604282056] [to:+18609710327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193501043] [to:15593007069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081522] [to:12088719131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610305] [to:14349171025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252532500] [to:+13475087081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836743] [to:19893324379] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522862692] [to:+14242868328] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868599] [to:13144580246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531341] [to:17652743328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137783156] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482172618] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-21 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520621972] [to:+447773775324] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243945] [to:16624972491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630241] [to:17743198072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:16046006131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294158102] [to:+17604748649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787606441] [to:+14049004021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363667772] [to:+13369383863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809094707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635891] [to:17865641400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868004] [to:17404240473] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734892989] [to:+13479808547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414681796] [to:+19417256138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364637] [to:16152034518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-21 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038024315] [to:+14697239506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019485] [to:19024100570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851148] [to:15086156275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562888864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047365420] [to:+12015805911] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894893390] [to:+12897793277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17802007629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868316] [to:13145561837] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802322] [to:15169839781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742048784] [to:15164992450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306103659] [to:+13479139459] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803646879] [to:+13479372591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672131582] [to:+19703156775] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477037596] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314614669] [to:+17344366233] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17037855957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053807274] [to:+16474952941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874952] [to:13157083699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062320410] [to:+15068040038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494110] [to:13137041490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19047623106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763411] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866497] [to:17177588834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085991] [to:+17162790890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233885448] [to:+13477416899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604282056] [to:+18609710327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142978473] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19137250330] [to:+13479478192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-20 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003840401] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14509310154] [to:+14388075269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475517294] [to:+16474913896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691984] [to:+18722259717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179239] [to:12767320118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314677] [to:14044141099] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-21 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003800202] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:16784850765] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043653320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-21 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599823537] [to:+19543142589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477721187] [to:+12264555781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-20 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17608671380] [to:17605379866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-20 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498949] [to:16194514605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-20 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232156] [to:+447938255320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102725308] [to:+17633015909] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-11 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316702659] [to:+15109722684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853318205] [to:+15852824194] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035942610] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018982] [to:18023237021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-20 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036501318] [to:+19292689619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163818] [to:19193955145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-21 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003810202] -Feb 1 11:43:43 ip-10-0-64-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718933] [to:12106082885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17063614820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125816462] [to:+17036466932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103070507] [to:17066196237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787608692] [to:+16784123615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12674543353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12674543353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550106] [to:14439939162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546526983] [to:13365211379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064199] [to:17046814229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177576253] [to:+14694237772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136100802] [to:+18133206592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135516737] [to:+12138064921] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018599] [to:15047620075] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147550270] [to:+13149320402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-21 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003840402] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046195] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383863] [to:13363667772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787599427] [to:+17702005021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037414913] [to:+15873289576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024895392] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896847646] [to:+12262437202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087907762] [to:+19177739168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+12677939257] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BD0201] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862541] [to:+13477866849] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13076963450] [to:+17205852109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166403118] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125800] [to:12253620448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-20 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159731] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434786476] [to:+16466691385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17788739747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:15097653141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169986673] [to:+17162791271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216848694] [to:+19177731867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13376802182] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14165870239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072668571] [to:+19172834264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857751218] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236379759] [to:+18102218267] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063990900] [to:+14703335249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:18156441840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523437073] [to:+14043900270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077390] [to:14383994864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220566] [to:19547293495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712797528] [to:+17029565560] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19782736823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19782736823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16024711725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918489] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643478865] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362544616] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12535170102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19377188678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061352] [to:18705573149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17135167180] [to:+17133526566] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678791548] [to:+12679525258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708325220] [to:+15703974030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204814489] [to:+12092511510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19367761364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15853318205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167418] [to:19364270328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183852214] [to:+19142063189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13617012865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072668571] [to:+19172834264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055702721] [to:+17053005385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-20 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175983842] [to:+19142795095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:13476707184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158540] [to:17246992020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884784] [to:13606693181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008114] [to:15147964330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785954183] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064025492] [to:+14155944130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751873] [to:18143860185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797642] [to:18458260483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387944842] [to:15149679298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17192370353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17192370353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305963215] [to:+13477146198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+14695325581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384660] [to:14803277294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:14254349781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388036770] [to:+14387925763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604217707] [to:+19783231682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014376809] [to:+12026015235] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069990114] [to:+13069930136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478306] [to:17752506227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039413775] [to:+13073702919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:13187455297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156775] [to:15672131582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550106] [to:14439939162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650458] [to:18049315841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266867] [to:17192092372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-21 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242937] [to:+447946297227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138761895] [to:+16136041863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599823537] [to:+19543142589] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166403118] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695085003] [to:+14243363122] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496786] [to:13472572341] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644988014] [to:+15617666731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435717361] [to:+18638554160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168904364] [to:+14156494340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19565360900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186335020] [to:+12627774507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374899] [to:13302058130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175269180] [to:+15103136559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663455] [to:12316299218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-21 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930364229] [to:+447451201674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316695] [to:12173710401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236325057] [to:+12135455918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137917002] [to:+13436001700] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635891] [to:17865641400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036057473] [to:+14144006100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365148747] [to:+15163414221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056109303] [to:+14088683413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033B0302] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107817097] [to:+17279165802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176815198] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13409980893] [to:+19177227198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14122302039] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003B70201] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153551335] [to:+17604746502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095408286] [to:+15092622398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437078416] [to:+14695321100] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502263564] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+12677939257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BD0202] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794021041] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088381232] [to:+19172610772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025890833] [to:+14387927406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402945258] [to:+14122301827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064803280] [to:+13069937943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326043328] [to:+17475001104] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997186] [to:18646219173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17343339096] [to:17347787974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146540792] [to:+14318003956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284672535] [to:+13478969902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13192380159] [to:+15635622160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275036839] [to:+16475568671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092478299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478231867] [to:+16474950652] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006026] [to:13134288043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:15097653141] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136005983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547933691] [to:+19172659940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15056046941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345319] [to:18437075181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16267333682] [to:+14158532240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029730] [to:15068711516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066156906] [to:+17343339041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146540792] [to:+14318003956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022850301] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859440211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875647541] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023006950] [to:+19027062656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466501540] [to:+13476908409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14165243904] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406184] [to:15595563226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253517] [to:15027440446] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018639] [to:19027867715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915269] [to:19104787317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641141] [to:16063105974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752245] [to:13028942887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174944043] [to:+17089468371] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19378308547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706013187] [to:+15129523364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143205] [to:18644193238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193864874] [to:+14197767449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691059] [to:15173982478] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-20 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+19172720239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676083413] [to:+17278601300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-21 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247976] [to:+447957083004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746014] [to:12054964308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+14153671979] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:16206874425] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713374915] [to:+17039516953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921572] [to:15145132768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702939] [to:19495004581] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-21 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447472801546] [to:+447520624741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-21 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086866] [to:12522992321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314677] [to:14044141099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12168040043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048380896] [to:+17604747913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234946926] [to:+16233839155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797642] [to:12015801773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282152136] [to:+18285486155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:14184358737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12293284541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910254] [to:13373879501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046814229] [to:+12138064199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578182309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174458444] [to:+12604071480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387944842] [to:15149992254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024895392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312981] [to:13307943378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043685882] [to:+19172720924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874107970] [to:15877390080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866278] [to:13045913246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:12198051777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094647146] [to:+16474916835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138350] [to:19042354144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895512166] [to:+19895697447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145925976] [to:+14387940783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809884] [to:12038331471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064321055] [to:+14045966536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528339392] [to:+13479379162] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043685882] [to:+19172720924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-20 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068972802] [to:+15068039644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286868] [to:14326648291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130045] [to:+14344736493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:12188383449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108009114] [to:+16106999596] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476670104] [to:15188191030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893061074] [to:+19895334903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995455] [to:17096326277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043685882] [to:+19172720924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198072] [to:+19175630241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049665799] [to:+13052037931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387001078] [to:+15873289844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025780762] [to:+19027031725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066277599] [to:+16692252691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162722231] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:14035942610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025346] [to:19283997769] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025346] [to:19283997769] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17046340208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:17735931522] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242498] [to:12523704970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072809489] [to:+19177320940] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-20 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447590203521] [to:+447451238369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018038] [to:13364255839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14257772066] [to:+15817020729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018038] [to:13364255839] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018038] [to:13364255839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817737973] [to:+18325216142] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013552573] [to:12503065985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061366] [to:18038073907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423110] [to:12708362193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894131745] [to:+16465139967] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14434871862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522727] [to:+13477988998] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519419] [to:18036249244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356958872] [to:+15168302815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:16866539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046855458] [to:+19785663749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496786] [to:16469386783] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177418522] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458008733] [to:+16466288429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803389602] [to:+15204336838] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19375591571] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188628775] [to:+15817041407] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702939] [to:19495004581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942197] [to:14388891818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197097860] [to:+14197767644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762328] [to:19012838571] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538685] [to:19199854136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599790797] [to:+16264278041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065867] [to:13525190923] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:15108203887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065867] [to:13525190923] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193864874] [to:+14197767449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048302281] [to:+17248030930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022850301] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064199] [to:17046814229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423110] [to:12708755394] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065867] [to:13525190923] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649297] [to:14195665770] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083423917] [to:+19734535433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125695677] [to:+15124007046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010555] [to:14189972546] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041120] [to:15026021978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567521] [to:12486366010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797642] [to:16102487936] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285757663] [to:+16025528291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156823] [to:18596409243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055802770] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-21 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003840403] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363667772] [to:+13369383863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317062375] [to:16314048235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862578] [to:+16465130234] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041562] [to:13179036273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-21 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162621429] [to:+12169295373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134597196] [to:+14132519443] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848853956] [to:+16108804697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147550270] [to:+13149320402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372401378] [to:+12138023830] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189775233] [to:+15186155153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022548] [to:+17279353525] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:14169109836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015622874] [to:+12019956306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194027677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002515] [to:17203163602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672131582] [to:+19703156775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472320748] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387944842] [to:16138528936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:14067975544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163161] [to:19198138735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609856432] [to:+19196504587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329711929] [to:+18327807454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037895130] [to:+17274938612] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502263564] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006041] [to:18482405115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653472] [to:17782424004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327640120] [to:+18322847983] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991974] [to:12313337106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037895130] [to:+17274938612] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081597] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348300] [to:14046040900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140178] [to:19784763494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209995051] [to:+15207278026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266867] [to:17206096716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083164279] [to:+19738462300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022185097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327640120] [to:+18322847983] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132417402] [to:+18638556968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868599] [to:13143380042] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786779] [to:50249855610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407179782] [to:+17077507850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613834] [to:17027245709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661243] [to:17168030337] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203934] [to:14102699162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744978] [to:18638382241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042501370] [to:+19196516584] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194349682] [to:+19199163987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493307] [to:18632414887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055702721] [to:+17053005385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715100] [to:13053945122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:13306159731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15134856805] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505126470] [to:+18506315531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083772088] [to:+16088568902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920990] [to:15174926711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338011] [to:16157614839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338011] [to:16157614839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18072512971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18072512971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16472009571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777515] [to:18593242883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379252304] [to:+14156538229] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:13609499679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-21 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343127378] [to:+16785866766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:19072059643] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594397] [to:17045244372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473105952] [to:+13478303187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:12513001626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435403339] [to:+16106999588] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043245] [to:16786347625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105639614] [to:+16105718617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:17742873039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057940113] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195677285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968460] [to:15133004880] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049080529] [to:+14844893346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973143] [to:15707289087] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301779] [to:14125832529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025780762] [to:+19027031725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865596] [to:12036005675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516224595] [to:+12518887023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658055609] [to:+14158536286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424063] [to:13168218304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132523] [to:15087847616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716073] [to:+14388097045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094777335] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031F0202] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13473887473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165802] [to:16107817097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123226819] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703167946] [to:+13059013743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:17702669189] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799851105] [to:+13093069476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202438346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067689295] [to:+15109482140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202438346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052028682] [to:+17542003689] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174458444] [to:+12604071480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877743355] [to:+15874097422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-21 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076232] [to:14785954183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181508] [to:17754194867] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404529180] [to:+14439737201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942197] [to:14388891818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015621840] [to:19016491370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054951393] [to:+15054445478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495400] [to:14043968043] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157307831] [to:+15169268544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15062327893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17577150488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839155] [to:13234946926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438874] [to:14845380014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032405470] [to:+19523885066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143797109] [to:+14144006547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069944387] [to:+14703335820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-21 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15163134589] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037931] [to:14049665799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043534] [to:12898878682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096787010] [to:+15103222429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865596] [to:12036005675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15067216061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491815] [to:17138255109] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193503148] [to:+13199833857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316702659] [to:+15109722684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223515] [to:19376615148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247686] [to:13132129557] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015496] [to:13868552000] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663097] [to:12318183866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:16092502602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057940113] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486074] [to:14347284753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364528] [to:+17727746542] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041359] [to:12705899009] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877743355] [to:+15874097422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022977947] [to:+12406857764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189865607] [to:+16465139465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447512109594] [to:+15865748015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671912] [to:15306350582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-20 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447925335976] [to:+447451248629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671912] [to:15306350582] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14385808778] [to:+14388078836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096602489] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439939162] [to:+14438550106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477687575] [to:+13478685397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041556] [to:+16474952202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195084976] [to:+12138612342] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904425] [to:17744170622] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930136] [to:13069990114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-20 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022850301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041120] [to:15026021978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-20 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331054] [to:+447989484266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19177418522] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:19374232067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147754] [to:13477998102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671912] [to:15306350582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697203436] [to:+12698838154] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108009114] [to:+16106999596] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527145857] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655461890] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802096571] [to:+12362373461] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156775] [to:15672131582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175135824] [to:+15204336581] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16024737420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072899187] [to:+15089668780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746502] [to:13153551335] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16477120185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038073907] [to:+14694061366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473484591] [to:+17182559325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077390] [to:14383994864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373879501] [to:+15612910254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17739433654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C60201] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602344617] [to:+13477368760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500033F0402] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033F0404] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033F0403] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033588] [to:16046541774] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+13658002631] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482172618] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219454] [to:15738206239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337606] [to:12396452397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663749] [to:13046855458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038668439] [to:+13477697654] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713929729] [to:18326871014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-21 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-20 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068972802] [to:+15068039644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+14153260499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041359] [to:12705899009] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132927510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556968] [to:18132417402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:13014376809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347144] [to:19042506714] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783619731] [to:+16504860113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043008062] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016429] [to:13372900906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17739433654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C60202] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:13216848694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955313] [to:16084779789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478943] [to:16616758588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028942887] [to:+12133752245] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246915536] [to:+17248034334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D50201] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931214] [to:15149618423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011468] [to:18192904479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:12145066032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193810468] [to:+12196559132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797029] [to:13306393477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927406] [to:18025890833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797029] [to:13306393477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:15193622634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188383449] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991740] [to:16107647119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626683669] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149690879] [to:+14503286092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040438] [to:+16413165876] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195665770] [to:+14199649297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18708974786] [to:+19802095619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614394] [to:13523968754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794021041] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-21 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789493238] [to:+14043900800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135990] [to:18168253430] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-20 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+16477994654] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174926711] [to:+15174920990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702509778] [to:+17408796194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215439535] [to:+13302377266] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011393318115352] [to:+17274936777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-20 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263778023] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692252175] [to:19803184931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194429865] [to:+14197316108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045037] [to:15142479030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692353807] [to:+15712103601] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087598234] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168556917] [to:+17186755876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12425333372] [to:+15058006661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364516] [to:+13479809681] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302974] [to:1412918930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:17742873039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157835531] [to:+16413165411] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:12295181879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005547] [to:19034933527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782159069] [to:+16785867522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12407435909] [to:12407079606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997765] [to:17204980091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804388] [to:17852153918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017936] [to:17407519482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434736890] [to:+14437203706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045516348] [to:+18506314349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927406] [to:18025890833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034475642] [to:19712081383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034475642] [to:19712081383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187690] [to:19143469031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546526983] [to:13365211379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12093547310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17692323691] [to:+12132371820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513979117] [to:+19092933325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538685] [to:19199854136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334217] [to:17064610698] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19205741601] [to:+19202158108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514012185] [to:+16193590555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349171025] [to:+19172610305] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437184873] [to:+12174889282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412431366] [to:15087285967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:15199906338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674240776] [to:+12678676882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021210] [to:14188120222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313383777] [to:+18572194980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085201857] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269356] [to:17077182431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036613946] [to:+16034138430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748892] [to:15865881077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:14168306288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218495] [to:18626007506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047620075] [to:+13866018599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128358725] [to:+18729995609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14154661453] [to:15597595767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737190095] [to:+15863315122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869071] [to:17657440717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833352] [to:14092218878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146100] [to:18608905611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735896] [to:17792340304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314093] [to:12563752956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168040043] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029177090] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014479] [to:17864883595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097703220] [to:+17097000676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647603723] [to:+16466329596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035942610] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600231] [to:12894894377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565408893] [to:+18563126402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18628001387] [to:+19732985405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815860] [to:13373810524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246815626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102122036] [to:+19802092355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179445795] [to:+17402017790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017037039] [to:+13852657421] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740847] [to:16207414717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014569] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408129158] [to:+14406588168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408451008] [to:+13476674871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-10 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452425] [to:18122723379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19418704301] [to:19412683966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19182856416] [to:+13217308387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472902] [to:16018180817] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482140] [to:17067689295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029052] [to:17056987188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373634] [to:14074069465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364451] [to:+17273629554] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12816593896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12816593896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345719] [to:14015430371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-20 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809834] [to:15198021501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512789290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16472356000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148829551] [to:+14387924431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14157416964] [to:+12135296116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19125904181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503001329] [to:12052695419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028773] [to:17059349013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19374226991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077890257] [to:12047610920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107817097] [to:+17279165802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186335020] [to:+12627774507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049523373] [to:+12048177753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+16137014521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-21 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447947717281] [to:+447418325435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-21 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702038443] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049523373] [to:+12048177753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716867460] [to:+14158538753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897497] [to:18125896512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049622422] [to:+17184812650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209752] [to:16312058276] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095725] [to:15149946358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338221] [to:19123900745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405431] [to:12093565332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342891] [to:17708669145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277908] [to:+16474954423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16132008433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920990] [to:15174926711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027599422] [to:+15714454336] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15744537928] [to:+12533361458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473626686] [to:+16463493497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857751218] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692696016] [to:+13866284023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-21 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-21 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266867] [to:17192138997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-21 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803181549] [to:+19802092331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147529815] [to:+19492453106] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130524] [to:15132584942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528839924] [to:+14157876723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142816423] [to:15185698099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257355] [to:15417787845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168895913] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440537] [to:13369889963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269356] [to:17077182431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324278] [to:13129310835] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910254] [to:13373879501] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405902036] [to:+13477868595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375895] [to:15179851682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536829474] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542086851] [to:+19172660342] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18562916292] [to:18562296469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393843283] [to:+13866016527] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029735] [to:12262011663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15399999168] [to:18162009521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796898243] [to:+17323774752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676945386] [to:+12677988803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365587509] [to:+13369383595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078836] [to:14385808778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393843283] [to:+13866016527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-21 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833250229] [to:+447451212533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882875] [to:13236749829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931214] [to:15149618423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13402012276] [to:+14072160242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-20 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048086764] [to:12049157640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802327418] [to:+14158258194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183160947] [to:+15182887750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312121943] [to:+17605895075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126059112] [to:+13476673993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131354] [to:14129327924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-20 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893515896] [to:+12262416119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042413578] [to:+12138026288] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033797446] [to:+13477962771] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016326] [to:17246819483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488969] [to:15412974725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036005675] [to:+13477865596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406206331] [to:+14242865979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15067216061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854696598] [to:+19172669450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017096] [to:17407279687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025284642] [to:+12012576565] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013538785] [to:+19739639280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149610995] [to:+18194140497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059997867] [to:+16139097117] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19548681033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128944701] [to:+13478682917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045177876] [to:+13867423381] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287791191] [to:+12139926480] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057836587] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927043] [to:16156928137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359150] [to:17048190866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085201857] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158916482] [to:12525649037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132201] [to:16034016393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778745] [to:13476083067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326280187] [to:+17739433705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:19082833329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302974] [to:1412918930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623778] [to:17759013077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744978] [to:18638382241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283289886] [to:+15209996967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698740119] [to:18063825123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535881] [to:18477088491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694757557] [to:+14158253777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031A0301] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343009509] [to:+12136309665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19058080840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203737882] [to:19102828326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287385790] [to:+14806664660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285699675] [to:+13479804708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042396251] [to:+19802097682] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645411091] [to:+15672819369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398499941] [to:+12392190343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104937147] [to:+12692808142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177368581] [to:+16463496786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134628862] [to:+12139217636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132970405] [to:+14132736707] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703123515] [to:+19142061506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0201] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162094405] [to:+15152032198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923909] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674543353] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D50202] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785954183] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126564669] [to:+14158532272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306801487] [to:+13302374348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103474858] [to:+18107725582] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027537515] [to:+13025830432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049910424] [to:+19142815866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188783795] [to:+16079655936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500033F0401] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159731] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388620679] [to:+15795003083] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13362543483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477931369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131354] [to:14129327924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625940] [to:12074596503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054308881] [to:+16054997319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732057907] [to:+15165977666] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058157] [to:19025787369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732057907] [to:+15165977666] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-21 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694757557] [to:+14158253777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031A0302] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648160] [to:15183304697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569742895] [to:+18563566334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694757557] [to:+14158253777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031A0303] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491815] [to:17138255109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854029514] [to:+15852821794] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18472223365] [to:+19177375915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885157] [to:16164027912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-20 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447934854170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403058369] [to:+13015699199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F40401] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547438663] [to:+14695324891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640950] [to:+13476304367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023371] [to:18084634847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16138830292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:16614187601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403058369] [to:+13015699199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132638512] [to:+14388040545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060790] [to:19103402668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060790] [to:19103402668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060790] [to:19103402668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139096988] [to:16133555402] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364222650] [to:+16612617271] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-21 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447555750984] [to:+447451203352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038565090] [to:+17604748595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:12498770202] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344773817] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024596052] [to:+15082711979] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-20 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019068126] [to:+12027179307] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066081374] [to:+15068036038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786401110] [to:+13134688335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660038] [to:13022429061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14417031095] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638734802] [to:+18638554750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435159217] [to:+14437204699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15184913349] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857050846] [to:+17344365991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14092014239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14092014239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186250644] [to:+14502337960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318314] [to:12314994568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705899009] [to:+15028041359] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-20 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603578317] [to:+12604071478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865881077] [to:+15865748892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256138] [to:19414681796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042438409] [to:16043354666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409702279] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455829] [to:19166128187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369570347] [to:+13369383047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:16787324077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403058369] [to:+13015699199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F40402] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:13472320748] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:18033797446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-21 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534166016] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342891] [to:17708669145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-20 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-21 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072182409] [to:+14076333382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740341] [to:+19175638105] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526407056] [to:+13476303947] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908840] [to:12675794194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865030072] [to:12392101445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708810169] [to:+17029565884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927406] [to:18025890833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058163] [to:19028303615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003530401] -Feb 1 11:45:02 ip-10-0-0-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135685] [to:12292997307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13157602499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752245] [to:13028942887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-21 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747807516] [to:+19298418448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:15615431722] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17242508820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19162437681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239947333] [to:+14706732090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12162621429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096411731] [to:+19027046214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003530403] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615182] [to:15179458778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453821] [to:17177998110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910549] [to:13043606985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003530404] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15066261286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102030416] [to:+16105418863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005580] [to:17064078715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049625332] [to:+12132950178] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-20 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-20 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:16319210317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12535170102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313166148] [to:+19318967315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046980953] [to:+16474914830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:19404428291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-21 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042413578] [to:+18572559420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-21 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049625332] [to:+12132950178] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-21 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470428051] [to:+447451212747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474479196] [to:+19178778622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259717] [to:13137691984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167800637] [to:+16162390152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915653] [to:18196398715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133417451] [to:+16474913987] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148932427] [to:+16149965651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726070888] [to:+13212701148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179851682] [to:+12485375895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049625332] [to:+12132950178] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F40403] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735010252] [to:+18175417367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784763494] [to:+19786140178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003530402] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234566670] [to:+12137698183] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-20 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748352893] [to:+13477869311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-20 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12674543353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+15617665951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014479] [to:17863893497] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150092] [to:14238279297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172867141] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020827] [to:14693193392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179334798] [to:+18178184885] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14417031095] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369727240] [to:+13366452780] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439939162] [to:+14438550106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:17403140897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186250644] [to:+14502337960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-20 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204980091] [to:+17205997765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15867443723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500031B0202] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276660386] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188049102] [to:+12138028384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336790] [to:19712046659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-10 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-10 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003F40404] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784769160] [to:+19785939396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027452091] [to:+13024001056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178826446] [to:+13478120498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096326277] [to:+16477995455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404084804] [to:14358905886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189972546] [to:+17097010555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106082885] [to:+12105718933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840484] [to:+17205998902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168323112] [to:+17279985674] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178826446] [to:+13478120498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606009753] [to:+13478684520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220801] [to:12606450013] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403544403] [to:+12139927018] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037135578] [to:+16465130861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866898] [to:14233123651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043534] [to:16139218293] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043534] [to:16139218293] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-21 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-21 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949317709] [to:+447451240745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096602489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127152993] [to:+15172586622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194664354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404877] [to:14434544920] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12159548768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030930] [to:13048302281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-10 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016106605] [to:+17018006437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-10 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174926711] [to:+15174920990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173325990] [to:+13174558696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702038443] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896842460] [to:+12267982960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027091184] [to:+17344366763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025770626] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268315] [to:14234576837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707935864] [to:+19142816923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436021] [to:+12606355225] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566243102] [to:+16177065459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137285802] [to:+12485375315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098981330] [to:+19177375347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242867215] [to:19062827359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174809278] [to:+19784009407] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668327] [to:13128238583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-20 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168646735] [to:+17162792660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133898037] [to:+18133084381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193503148] [to:+15635593584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14405716006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730162] [to:16783340737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019184921] [to:18629007669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383996700] [to:+14388078058] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328641] [to:15037190568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819597] [to:15672287079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566527066] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063434313] [to:+15068033364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305888] [to:15093680772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737471] [to:14432541630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610496] [to:15058041546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16153641053] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439927] [to:19567714355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798476] [to:12039165579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258109] [to:18159803389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16475047675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309135326] [to:+13309157279] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-20 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475566877] [to:16477050691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551080] [to:19735632326] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13474320212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262137810] [to:+12262414102] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363130] [to:17709172490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262137810] [to:+12262414102] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262137810] [to:+12262414102] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573390002] [to:+19172833626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-21 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+15155127072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-21 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944695155] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:16789493238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812645721] [to:+17812773696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945649] [to:15145829300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275656742] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036193309] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14036806258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733132642] [to:13237148364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242140370] [to:16308158383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074258094] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970522] [to:17179940490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463491507] [to:17187243103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275656742] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18104475924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911128] [to:12074030723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163298] [to:16095131162] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17073827343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:16477388731] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063870] [to:14074870572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057217345] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659695078] [to:+18572551807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033080339] [to:+15108538276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434065331] [to:+12105718151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067484894] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017680087] [to:14019997030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314048235] [to:+16317062375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149724698] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419973] [to:14783029700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767644] [to:14197097860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364931051] [to:+13369381979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15062327893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176693996] [to:+18638553325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069810801] [to:+14125354489] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369889963] [to:+13369440537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149067] [to:13618775456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149067] [to:13618775456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220677] [to:+19785663152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886978] [to:+19543144272] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149067] [to:13618775456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216950008] [to:+15852822128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041359] [to:12705899009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173402862] [to:+19543639885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157547739] [to:17176865474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084108904] [to:+17186755141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-21 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-21 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524506] [to:12173813786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-20 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325218] [to:+447887053337] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-21 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-20 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247879] [to:+447821077718] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032096760] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404442325] [to:+17408797954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407067] [to:18452192513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005903] [to:19122690252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183304697] [to:+16465648160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025787369] [to:+19027058157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821189] [to:15853222360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305697] [to:16363831045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140178] [to:19784763494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786592] [to:12408764439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873258028] [to:+15873323073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157270534] [to:+13477981686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702049680] [to:+14848164871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235399778] [to:+12139359670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065456] [to:18644836308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460962] [to:17658105869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-21 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-20 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638014855] [to:+18637347466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968286] [to:16033136497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13306801487] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373879501] [to:+15612910254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:15635791903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991974] [to:12313337106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019259552] [to:+13478083378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920990] [to:15174926711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482405115] [to:+19703006041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630210] [to:13473091600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18104475924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801185] [to:17248415659] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434532259] [to:+18435345672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218342] [to:12672168308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-20 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142684854] [to:+14387942525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-20 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165802] [to:16107817097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328264] [to:13215766521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088555] [to:15149432988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993254] [to:15156690953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-20 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583756156] [to:+18583604015] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708325220] [to:+15703974030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15405225957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013982967] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007717] [to:19512698756] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+15617665951] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105446] [to:19184715776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176099885] [to:+13475808720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289325] [to:14136574237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086100] [to:17863081529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344750876] [to:+15108538526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016240975] [to:+17279987522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803389602] [to:+15204336838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028479939] [to:+15713262406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+18173637313] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054951393] [to:+15054445478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262463431] [to:+12262417035] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-20 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447444090705] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004930] [to:14702031963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048229078] [to:+16785868047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022930047] [to:+19027043514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048302281] [to:+17248030930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028942887] [to:+12133752245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730109] [to:17064026210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374325] [to:13302096375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479463] [to:15164518962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474479196] [to:+19178778622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178773113] [to:+12602755543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968687] [to:18653612836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:13048861059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702038443] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043084] [to:16468740220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-20 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627437] [to:+447961588604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-20 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262463431] [to:+12262417035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287354096] [to:+17547774389] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196143882] [to:+16465130644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043430] [to:16822519161] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206120] [to:15012827022] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082527102] [to:+13867425700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672077433] [to:+13477970928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174210807] [to:+13477970678] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008108] [to:12177251055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022505762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:16866539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132758134] [to:+14132715476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-20 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-20 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108009114] [to:+16106999596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:16788917492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13474320212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15098409146] [to:+15103227826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411120] [to:15196585760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557223] [to:13154129891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073176028] [to:+13478992165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028309801] [to:+19027058333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174210807] [to:+13477970678] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821867] [to:13157155252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167850927] [to:+17162790915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965744] [to:15133992903] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-21 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654109482] [to:+19027043769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315703005] [to:+17607013294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986752] [to:16165584348] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939305] [to:19783979692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371931] [to:17782234100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003D80401] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213171797] [to:+13217309541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15098409146] [to:+15103227826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065646385] [to:+14706733182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079905707] [to:+13025957961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808142] [to:18104937147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403551050] [to:+12026609878] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15677033117] [to:+13069938256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048789377] [to:+18046650262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19087598234] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916287] [to:16475492498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062164573] [to:+13069928081] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041120] [to:15026021978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797151390] [to:+19177376248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369727240] [to:+13366452780] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174210807] [to:+13477970678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364931051] [to:+13369381979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312064640] [to:+19318968750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703159450] [to:+13312087821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988215] [to:18644784234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16363831045] [to:+16367305697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998161] [to:13217450812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372065] [to:13526539597] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365309] [to:14175439061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136937190] [to:+14132715967] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099327910] [to:+14097771148] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249197021] [to:+17248035369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878834] [to:14015167179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003480201] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:13046512887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455181858] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045749861] [to:+19142066720] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435588512] [to:+14438550744] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505577957] [to:+18508950499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783029700] [to:+14788419973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142689964] [to:+14387920315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-20 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-21 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447547117243] [to:+447418330834] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769123] [to:19046725907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-20 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-20 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032900556] [to:+13203074858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615074539] [to:+14406588446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372065] [to:13526539597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649297] [to:14195665770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199927774] [to:+12264552280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D80402] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341259] [to:15804615217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13062211546] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199927774] [to:+12264552280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830018] [to:17202433555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263785051] [to:+12897683470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166781521] [to:+16163239482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515266] [to:12399895596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-10 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-20 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317062375] [to:16314048235] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282432619] [to:+18285486367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869311] [to:15748352893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202916899] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059186071] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375895] [to:15179851682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042288952] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036323] [to:15066531264] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14049183395] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605567823] [to:+13606027148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248138739] [to:+17248034484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365309] [to:14175439061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132183945] [to:+12137978530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:18568993174] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187203805] [to:+15817008898] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784763494] [to:+19786140178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236936] [to:18303222247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315460] [to:14782508328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-20 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021984] [to:14188686951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434886828] [to:+16474954504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202916899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298875] [to:18593042294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18135412598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577242496] [to:+19172669394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910254] [to:13373879501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13149548230] [to:+19726665461] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024428525] [to:+13025830866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702131267] [to:+15703974305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624523541] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122204541] [to:+12138027309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D80403] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682092] [to:16074170705] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083912683] [to:+12627776231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034016393] [to:+16034132201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123142269] [to:+13866283436] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326161] [to:15022944295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-20 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944695155] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12042724080] [to:14312743587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787557012] [to:+16784345984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:16467325300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587211] [to:14403811504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012383267] [to:+12019956298] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253327365] [to:14253127692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:14789553420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165582716] [to:+12692207173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160427] [to:12398396409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-21 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847958440] [to:+16109102832] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312933315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253283230] [to:+12346507827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667474] [to:15148130076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755876] [to:12168556917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041009] [to:15022035124] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812907659] [to:+19783231855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608496121] [to:+19142796796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397113] [to:14782445068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998161] [to:13217450812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512436707] [to:+18053943118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024895392] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-20 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205449] [to:+447934832009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:17722091497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-20 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630210] [to:13473091600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812907659] [to:+19783231855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179670074] [to:+16178634637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169650645] [to:+13479478088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372202] [to:14079137182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17708824527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046210467] [to:+17736668820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812907659] [to:+19783231855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236887] [to:19542538846] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640675] [to:15853700542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-21 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15677033117] [to:+13069938256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615074539] [to:+14406588446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463632409] [to:+14122302191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122052926] [to:+14157995561] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137759] [to:17166387161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364733] [to:+13479749446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D80404] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149438047] [to:+14388076731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997765] [to:17204980091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683140] [to:16038313012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138537713] [to:+16136048150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062164573] [to:+13069928081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:19312374558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402081597] [to:+16513335842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521325] [to:+18637347333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587872] [to:14406543778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678771222] [to:16822515498] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640675] [to:15853700542] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485134] [to:13176522959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931284] [to:15144660952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:12188383449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-21 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024481] [to:16614189545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058540221] [to:+13658001610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955955] [to:14183789717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126170423] [to:+13476670413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:18454670306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625781666] [to:+15103136895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999601] [to:16786930476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15304926705] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812871] [to:12032490939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037144515] [to:+16475038238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787557012] [to:+16784345984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124399892] [to:+19142796405] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978908] [to:13367557681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308007411] [to:+17015872104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348069809029] [to:+17089467242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863285098] [to:+17866079946] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675842] [to:14047909185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900556] [to:+14388095354] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342891] [to:17708669145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-21 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295065] [to:12056410487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-21 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627830] [to:+447519219966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:12267923909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12402455882] [to:13018482038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691184] [to:12487030383] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512698756] [to:+14146007717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863285098] [to:+17866079946] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14109636666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022711741] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913174] [to:16478524668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231792] [to:16307794691] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199954087] [to:+19199166759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737241767] [to:+19018426654] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-20 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742895333] [to:+17749921547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-20 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17178142314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12566527066] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863285098] [to:+17866079946] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568672] [to:17176350368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041762] [to:15063807277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708750434] [to:+19172661479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792522057] [to:+14243363252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476881282] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103354872] [to:18283948661] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381838] [to:13048882957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-20 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870301] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736399] [to:14135196803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774752] [to:14796898243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604315641] [to:+14156538759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133043550] [to:+14242866714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-21 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196402125] [to:+18193035453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778572] [to:12244121227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196350684] [to:+17187510374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488410] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676570] [to:13026026046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692777984] [to:+12693366341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:19736894330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289678] [to:12534950746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702920488] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876140128] [to:+17184812490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252230522] [to:+19718886939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134290096] [to:+13479789754] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287883012] [to:+19177370642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473533547] [to:+13475185492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648160] [to:15183304697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107630089] [to:+14844124401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:12013206109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066525] [to:18648845299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563523008] [to:12675603725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:15108203887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382514] [to:18643058442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155127072] [to:13173842806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493108] [to:16788919017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-21 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-20 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223526] [to:+447835641905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016457490] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748352893] [to:+13477869311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14163588578] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132817855] [to:+16136047530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638382241] [to:+13023744978] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037438298] [to:+19719997808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056845730] [to:+13052036354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505507260] [to:+17784033272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681329] [to:+19298419816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797078] [to:12706085369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266096] [to:16206151716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478678449] [to:+12897680728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477710895] [to:+14506390751] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-21 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520607931] [to:+447792166739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369273295] [to:+13369383207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185512528] [to:+15817019863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000606] [to:17096491697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253283230] [to:+12346507827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322848817] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003850201] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003840404] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041762] [to:15063807277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335678] [to:12409889958] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612818046] [to:+13053404373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308832974] [to:+14402528569] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452364] [to:13363004304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-20 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940740355] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186132351] [to:+12132958742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024890096] [to:+19027041241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014376809] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179670074] [to:+16178634637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373901] [to:14694349881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473619183] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756533] [to:13183490464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784007781] [to:16787705714] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068198] [to:19182219893] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162485751] [to:+13214062727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977996] [to:12528143835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066175] [to:19379358191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032900556] [to:+13203074858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328837972] [to:+18328044184] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154316] [to:+19789697552] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025316805] [to:+13025851939] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240433] [to:19193399123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038569360] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-20 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097996] [to:17078032921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024077814] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304722070] [to:+13309358167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592614] [to:12703669434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193607677] [to:+14388096296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044411769] [to:+18046243442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022144141] [to:+19027018694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478088] [to:19175841076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306973191] [to:+13309358075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702805192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18577532306] [to:+18572326021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17817189593] [to:+16172139823] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029746306] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603492208] [to:+17605899368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473619183] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17817189593] [to:+16172139823] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338931] [to:+14706731996] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-20 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724657] [to:17047762983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12532397267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734091739] [to:+19735479935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253327365] [to:14253127692] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725957533] [to:+14695323988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000606] [to:17096491697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-20 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539354207] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065024781] [to:+16513335289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056647163] [to:+14692058672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15063809001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563566334] [to:18569742895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134708] [to:+16475569740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044775097] [to:+19046947529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750757] [to:+16139125653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768967] [to:18128442251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438874] [to:12154606910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897261] [to:17315925925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105161285] [to:+15169267081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138082107] [to:+14402526780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657261] [to:12543928010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228657] [to:16145546656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105010204] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024803969] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059299294] [to:+16054997082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028094373] [to:+14437201593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015546821] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057836587] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524276274] [to:+17279997481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069990114] [to:+13069930136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0201] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194105958] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059299294] [to:+16054997082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003480202] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157083699] [to:+12135874952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093350159] [to:+15107756760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573769963] [to:+12138064390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019495703] [to:+19014448280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704364350] [to:+14018677758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062232004] [to:+17727668917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126780122] [to:+18038519671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277761934] [to:+17723618237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-20 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239947333] [to:+14706732090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-20 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407727355] [to:+12132951820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134856805] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094960816] [to:+16099040410] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139720593] [to:+18572193872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022948465] [to:+19498771451] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16363739147] [to:16362328331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706400350] [to:+12546930214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523040036] [to:+19046946066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022505762] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985674] [to:18168323112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975401] [to:13343277983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439118] [to:18609780700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856347349] [to:+12139926405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869924] [to:14783052205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16082390251] [to:+16784968731] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19122889510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842822] [to:17325015170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842822] [to:17325015170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391083] [to:526371238911] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049405248] [to:+13476672588] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391083] [to:526371238911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17163424384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026913234] [to:+16474955711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305813308] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-20 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329512393] [to:+18327772141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185076519] [to:+15817015752] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910507] [to:16479470701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042100651] [to:+13478085385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:18593023527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455829] [to:19165851065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-21 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12344106218] [to:+12343077846] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679050420] [to:+12679669832] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345423] [to:16784488364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:15635791903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18106243915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:15186704210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037686784] [to:+13473438869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032900556] [to:+13203074858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19717124174] [to:+19715122983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022560918] [to:19725672254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-20 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174539281] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18628812951] [to:+13476303977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-20 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235050342] [to:+12485375421] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063434021] [to:+17097020566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479653554] [to:+19738147984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139720593] [to:+18572193872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393562] [to:18108344207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295488811] [to:+13053404906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373350] [to:13219874114] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373350] [to:13215575562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-21 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474904168] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550350] [to:18503758124] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478518] [to:19292534182] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154885302] [to:+12672473340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563009290] [to:+13479199337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-20 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921214280] [to:+447451234160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-20 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342645198] [to:+18639492776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477137] [to:14847441875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042648461] [to:+13867428900] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:17248336554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608903471] [to:+18609710280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355046] [to:12604184218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228071] [to:13366843511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563752956] [to:+12342314093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234261389] [to:+13478685787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649852513] [to:+15713927866] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324346] [to:15023315501] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447837] [to:+12264559721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:14165736027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:12493582804] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169109836] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555437] [to:12405597056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755429] [to:12693553202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404520176] [to:+16572071944] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306301] [to:16365841390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056410487] [to:+12135295065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597537] [to:19252789671] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-21 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447547117243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14166550839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19028740045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315317163] [to:16315767436] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802322] [to:16313342620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231988] [to:19853811797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187203805] [to:+15817008898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-20 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473819761] [to:+16475039354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015880662] [to:+14243364069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105161285] [to:+15169267081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897261] [to:17315925925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227349] [to:19062362858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-21 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-11 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065024781] [to:+16513335289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047038] [to:14783207158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:17603492208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17875647541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334477] [to:18127187555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885078] [to:19794847020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178249130] [to:+16673083103] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088900] [to:18025405758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326431] [to:12293259380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157153] [to:13306412885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559045] [to:18502557652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:14403847756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739060] [to:17177365783] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786930476] [to:+13478999601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012209093] [to:+19018428643] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649852513] [to:+15713927866] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434886828] [to:+16474954504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856347349] [to:+12139926405] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072088391] [to:+19259574654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784991487] [to:+17747288291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726432968] [to:+17727746761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206063298] [to:+19172668471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106918682] [to:+19194158126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228730] [to:16147958772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:12704982043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194399729] [to:+14199649063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049616814] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14232187162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-20 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049514864] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074030723] [to:+19173911128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800625] [to:12037272863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-20 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394794] [to:12165430434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15037916506] [to:+13606383149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289325] [to:14132214877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693537168] [to:12148009946] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657216138] [to:+19789697175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303574179] [to:+13308503566] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12103654167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527916] [to:15175541328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:16032096760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196402125] [to:+18193035453] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319655369] [to:+16319800677] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022102429] [to:+19027031277] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022711741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373350] [to:13216140364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+13479804726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163236057] [to:+16169524529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132105] [to:16033727691] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950178] [to:19049625332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139480] [to:13864022905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-20 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-20 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409702279] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697062] [to:17146102331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097653141] [to:+14259392511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006547] [to:14143797109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804615217] [to:+15169341259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027043143] [to:+12405587801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016457490] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17342490822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107817097] [to:+17279165802] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183789717] [to:+16474955955] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153136417] [to:+12677939213] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702847104] [to:+17186755485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15405744377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522103124] [to:+13867428657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-20 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+17185044879] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003410202] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+17185044879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003410201] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285036] [to:16617723786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313424954] [to:+12312996231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674240776] [to:+12678676882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927794] [to:14389325721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142616925] [to:+18455797405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337199] [to:15205600256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155547] [to:15184814726] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896968412] [to:+15103135693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216848694] [to:+19177731867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683140] [to:16037484577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653981619] [to:+14156493971] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-20 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807496184] [to:+19286605228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:17702669189] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15142682236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406408] [to:16266248591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262302813] [to:+13234865296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056079] [to:19025410220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845772242] [to:+17185040321] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-21 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503007077] [to:16157273177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124451] [to:16789936001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158468] [to:12624841854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942525] [to:15142684854] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184166884] [to:13085205016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167850927] [to:+17162790915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438446989] [to:+14433453617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618461660] [to:+13479196773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995694] [to:18643848915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995694] [to:18643848915] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547678] [to:17406441440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968750] [to:19312064640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182480415] [to:+12183311094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487030383] [to:+16467691184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15093182063] [to:19174102130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096423294] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542538846] [to:+19543236887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774210] [to:17323370459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051105] [to:15416807562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313367] [to:18504050710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205570] [to:+447900453656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19125904181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029747896] [to:+13479067231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077884893] [to:14037080437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127628] [to:+19142060462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753612115] [to:+15758258609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383515901] [to:+15146007224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077319856] [to:+14804392828] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133339686] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538837] [to:17348909353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954151] [to:13123308217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066531264] [to:+15068036323] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237188669] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672744] [to:12525787449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000711] [to:18194212109] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:17405413078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408483] [to:12899685272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000711] [to:18194212109] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042247814] [to:+13866017065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918586] [to:+15146008193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328595137] [to:+17133099109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708955280] [to:+17702005072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315317163] [to:16316275951] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065210769] [to:+19148608471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512063084] [to:+15085569820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305697] [to:16363831045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022321749] [to:+18133206002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433030733] [to:+15614052429] [flags:-1:0:-1:0:-1] [msg:80:Watch "Gyptian - Hold You [OFFICIAL HD]" on YouTube.https://youtu.be/O6SeD1xE7NA] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-21 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418328300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693537168] [to:12148009946] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016049995] [to:+13479748218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16472241720] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-20 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706775669] [to:+13214067519] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204875086] [to:18124300595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047988] [to:12265670576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730784] [to:17065183131] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800677] [to:16319655369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023221] [to:14236643505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479499195] [to:+17133894269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023931509] [to:+14703336578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602324712] [to:+14437201258] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013747] [to:18585251970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:5212225106054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144282224] [to:+13473898083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039618] [to:16477039973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14109636666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674543353] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-21 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218105] [to:+447709606494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295065] [to:12056410487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313367] [to:18504050710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:15108203887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-20 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539354207] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+13478029229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-21 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623025] [to:17757457558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381471] [to:18634141665] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672168308] [to:+14242218342] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364069] [to:+13479714835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B80202] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262467458] [to:+12488569623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853151147] [to:+15852822671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233123651] [to:+14242866898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328276] [to:15135356668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939396] [to:19784769160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039411] [to:17805236815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-20 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132636043] [to:+19142795655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077385032] [to:+16474916510] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407665] [to:15612944177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188120222] [to:+15817021210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472902] [to:16015201556] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037162] [to:16478739221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211531] [to:18036405628] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374811536] [to:+14156495220] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592622] [to:13347810480] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176709725] [to:+12606337316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937161] [to:17347552346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637336461] [to:+14844893480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:13014376809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134362602] [to:+15613284191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640956] [to:16073318346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253327365] [to:14253954905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:14403847756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-21 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174065310] [to:+19177905623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149195037] [to:+15817009545] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12195150962] [to:+14074424112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13474857423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044545419] [to:+13478023293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016083335] [to:+13479804118] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012412172] [to:+19142815860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708955280] [to:+17702005072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218107] [to:18103942234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-20 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626077783] [to:+17604747759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365200944] [to:+16504860086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176350368] [to:+13476568672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432774] [to:16157130942] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043816282] [to:+14318002493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232375] [to:19706739431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053692098] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673492] [to:17173713372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626007506] [to:+18102218495] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282470394] [to:+19298411121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097697477] [to:+16474951899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034740] [to:15153138053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:12709871579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040275] [to:+15109487446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088602] [to:12673530753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732090] [to:14239947333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-20 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539999320] [to:+447451202840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-20 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801492] [to:19062392380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195665770] [to:+14199649297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362796305] [to:+19199164271] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18026835973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169834532] [to:+12136946355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099548597] [to:+16467019567] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-21 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493582804] [to:+18678883672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515792] [to:18502519544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047988] [to:16139177237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615022359] [to:+15612400015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037438298] [to:+19719997808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397459172] [to:+17723618182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052450] [to:19039268925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034334] [to:17246915536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783633] [to:18508438473] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672287079] [to:+15672819597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16479092277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702696110] [to:+15703973326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087598234] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886930] [to:+15103227226] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058279965] [to:+12132950112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-21 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833254834] [to:+447451208710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D70201] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003500201] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003500202] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705899009] [to:+15028041359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14149731051] [to:14145106621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999601] [to:16786930476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407130] [to:13184611862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12292880392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016429] [to:13372900906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-10 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802978] [to:14232922588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977086] [to:15709032476] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729406961] [to:+17723601672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101966] [to:17404422065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101966] [to:17404422065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672287079] [to:+15672819597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077338] [to:14508032001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475697] [to:17029085969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475492498] [to:+16474916287] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336531] [to:16512027331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439332270] [to:+19177739867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026779] [to:19027172133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035657964] [to:+13473798865] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474592315] [to:+12897690298] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865676677] [to:+18107725866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857476332] [to:+12542338127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-20 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807720499] [to:+15052573412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737575493] [to:+12138063188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AE0202] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063150711] [to:+14706734737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227198] [to:14703314039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036323] [to:15066531264] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734892989] [to:+13479808547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824933] [to:19082901378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531125] [to:19857208284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063152] [to:13219877037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16472095442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147638838] [to:15593488805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908522] [to:18144945048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674883] [to:13347994854] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341259] [to:15804615217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:17652718975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696358640] [to:+17865030611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864022905] [to:+16172139480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026779] [to:19027172133] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142675031] [to:+15817000796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708955280] [to:+17702005072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681329] [to:+19298419816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335678] [to:12409889958] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824933] [to:19082901378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567527] [to:19022091531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674883] [to:13347994854] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-21 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049474416] [to:+13025957961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039549] [to:18195522099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309496270] [to:+19148818715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043148958] [to:+18724002973] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222398] [to:15136030839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136036940] [to:14238380520] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:13606271367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592622] [to:18187385879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576472297] [to:+14845772851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183490464] [to:+12133756533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168646735] [to:+17162792660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12897711445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047497273] [to:+16049019730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612818046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15717301018] [to:+13478021791] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515349] [to:13526310668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-21 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674824] [to:+447977665991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625180411] [to:+16177064384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412928] [to:18282151813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142940041] [to:+17142612871] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-20 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852807] [to:13023968865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13376802182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834035] [to:17606944946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975401] [to:12054091649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237772859] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635295264] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18073552947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-21 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-21 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263785051] [to:+12897683470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981016] [to:15195322905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362057813] [to:+19092882054] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176483461] [to:+18174057986] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:16142820107] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072899187] [to:+15089668780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674084560] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786256] [to:13013313349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478088] [to:15169650645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788145] [to:16014551872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724657] [to:17047762983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:13866977558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169174] [to:17178211133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748892] [to:15865881077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021210] [to:14188120222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079687320] [to:15187526877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026779] [to:19027172133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404981904] [to:+16466691506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134362602] [to:+15613284191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086602237] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13474857423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134535846] [to:+18572402049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135806227] [to:+18133208963] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763453281] [to:+12139297141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475529221] [to:+19176634561] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036824661] [to:+18133087336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787705714] [to:+16784007781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162621429] [to:+12169295373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189775233] [to:+15186155153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705717575] [to:+19703156742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169943432] [to:+12015805945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143709835] [to:+16149228066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-21 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388076731] [to:15149438047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-21 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447827810955] [to:+447451205289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107600] [to:12394101197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916287] [to:16475492498] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024654377] [to:+17026747812] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888903] [to:18438269579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18478478458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478678449] [to:+12897680728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235998753] [to:+17605899886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246792305] [to:+16157778767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14405716006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-20 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068812825] [to:+13069929469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059319758] [to:+16474910229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088188960] [to:14084382329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327754] [to:12148819339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654109482] [to:+19027043769] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794021041] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:12708818568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067231] [to:15029747896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12069006587] [to:+12062588048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040507] [to:+15169268413] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039462361] [to:+17036466323] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037162] [to:12265812536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123040366] [to:+13867425077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154305461] [to:+13479809270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647810] [to:+19717328525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19409993467] [to:+15594298091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109486493] [to:15106063796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027348956] [to:+13477973862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-20 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447563608930] [to:+447520608452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194657797] [to:+12262405127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067483848] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:14186335020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18672226109] [to:+16474985168] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:14186335020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406279] [to:18127014204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322711736] [to:+14043411557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] TRU3-2-D@-G@M3: My "Brand new n box*u... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403833630] [to:+19142286950] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-21 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125755] [to:13369353382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893012827] [to:+14388097019] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288441] [to:13106546786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104916495] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067478504] [to:+12536423566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602344617] [to:+13477368760] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657156] [to:15125915514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-20 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336531] [to:16512027331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736067] [to:15136304602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064478] [to:17656170602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045115] [to:15142588758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805085] [to:18049991057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048948354] [to:+12048137453] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528569] [to:13308832974] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-21 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447925335976] [to:+447451248629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889490] [to:12244805106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786256] [to:13013313349] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054665820] [to:+12264550984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706017786] [to:+15129524840] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603739384] [to:+16602009564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218342] [to:12672168308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875647541] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958898] [to:16014936262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472328671] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315431] [to:14233073823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475529221] [to:+19176634561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477775228] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706017786] [to:+15129524840] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768481] [to:14173506891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033913] [to:17245561514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996400] [to:+19148988246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304471833] [to:+13302373880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503397959] [to:18433378831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475529221] [to:+19176634561] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803932] [to:13058794898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312010777] [to:+12132958227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003620202] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003620201] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402449589] [to:+19172834604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211531] [to:18036405628] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045750592] [to:+19047587907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19492410085] [to:+17144554428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907745] [to:12253337739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138755576] [to:+12013408961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17185067069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144373555] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313342620] [to:+16319802322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373228161] [to:+12139731971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14049183395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594397] [to:19016540281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604838527] [to:+16193449064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521325] [to:+18637347333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406279] [to:18127014204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-20 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502559] [to:19569439085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062196355] [to:+17474006291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18432507845] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19125904181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899685272] [to:+12262408483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408972] [to:19042145571] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:18606800298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072512971] [to:+18077886907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14026198246] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092931182] [to:19096621069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400892] [to:17868043234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502883] [to:12102152467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18057516456] [to:+14088725329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852807] [to:13022788573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073429723] [to:+14076333618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014376809] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046181] [to:17097281754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15092798859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482232218] [to:+17324360210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13209681757] [to:+13023744978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807496184] [to:+19286605228] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177454897] [to:+18638557405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960585] [to:17023080048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896972265] [to:+17053007867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679873617] [to:+12695755278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004499] [to:14804307406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817018878] [to:14183789353] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807496184] [to:+19286605228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054172587] [to:+17053024510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:17184191197] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:17184191197] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784769160] [to:+19785939396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:13309575021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796120] [to:16143599291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476139192] [to:+19172319753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865881077] [to:+15865748892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238836824] [to:+12138023221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035779287] [to:+19292009750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168556917] [to:+17186755876] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210880] [to:13365667932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074931] [to:16136200405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132122692] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053562584] [to:+12136165115] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:17184191197] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472488298] [to:+13477749677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007717] [to:19512698756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491348] [to:16065153390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239947333] [to:+14706732090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039411] [to:15872988579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-21 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447548455317] [to:+447520625379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D30201] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777587] [to:18057034991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313084869] [to:+16158433233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18282432619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546369878] [to:+17542220406] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376182400] [to:+12133550105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132008433] [to:+16136048237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778394] [to:12317351128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232187162] [to:+17633015532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:15147552912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644784234] [to:+13477988215] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509617740] [to:+17784030420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362843580] [to:+16503008450] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13373775222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-20 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696841500] [to:+19039005799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093680772] [to:+16367305888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068214220] [to:+13064000712] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-21 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013530] [to:+13053404373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782442634] [to:+14706733898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192965379] [to:+15672057151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255215] [to:+19712488937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709357127] [to:+12543347318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050459] [to:15877799420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756533] [to:13183490464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018579395] [to:16095536568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928081] [to:13062164573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:18084451090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046292158] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061277] [to:19143181483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16472305223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074931] [to:16136200405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502519544] [to:+17866515792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656674872] [to:+17659869148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162627375] [to:+15852823244] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057670491] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649064942] [to:+18649999072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408177168] [to:+15172527779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306362239] [to:+13473797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086856006] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477775228] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737575493] [to:+12138063188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003AE0201] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637336461] [to:+14844893480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289190184] [to:+14156538130] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123984091] [to:+14158535056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176522959] [to:+19148485134] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027613882] [to:+13025830143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-21 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027517234] [to:+12027179708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134362602] [to:+15613284191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482617] [to:16084501014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058794898] [to:+17864803932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029085969] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183155929] [to:+15103404745] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343741] [to:16613018828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-20 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447548455317] [to:+447520625379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D30202] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136325049] [to:14406376893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236887] [to:19542538846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478518] [to:19292534182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040606] [to:+13025958560] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632600441] [to:+17638529142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377792690] [to:+19172319789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-21 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202367] [to:+447734006469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16312558076] [to:+16319800673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985151] [to:15803063324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187526877] [to:+16079687320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040336] [to:12677519515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194949400] [to:+12262408894] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802089806] [to:+17175909035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040336] [to:12677519515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045731902] [to:+17324360492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342008358] [to:+12139296952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455829] [to:19165851065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:18606800298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784967057] [to:17622099493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558022] [to:17187754566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14783529172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067179] [to:12019198909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725734] [to:15599747731] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015201556] [to:+16465472902] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165736027] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522152742] [to:+19415255263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059239669] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333286] [to:17405919847] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475924] [to:+18107888119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0201] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184611862] [to:+18572407130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067940] [to:16156186095] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785335083] [to:19785510520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:13173066766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096728015] [to:+16095434122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0202] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16132008433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106063796] [to:+15109486493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122229] [to:18193296667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-21 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264552280] [to:15199927774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477046128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:18434190502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069607] [to:15732479570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217872] [to:12195082236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:17275051038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147759772] [to:+19179772388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819597] [to:15672287079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133528494] [to:+17072427827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-21 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054466051] [to:+12898045491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007946] [to:19793249766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007946] [to:19793249766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-10 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12484601194] [to:15862603430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470286] [to:17096850923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138982] [to:13174077188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513075260] [to:+16079655925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594637] [to:17788478782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042935] [to:16138896461] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432774] [to:16157130942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340670] [to:13364575176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044253453] [to:+15713929494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788678365] [to:18106268717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747080] [to:18646847471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997931] [to:12172745868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721202] [to:15042989185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493132] [to:15807476392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155127072] [to:13179357300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804615217] [to:+15169341259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594863] [to:16048456563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298337] [to:19372728999] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-10 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15412488410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706739431] [to:+17206232375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-10 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029747896] [to:+13479067231] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155147867] [to:+19132973506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124760] [to:14842418245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066531264] [to:+15068036323] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17248807934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843530644] [to:+14845354704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784769160] [to:+19785939396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032B0201] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562672537] [to:+13478992504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863533219] [to:+18103393179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003930201] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12512068624] [to:12516056820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17062436826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863533219] [to:+18103393179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003930202] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879216] [to:13132960508] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044887772] [to:+13476677401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168306288] [to:+16474946811] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196495751] [to:+16317732523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075577802] [to:+13478084695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195322905] [to:+12267981016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032B0202] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236643505] [to:+12138023221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146266] [to:19739109400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+14387922726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806230] [to:19106749017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:17166034883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918219] [to:18192667857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950112] [to:18058279965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472325817] [to:+13658005778] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16043437548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:13863076177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403969088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134204745] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228650] [to:17205577835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804016] [to:15136579083] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:16289994874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226381] [to:+19027043677] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085205016] [to:+17184166884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-11 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-11 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044960775] [to:+13143009812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475566914] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-10 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18282432619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804432] [to:12704071595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416619185] [to:+13478999339] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166521426] [to:+14157614531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755751] [to:12292064989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033579240] [to:+17784024642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+17786530098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070670] [to:12605179085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167881312] [to:+16163190554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099402] [to:16133620404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029648] [to:15065430730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029648] [to:15065430730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634637] [to:16179670074] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018983] [to:13233146490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-20 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057217345] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404072380] [to:+17408797442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145687523] [to:+14388076819] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053213034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145687523] [to:+14388076819] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056328982] [to:+13218328096] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336564] [to:17066993936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130751] [to:14403097373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409980560] [to:+12138612251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073006] [to:13208280141] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079222138] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340670] [to:13364575176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14405716006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058041546] [to:+19172610496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068718878] [to:+18194141002] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168958] [to:15088276351] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046980953] [to:+16474914830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702567804] [to:+19318968026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731698] [to:17062370467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109486493] [to:15106063796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966329] [to:14047174063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406018288] [to:+17408796489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739060] [to:17177759149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-11 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-20 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-11 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095894861] [to:+16475566599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:18193835962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027245] [to:14432073732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159978577] [to:+12138221514] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-20 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608094] [to:+447849587161] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:14014419816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407130] [to:13184611862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705802769] [to:+19177229859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-21 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137705] [to:13049942630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376602] [to:16077430582] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546930542] [to:12542661857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:14075450422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364164] [to:+17073418220] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789754] [to:15134290096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746761] [to:17726432968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641141] [to:16063105974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:15732057907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:18193835962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679056669] [to:+12674377313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188383449] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220556] [to:15183796641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027309] [to:18122204541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135287643] [to:+12132955333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375421] [to:14235050342] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955627] [to:19053302134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-21 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447565324860] [to:+447520627310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817256] [to:13158042151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308087405] [to:16624208708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072700] [to:15146475649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:14169109836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661243] [to:17168030337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188371425] [to:+17037479571] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13529426885] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900743] [to:+15147003846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767924] [to:15172158103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:15732057907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747802342] [to:+15103135418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051105] [to:15416807562] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523425279] [to:+14153407810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282165725] [to:+15103404686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:12896866174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538526] [to:13344750876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747080] [to:18646847471] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338931] [to:+14706731996] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:12896866174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372065] [to:13526539597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067231] [to:15029747896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475463195] [to:+12897808703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848382199] [to:+18572191674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696723051] [to:14699079158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212505796] [to:+19047582171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042945872] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:12564054304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746230] [to:17606754862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022034792] [to:+16574008980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704101199] [to:+16476913247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914804] [to:17054347266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613015758] [to:+16612287675] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287385790] [to:+14806664660] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055322924] [to:+19717778651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190182] [to:16064163016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19548681033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746288915] [to:+13478969660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521325] [to:+18637347333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182432627] [to:+19298410232] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746288915] [to:+13478969660] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346720555] [to:+17348210951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066154858] [to:+15713055821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371931] [to:17656026015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12104879162] [to:+18326502883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15837959548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042993352] [to:+12048138425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139480] [to:13864022905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13166804610] [to:+14157995573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227198] [to:13409980893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133490825] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066970006] [to:+16475567148] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782168997] [to:19789960509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011434] [to:18193833661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612841506] [to:+14029997120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053361348] [to:+16193501462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899446] [to:15612467824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888903] [to:18433128855] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12532397267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409702279] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01151981554442] [to:+16784342385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033401608] [to:+12148149833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-20 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221289] [to:+447936996807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189780798] [to:+12138228308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612841506] [to:+14029997120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012639] [to:14186375399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154799754] [to:+12156667388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803932] [to:13058794898] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477137] [to:14847441875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133126720] [to:+18133208532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526427] [to:14402630985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407727355] [to:+12132951820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023109279] [to:+17182559402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147576878] [to:+14502337137] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245561514] [to:+17248033913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475566914] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239571330] [to:+12139359354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705702811] [to:+12132954296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143918918] [to:+19298006220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774423] [to:19168899292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154606910] [to:+13473438874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155494861] [to:18478584910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177046162] [to:+15168302393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264551135] [to:12262144226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032945] [to:17244547480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137161018] [to:+16136043428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407471] [to:19544009182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806230] [to:19106749017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796414] [to:13304739936] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17179635652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950498] [to:13179829607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102018121] [to:+15068029609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672168308] [to:+14242218342] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198322] [to:12074617549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-20 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15168282027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049826038] [to:+13479787564] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362177816] [to:+19365878635] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473105952] [to:+13478303187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524684382] [to:+18583606616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168581] [to:16019063763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168323112] [to:+17279985674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856890672] [to:+15852825016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198322] [to:12074617549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652825575] [to:+18653473297] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125934] [to:19188458396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305900738] [to:+14403594412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496267] [to:16465780045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497989595] [to:+18173988416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924431] [to:15148829551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897798469] [to:14163895064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852306478] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:12564054304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732479570] [to:+17188069607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147369801] [to:+17408798858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409787032] [to:+17407853117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479979060] [to:13047046778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16208753416] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692091544] [to:+14149731287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068887] [to:558187797776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672419768] [to:+14197767413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524684382] [to:+18583606616] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068887] [to:558187797776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864808] [to:16785995050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046040900] [to:+16784348300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104682660] [to:+15103131209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145020119] [to:+14387942675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193295777] [to:+16139122628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13365123461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:13862626154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532272] [to:15126564669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15749039878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388041074] [to:14507752754] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435425792] [to:+19802092190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576049513] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755751] [to:12292064989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526242153569] [to:+17813862838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025957981] [to:+15863315361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104096] [to:19123886758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134199788] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033080339] [to:+15108538276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957150] [to:14782832263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15024077814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18608618951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313637965] [to:+16129305847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507827] [to:12253283230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:14165736027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154605] [to:+19703158397] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-20 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106063796] [to:+15109486493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733595763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864022905] [to:+16172139480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149502] [to:16078466616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542538846] [to:+19543236887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669388] [to:18123749141] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144747205] [to:+18458181056] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874594] [to:12292051436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025397] [to:12508081180] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19414173088] [to:19419296809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725329] [to:18057516456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648155] [to:18603872129] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196756830] [to:+19194597307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525441636] [to:+12139218207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19414173088] [to:19419296809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720119] [to:19125524762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041560] [to:+16475569746] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168044208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328333231] [to:+17322582006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:17786772651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018393] [to:19016539906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608244] [to:12674676106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099973556] [to:+19092932136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318295] [to:14435205422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095532416] [to:+17327068221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028808650] [to:+19027062654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156126933] [to:19123445971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016549845] [to:+18018500580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169676433] [to:+15167349664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142066000] [to:14138879272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222398] [to:15136030839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646847471] [to:+17604747080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522875166] [to:+12134786189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099973556] [to:+19092932136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373199] [to:15184100421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318295] [to:14435205422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086137503] [to:+18316107708] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-20 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:87770] [to:+447451224651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-20 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451238485] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122204541] [to:+12138027309] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17038554859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168581] [to:15158646688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812171148] [to:+17813129183] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-21 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594620] [to:18657123487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703049645] [to:+12136165448] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15168153812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269274720] [to:+12264555307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968590] [to:19312134313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148191] [to:+17329869103] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274603] [to:19082945931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252230522] [to:+19718886939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509617740] [to:+17784030420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672287079] [to:+15672819597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319374] [to:12075926265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084501014] [to:+12626482617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-20 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-20 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451237901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842251] [to:14846517576] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842251] [to:14846517576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587279] [to:19043651736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-21 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792166739] [to:+447520607931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077124] [to:14387634957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178482803] [to:+12346507710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564054304] [to:+17726179181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045100446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396132] [to:12162689638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231879] [to:16156804487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206629016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:16362903630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206629016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137705] [to:13049942630] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:14165736027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-20 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930655511] [to:+447520629372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232375] [to:19706739431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049746716] [to:+15103222523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644836308] [to:+19142065456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657156] [to:15125915514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692028216] [to:14697342378] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13092134771] [to:+18729996237] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:17078806798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049798739] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093823] [to:12012816436] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524456] [to:12313439036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206151716] [to:+17194266096] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874641141] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049746716] [to:+15103222523] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012639] [to:14186375399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085626] [to:14187826010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328333231] [to:+17322582006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16672072518] [to:+13214068827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143417398] [to:+19172751873] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18579970577] [to:+16172139134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999312] [to:+13477749648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:13216848694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19018598533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13059239669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009750] [to:18035779287] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053622392] [to:+17059102381] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615431722] [to:+15612319123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200641] [to:17246503167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133141720] [to:+16139093182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755876] [to:12168556917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048842] [to:18604622066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:19146216835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053622392] [to:+17059102381] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375915] [to:18472223365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654904775] [to:+13866012215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176648375] [to:+13479196754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003390201] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610496] [to:15058041546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704071595] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995392] [to:18643089711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147968505] [to:+17205908132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005721] [to:12176634395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176648375] [to:+13479196754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003390202] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:12089537512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748495248] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939181] [to:19188518008] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411617] [to:19058186329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:19033632087] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13109246184] [to:18189138140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671610] [to:18604589437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197122328] [to:+18193035229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528421] [to:14406547071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655461890] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702897395] [to:+13479713797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125934] [to:19188458396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028070598] [to:+19177376990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207414717] [to:+17727740847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123041537] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621893] [to:18572661844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436163482] [to:+18038519931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634251] [to:12079379819] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700652] [to:19802487173] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812737] [to:12404359775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134199788] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338221] [to:19123900745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274579873] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308922] [to:13215571300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045037] [to:15142479030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-10 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406268705] [to:+12406857743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938810] [to:12679885518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550659] [to:17173854230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274936723] [to:19546553491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646170891] [to:+18649995804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164500397] [to:+15164724862] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652716196] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315153142] [to:+18678771146] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652716196] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788919017] [to:+18639493108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874594] [to:12292051436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319374] [to:12074586737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594863] [to:17788089767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679615155] [to:+12676076196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106763135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479695] [to:18284679601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:12504159006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606286222] [to:+14422207633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:13866977558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-20 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736500943] [to:+19738462404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573412] [to:14807720499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745030013] [to:+12134017524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192121344] [to:+14197767486] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12529027655] [to:+12138064362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150496921157] [to:+18326503102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149679298] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183490464] [to:+12133756533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005327] [to:13346725709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-21 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485134] [to:13176522959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177454941] [to:+15863315831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622099493] [to:+16784967057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036532916] [to:+19703158262] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18632296808] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476671816] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106243915] [to:+18107888119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317985734] [to:+12313778044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963098] [to:16148175935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311097] [to:+13479976354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-21 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033063] [to:15052525012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12532217845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366076] [to:16053703824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384033104] [to:+15146132323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803277294] [to:+16026384660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564054304] [to:+17726179181] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247611167] [to:+17248032709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433233] [to:19313084869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572444276] [to:+17812774269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543193498] [to:+15052571252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098584121] [to:+16304893285] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383513] [to:13366089020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874594] [to:12292051436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+13478021583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EE0201] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082749653] [to:+18482288775] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-21 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208534] [to:+447740092430] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487869] [to:13372551806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502416697] [to:+18503293504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17038554859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898083] [to:18144282224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182480415] [to:+12183311094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-21 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474857199] [to:+12264557845] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168811993] [to:+16167948505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623025] [to:17757457558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097019] [to:12893012827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023109279] [to:+17182559402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133141720] [to:+16139093182] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819597] [to:15672287079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022941324] [to:+13477962077] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872104] [to:13308007411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232375] [to:19706739431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523968754] [to:+14157614394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663413] [to:12319200675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082749653] [to:+18482288775] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248415659] [to:+13479801185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359670] [to:14235399778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067484894] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+13478021583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EE0202] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075450422] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129323] [to:16175384837] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502301] [to:18308574809] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783849] [to:12293155472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783849] [to:12293155472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649017770] [to:+13477055443] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328161998] [to:+17324433218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738544581] [to:+12342227064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804590] [to:16106799606] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095563432] [to:+14158537143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640610] [to:+16465137856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952271] [to:16603427869] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186377901] [to:+15183440249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447841] [to:19713310851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12818919653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-21 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293128656] [to:+15164724396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15748495248] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036323] [to:15066531264] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137765] [to:18159903880] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15157714362] [to:+15154438861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204172] [to:12054202187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17034199081] [to:15712966265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195329337] [to:+14144005223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892579528] [to:+12892756151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910002] [to:14168549807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526427] [to:14402630985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128946187] [to:+14128193223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293202015] [to:+17186755772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179670074] [to:+16178634637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160701] [to:18703103476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405890] [to:17866161419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722774] [to:15409085931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-21 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317147486] [to:+14088778938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166773] [to:16063089597] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049511997] [to:+15612318597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152450226] [to:+13025957564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630638] [to:12014463533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085626] [to:14504211586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062070469] [to:+13148998239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:17049616814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328161998] [to:+17324433218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016457490] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551860] [to:12013819071] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15043148148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16148932427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184611862] [to:+18572407130] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062731961] [to:+14158253701] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-21 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447543193689] [to:+447418339384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179357300] [to:+15155127072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062070469] [to:+13148998239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625474368] [to:+17025085432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244573] [to:12283270012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334408] [to:18039790827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:18084451090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:17078621180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206151716] [to:+17194266096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476008626] [to:+13477417029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274936723] [to:19546553491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062070469] [to:+13148998239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227349] [to:19062362858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789008084] [to:+16785866412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19036193309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17038554859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505214315] [to:+14388097466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383920215] [to:+14318003832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033104548] [to:18035143296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027668] [to:17802221799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434819] [to:16095419500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300733] [to:12295060622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:19895881751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365773304] [to:+13369383513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19797392051] [to:+18328042753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976463] [to:18169450719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805085] [to:18049014171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147302774] [to:+13479066384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127187555] [to:+16615334477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192126619] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027677] [to:17053082964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154373] [to:+17274936347] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194522007] [to:+18192011075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349648] [to:14015958753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313439036] [to:+16169524456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083126172] [to:+12086204779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406803773] [to:+19492814596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403510316] [to:+19802095619] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-21 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229389] [to:+447880690771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197179652] [to:+12267983302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17134384220] [to:+17133735871] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-21 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748395577] [to:+447451230135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048842] [to:18604622066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194373897] [to:+19199162896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023969194] [to:+19027058176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522072097] [to:+17248032913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246915536] [to:+17248034334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342587322] [to:+19177370490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067484894] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573756443] [to:+17185212728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742747971] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032761051] [to:+13477868662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787894207] [to:+19802094042] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058279965] [to:+12132950112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142666688] [to:+16149964316] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142084298] [to:+18327774217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13207610888] [to:+15632317298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065183131] [to:+14706730784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244135] [to:14016037351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712826113] [to:+19715129324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199416] [to:12403298307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188371425] [to:+17037479571] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204300] [to:14435427001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080424AC0201] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323222667] [to:+18328044291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478270] [to:17725327262] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199927774] [to:+12264552280] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108783369] [to:+14153269081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108783369] [to:+14153269081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513377109] [to:18657484745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077385032] [to:+16474916510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433134] [to:17329126316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080424AC0202] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:14843451379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064181797] [to:+14702391880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509617740] [to:+17784030420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122194344] [to:+13479971091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17146440261] [to:+16173419798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:13063132461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403140897] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309574324] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594688797] [to:+17407853050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312445375] [to:+19312577879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462587100] [to:+12138065820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017045] [to:17865256316] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860435] [to:15139180589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103090074] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-21 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451237901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842251] [to:14846517576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18072512971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13088705382] [to:+15406288929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154890500] [to:+12138223583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033859] [to:17247614023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168282027] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193399123] [to:+19193240433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359670] [to:14235399778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19529778819] [to:17366071114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019384336] [to:+19148486483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148673197] [to:+18572551525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12095340355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777341] [to:15023898974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017096] [to:17402857212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148146084] [to:+14387922065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742873039] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-21 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164871] [to:15702049680] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768065] [to:15024871237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067022] [to:14079612920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477137] [to:14847441875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502941237] [to:+18506313190] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:17349043488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309372474] [to:+12342314262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859196] [to:14136862961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712597894] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084695] [to:12075577802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13208280141] [to:+13203073006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306801487] [to:+13302374348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105386] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026696114] [to:+17077507516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328703123] [to:+14243361018] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13149320713] [to:12179220674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218342] [to:12672168308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348300] [to:14046040900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202909576] [to:+13203073092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362903630] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706739431] [to:+17206232375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951860] [to:13236383482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200396] [to:17062843034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755278] [to:12679873617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172377429] [to:+16173419920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407130] [to:13184611862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192623649] [to:+19175638413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302684515] [to:+19177730844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17276449068] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834157] [to:16789490697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148146084] [to:+14387922065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166773] [to:16063089597] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065603965] [to:+14242769089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069468664] [to:17202618706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312667638] [to:+18572402825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:33644605140] [to:19733582716] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182007415] [to:+12138737479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235050342] [to:+12485375421] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733446258] [to:+15735644192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745845] [to:18326669187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169932057] [to:+16154726783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315244] [to:18505019647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042508932] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231145] [to:17209754656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17806809507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784253065] [to:+17408798883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:17702669189] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023025] [to:14187205306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317147486] [to:+14088778938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048098341] [to:12042945872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037F0502] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203583] [to:18132397649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513979117] [to:+19092933325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813097401] [to:+15817020339] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037F0505] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500037F0504] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037F0503] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156713542] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:18454670306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603305] [to:18163590791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172377429] [to:+16173419920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524456] [to:12313439036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135583796] [to:+13176889952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054308881] [to:+16054997319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195607181] [to:+16474952279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202909576] [to:+13203073092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703216242] [to:+16466999825] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132584942] [to:+13479130524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167689793] [to:+17162792064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175370310] [to:13179108187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18635955208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658514674] [to:+18653473466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726432968] [to:+17727746761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266402] [to:16164463284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313084869] [to:+16158433233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315108] [to:18302759243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506022580] [to:+19712489106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434819] [to:17322411942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654917555] [to:+13479748962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403981665] [to:+14437201644] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388770928] [to:+14387921294] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212728] [to:17573756443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028074404] [to:+13479196908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17034199081] [to:15712966265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17053060702] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003F20201] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F20202] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779603] [to:13309624125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037693] [to:19547091594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388770928] [to:+14387921294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016289466] [to:+14076336790] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125694468] [to:+17135883364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402687246] [to:+14697239339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462337] [to:19089867959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513075260] [to:+16079655925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733553895] [to:+16108804289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+15155127072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035899640] [to:+12408924624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15056592983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074931] [to:16136200405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748595] [to:16038565090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253620448] [to:+18563125800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138982] [to:13174077188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474204] [to:15108504133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-21 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447757675307] [to:+447451228935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048120439] [to:+17133735771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961966] [to:15713599159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079687320] [to:15187526877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475224957] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-20 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408483] [to:12899685272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475224957] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048456563] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193010021] [to:+18193074693] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433134] [to:19082029008] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136857397] [to:+16096144579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717174] [to:15199806073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193010021] [to:+18193074693] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614394] [to:13523968754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551860] [to:12013819071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016176533] [to:+14017680021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15134856805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282913606] [to:+19175804891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216848694] [to:+19177731867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804432] [to:12704278506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477270736] [to:+12018579801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13366922199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18104475924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16477932295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041389] [to:15029942090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:19053414512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736526] [to:14132414089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242881591] [to:+13218329361] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328703123] [to:+14243361018] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511111] [to:18608796177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128012858] [to:+13479979315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13409980893] [to:+19177227198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065562] [to:14107258875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:18196687336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242881591] [to:+13218329361] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511111] [to:17655081304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893598014] [to:+15873152515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095570] [to:12522853959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694386697] [to:+18174057551] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691342] [to:15178027939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503377068] [to:19512954365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797280] [to:19045289037] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319655369] [to:+16319800677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144301575] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476404857] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695527900] [to:14696935658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314039] [to:+19177227198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985674] [to:18168323112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857829] [to:14434046388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179473] [to:12405153446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860698] [to:12679829985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803658526] [to:+16367306382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14325286267] [to:+12547356029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859114] [to:14132581934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145249083] [to:+15129525935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040826] [to:15023411605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203583] [to:18132397649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551373] [to:17795375385] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169932057] [to:+16154726783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174602421] [to:+13175204081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500034E0201] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18288178227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193629232] [to:16198746237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097437806] [to:+17097000622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132320] [to:16036576986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174602421] [to:+13175204081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500034E0202] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138853211] [to:+14136859168] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:12143643911] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-21 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201996] [to:14102516934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-20 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313337106] [to:+13024991974] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203583] [to:18132397649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016273] [to:15742166454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-20 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016539906] [to:+13866018393] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476627358] [to:+13479800919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138853211] [to:+14136859168] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199456547] [to:+19199162795] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142739] [to:19543933194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:12143643911] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:16362903630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175128969] [to:+12136165256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075291] [to:15149980779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485216648] [to:+12488347546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596845999] [to:+12138025597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384033104] [to:+15146132323] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466989884] [to:+17189629107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048992774] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812793] [to:14437342609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974153] [to:17179034981] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491567] [to:16015905886] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639372228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-21 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444943026] [to:+447520624480] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:13032042171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:13032042171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:13032042171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018877470] [to:+15513336948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138982] [to:13174077188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347019893] [to:+18506315113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066327884] [to:+13065004627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739747] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179708] [to:12027517234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042491] [to:12899688984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023109279] [to:+17182559402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145045307] [to:+16466288490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13306801487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755076] [to:12692677884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411120] [to:15196585760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065011580] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182291137] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239570813] [to:+12135297521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027091184] [to:+17344366763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:14058196170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859114] [to:14132581934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043907] [to:13476155126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053574822] [to:+15052571738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407517] [to:17099869660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192667857] [to:+16474918219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748495248] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039824598] [to:+16465136437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797405] [to:19142616925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207385] [to:15746126753] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569294] [to:19105355520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144301575] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041865] [to:+13476671910] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320940] [to:16072809489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15147003696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173745258] [to:+18173635919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707092260] [to:+13475185964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252230522] [to:+19718886939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547043] [to:15139136203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026560794] [to:+12485375410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198716] [to:13402013621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550659] [to:17173854230] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067484894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961966] [to:15713599159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207385] [to:15746126753] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19737562460] [to:15167134577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604536] [to:13235351619] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725733] [to:12517099565] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592622] [to:17065802513] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383513] [to:13365773304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246992020] [to:+19703158540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963904] [to:16093069926] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800458] [to:15167432146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018137893] [to:+18328042238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072402265] [to:13073151964] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865042] [to:13156228709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148241149] [to:+16139091760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950112] [to:18058279965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948136] [to:19049932316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806885801] [to:+14804394230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15174559902] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228917] [to:19173467694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16148932427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024077814] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125694468] [to:+17135883364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403056465] [to:+13015699948] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535082] [to:16622957420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944883] [to:18642934486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733553895] [to:+16108804289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874835] [to:12254487516] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921812] [to:12084463102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237237085] [to:+14125354368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015980] [to:12025495182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295065] [to:12056410487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025917022] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364575176] [to:+14342340670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163298] [to:16095131162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-20 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12627198547] [to:+18575764420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845220126] [to:+18563126062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193037715] [to:18199951712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040535] [to:15815781282] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169196] [to:18289258283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308801736] [to:+13479976578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222523] [to:17049746716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913166] [to:16474614052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262969] [to:17035932376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022788573] [to:+13025852807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046833761] [to:+17572969754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126999584] [to:+18127777164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789270520] [to:+14703336856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064517611] [to:+14694060490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502416697] [to:+18503293504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316450418] [to:+12313318175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215143883] [to:+19298413908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078918050] [to:+13477699572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16417802502] [to:+16418632236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324103038] [to:19562154554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069085] [to:12527750474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163942637] [to:+14406587594] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619957] [to:12054355061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298201] [to:12396451044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-21 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619957] [to:12054355061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971598] [to:12076716738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182538952] [to:+15189305207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177514] [to:12672762266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335046] [to:17064559987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306467057] [to:+14242846661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433780] [to:18324368160] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620874] [to:16153741171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620874] [to:16153741171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-20 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627702] [to:+447415799544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604360560] [to:+15612403402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574552] [to:17024908413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18106243915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028903915] [to:+19027062471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438874] [to:12154606910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006770] [to:1917025132928] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198462] [to:17329125614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403097373] [to:+13479130751] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848020237] [to:+19783619200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132214877] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057498302] [to:+12262416982] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046040900] [to:+16784348300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619031] [to:18166279442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817199] [to:12703669434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162686218] [to:+16474912573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882875] [to:13236749829] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696003777] [to:+19014445594] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475924] [to:+18107888119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025917022] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-20 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447881511744] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801710933341] [to:+14088725007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-20 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050201] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-20 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327997] [to:+447713740010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17084150995] [to:+17736690260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052906094] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706090258] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147778] [to:13617561291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003630201] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003630202] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196516716] [to:+16149228352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:19084336412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15055451551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130751] [to:14403097373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107714559] [to:+14023874028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182291137] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:17634431892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134471789] [to:+17012892980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:13066905965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093952] [to:13042831027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093952] [to:13042831027] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473466] [to:18658514674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018024596] [to:+19723389913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403200343] [to:+14406588693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015782472] [to:+19148812510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556044] [to:12562943629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142066000] [to:12034447765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704543826] [to:+16513337595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12298867477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-20 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003050202] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672408759] [to:+13473799158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882684] [to:15305527452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408199418] [to:+15406286516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14237772859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675956904] [to:+12679525697] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027047728] [to:+12026609447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14047860052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613467821] [to:+15614916740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604360560] [to:+15612403402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070670] [to:12605179085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13367444133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334722] [to:14783211713] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152808300] [to:+13479131234] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123749141] [to:+19172669388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:12038953440] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753356] [to:13523282921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250645] [to:14235842771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800677] [to:16319655369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132129557] [to:+13134247686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769089] [to:16065603965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095725] [to:15149946358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334539] [to:19892776223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:17634431892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412554896] [to:+15415393079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049608674] [to:+12048138469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079655925] [to:16513075260] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122702774] [to:+19142060942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:17575098255] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-21 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627310] [to:+447565324860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456005634] [to:+19177374978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162167106] [to:+17408796305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154815063] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262362197] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-20 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477721187] [to:+12264555781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896866174] [to:+12894600533] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304263435] [to:+14158536863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324869528] [to:+16109102786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240433] [to:19193399123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109954853] [to:+13024000609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727521281] [to:12762841219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459327] [to:15674549991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600983] [to:12897751866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-20 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622240] [to:+447437326073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077338] [to:14508032001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145045307] [to:+16466288490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042508932] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164023625] [to:+16477995384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927989] [to:14384961763] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940316] [to:14126052103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19182856416] [to:+13217308387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17802642053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313439036] [to:+16169524456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099813573] [to:+12092602156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489106] [to:18506022580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038554859] [to:+15713273942] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862573] [to:+19148812500] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506266774] [to:+19725344727] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018024596] [to:+19723389913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862603430] [to:+12484601194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045913246] [to:+14242866278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154658] [to:17802219910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705702811] [to:+12132954296] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16476671816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722774] [to:15409085931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542582486] [to:+19543143875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769707] [to:15802365022] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184053] [to:15169433152] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161893] [to:14074138037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109770627] [to:+17605898336] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+13478969637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19048992774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154746280] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193345656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603872129] [to:+16465648155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634477497] [to:+17279165543] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:15133099166] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12547092154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707060350] [to:+15703977303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018983] [to:13233146490] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-20 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328973] [to:+447772869080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749039878] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333801] [to:18194313155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104041337] [to:+14437202567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604622066] [to:+17185048842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18024171374] [to:+15102547364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:15863211287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-20 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886901] [to:+18459407190] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862243] [to:18329449192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015817] [to:17083592149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13309574324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533148732] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048133381] [to:12044302124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+13069929921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169348] [to:12072167992] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994987] [to:19088401260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034740] [to:15153138053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539244] [to:12283486832] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927471] [to:15146198006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308007411] [to:+17015872104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293278985] [to:+17185043408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153236052] [to:+13479376779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732210] [to:12677704646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015661842] [to:+15107799608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001530] [to:+14357764770] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017355529] [to:+18018903451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927471] [to:15146198006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18302208792] [to:+14323635514] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929302] [to:13063708066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098103749] [to:+14156498857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819853294] [to:+14158531035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144945048] [to:+13476908522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193590555] [to:12514012185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:17703293877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154804559] [to:+16157776521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082982166] [to:+17125255660] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197501012] [to:+19199164811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005183] [to:16478217241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12032122955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045209586] [to:+12105560648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046916682] [to:+18046246638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089668627] [to:16175719781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064075331] [to:+19142797123] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064075331] [to:+19142797123] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141419] [to:18196614266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538974] [to:12407796023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347552346] [to:+17274937161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15614201809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345402] [to:18439221153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-10 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-10 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-10 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182217177] [to:+16465478820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-10 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615544] [to:19735925022] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524456] [to:12313439036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033097] [to:17244668593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303015] [to:13304178559] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053060702] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476627358] [to:+13479800919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19544009003] [to:+19543142403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122008139] [to:19124638523] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069468664] [to:17202618706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752557] [to:12516041732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752557] [to:12516041732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516158] [to:19193086173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238857] [to:12245323296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772428] [to:14106931151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073006] [to:13208280141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690382] [to:13136292086] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163360] [to:19183126835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420791] [to:19014802776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870303] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994120] [to:19056502406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003870301] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162386585] [to:+17162791215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003870302] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403969088] [to:+14403594541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656359379] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253517] [to:15023216031] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225769] [to:13342213193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497425] [to:18062391554] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672762266] [to:+12673177514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-21 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163291260] [to:+19715126259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:16063625618] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109770627] [to:+17605898336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312660071] [to:+15068029609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105243578] [to:+19199166091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287556718] [to:+19802097413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502127779] [to:+13069939050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+16139097179] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037101572] [to:+19172720522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079528984] [to:+17277679170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036200853] [to:+15873151907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228308] [to:19189780798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027599702] [to:+19027003932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169977619] [to:+14053005179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625827940] [to:+19292201346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:12045140934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077057489] [to:+14072161056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-21 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189775233] [to:+15186155153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738852250] [to:+12677938476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142850736] [to:+16465139668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044879] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562154554] [to:+18324103038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057469763] [to:+12262406842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297950] [to:14233269919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837049] [to:12194339762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547293495] [to:+17542220566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526733390] [to:+13479478376] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397459172] [to:+17723618182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354704] [to:14843530644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15024077814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720788] [to:18432440116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972698] [to:17069361379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282165725] [to:+15103404686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669430] [to:18764279641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:15878775366] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030720] [to:16138165081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12486055238] [to:+12488347305] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388074937] [to:15146082020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042396251] [to:+19802097682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056259899] [to:+12485375572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538974] [to:12407796023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842352] [to:17323792687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106799606] [to:+16108804590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506266774] [to:+19725344727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420791] [to:19014802776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524404155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184053] [to:13479614288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135043305] [to:+13366452826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642934486] [to:+14155944883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037101572] [to:+19172720522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655461890] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338562] [to:+16475569828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309624125] [to:+13305779603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036576986] [to:+16034132320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075450116] [to:+14076333102] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162627425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531161] [to:15303072027] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17088564683] [to:+17089468587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702567804] [to:+19318968026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389373568] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063825123] [to:+14698740119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-20 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Voxox] [to:+447451237901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183789353] [to:+15817018878] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894241098] [to:+19895334432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973862] [to:18027348956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403966136] [to:+12162393174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150496921157] [to:+18326503102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514210501] [to:+14242836689] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037F0501] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086737601] [to:+14157614980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735925022] [to:+15178615544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165603377] [to:+15852822452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782519599] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097638177] [to:+17097005397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403981665] [to:+14437201644] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404062675] [to:+13212701207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316879020] [to:+16319802086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436800596] [to:+14108745740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149723062] [to:+17038841272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644925478] [to:+18649997418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105010204] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362903630] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505665234] [to:+12509006239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316208859] [to:+12312663177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419952] [to:18639567346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134064935] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047860052] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058279965] [to:+12132950112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619031] [to:18163980274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134787824] [to:14702221731] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136637123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084601] [to:16093049057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733808654] [to:+13203073824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-21 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349443016] [to:+13477965924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707710839] [to:+14703334936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522072097] [to:+17248032913] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405410707] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878668] [to:16464046811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163134589] [to:+15165977957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:12045140934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705160] [to:13473569489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:14788324088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17702920488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609447] [to:12027047728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491348] [to:16065153390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-21 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197139266] [to:+12404077691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502834717] [to:+15169267167] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-20 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012825068] [to:+13214067622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122783086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-21 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476912173] [to:19056303516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819853294] [to:+14158531035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14152868610] [to:+16193590873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862655] [to:+19177739701] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126564669] [to:+14158532272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942458] [to:17809346788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-21 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249858] [to:+447549280021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564608491] [to:+13479139320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853605813] [to:+13216137342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266726] [to:12019696325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398495013] [to:+13477697071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779841536935] [to:+15303623335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079682042] [to:+12139212479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042167185] [to:+18328042929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789138406] [to:+16784345716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431568] [to:+19715124907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597109] [to:19739511065] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102699162] [to:+14437203934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319572] [to:15615770433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:13062903155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178410042] [to:+16822139323] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732057907] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394230] [to:14806885801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214884] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336531] [to:16512027331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046980953] [to:+16474914830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174485973] [to:+18173634828] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360285] [to:16574656602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187621404] [to:+14697515839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937331] [to:17278514017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937331] [to:17278514017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-20 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447979697576] [to:+447418326556] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032E0202] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227064] [to:15738544581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123511849] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705170104] [to:+15817022664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-10 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690382] [to:13139780683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C00201] -Feb 1 11:49:02 ip-10-0-64-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144282224] [to:+13473898083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384947488] [to:+14387926701] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492084] [to:14129696759] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611430] [to:12696253052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056142] [to:19027712690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:17057940113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187754566] [to:+17182558022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546079974] [to:+15612318349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003F50201] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040571] [to:+19148608579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274477] [to:+14706735615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326606] [to:15803084720] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258194] [to:14802327418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608471] [to:16065210769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-21 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524245] [to:12393627779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805472826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777291] [to:12602241572] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777291] [to:12602241572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977385] [to:16573787959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284679601] [to:+17187479695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702928723] [to:+19046947937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878668] [to:16464046811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273267759] [to:+16463490186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-21 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447896964899] [to:+447451241261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021926] [to:19028184076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021926] [to:19028184076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037414913] [to:+15873289576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077338] [to:14508032001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413417] [to:18644355371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199854136] [to:+12405538685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038877] [to:12898285640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005949] [to:14145739417] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316208859] [to:+12312663177] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094776624] [to:+16095434564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250645] [to:14233039359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015688372] [to:+19014445676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322161672] [to:+17328842605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484046262] [to:+19735479657] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:12394101322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:17063294862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:15068718878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077314888] [to:+16466691091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767921] [to:14195758322] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305570446] [to:+14242837576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:16015203796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064559987] [to:+14703335046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003C00202] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064960775] [to:+17063959281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372401378] [to:+12138023830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476671816] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-20 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447866610888] [to:+447451232162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309574324] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632269] [to:18595139515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934355] [to:14503691609] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122529574] [to:+17736667383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192769152] [to:+16474989506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132846191] [to:+16137074290] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523670140] [to:+12138614092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787787255] [to:+19172595532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0201] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148044788] [to:+15146134241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F50202] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174346280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138639984] [to:+16139093291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-20 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240745] [to:+447949317709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127051] [to:18013315816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031F0202] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413417] [to:18644355371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001098] [to:12523018263] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278874] [to:15204772392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19545899656] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19545899656] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12816839911] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254397348] [to:+17279987859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067478504] [to:+12536423566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336613] [to:17706346437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15853091811] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095569243] [to:+17604746243] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055013976] [to:+18649997927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005397] [to:17097638177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18036729558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047623106] [to:+19046947152] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059021066] [to:+19172751767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084257771] [to:+19088992553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394230] [to:14806885801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159755311] [to:+16158076271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954258] [to:13343542517] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954258] [to:13343542517] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178618592] [to:16035455646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512954365] [to:+16503377068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327080] [to:19799856381] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692708568] [to:15022038496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597109] [to:19739511065] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293278985] [to:+17185043408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383047] [to:13369577163] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475693708] [to:+16465641954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176732923] [to:+17274937807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954258] [to:13343542517] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14404537617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232342] [to:17202855814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862554] [to:+19176635583] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:14802978652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:14802978652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036251822] [to:+12676076273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929302] [to:13062611259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019696325] [to:+12014266726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875758966] [to:+15873322625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19012323180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072311441] [to:+19282976670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299748] [to:14435614007] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146906719] [to:+17603145886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740358] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267920110] [to:+12262431584] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627283] [to:12163398012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065011580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:14125202212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079222138] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058525] [to:+13475808135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008713] [to:18704059507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108788705] [to:+15107756916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403402] [to:18604360560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-20 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473958] [to:12038204674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023324099] [to:+14804391904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057322677] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032803196] [to:+13477988438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827619] [to:19379473439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632269] [to:18595139515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15674549991] [to:+14197459327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596999037] [to:+12139218323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852186] [to:13026328551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745432] [to:18439100803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022564196] [to:13088505503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-20 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330300] [to:+447794144558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063708066] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129205595] [to:+19298418872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457682126] [to:+15186155185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12813360357] [to:+14243361376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15188986286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502323377] [to:15814906014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699088367] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593986127584] [to:+13478303802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893012827] [to:+14388097019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408097039] [to:+12062585914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135527360] [to:+16136042258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179792975] [to:+14242218293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742047545] [to:17812912368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284463057] [to:+17256660990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405410707] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550792] [to:14232715279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146230363] [to:+15817010071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391289] [to:19853130748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146230363] [to:+15817010071] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-21 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451245475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:14389945788] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106931151] [to:+19179772428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892362328] [to:+12898042358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-21 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048882222] [to:+14043900637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16144401703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733553895] [to:+16108804289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669430] [to:18764279641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532672410] [to:+12536423947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854441886] [to:+15852821499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387926701] [to:14384947488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047497273] [to:+16049019730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19702843189] [to:+19512990846] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035657964] [to:+13473798865] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482632] [to:16087122536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383515901] [to:+14387945210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155165632] [to:+19175805419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179549716] [to:+12138028090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159712942] [to:+15153031213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619031] [to:18163289706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15053575738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012885827] [to:+18133086540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387651628] [to:+14387953928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053213034] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046410553] [to:+17089468710] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367306468] [to:+19365493853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:12818962598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783211713] [to:+14703334722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812200] [to:593994900839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078918050] [to:+13477699572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735633703] [to:+19735479867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:13134128693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:18643634915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024391700] [to:+12133550449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154327143] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138165081] [to:+18193030720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018700] [to:19029211211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692708568] [to:15022038496] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975755] [to:15614148514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038708] [to:17862178747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460885] [to:15136173814] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595072] [to:19733328397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402097453] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524401544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693298159] [to:+12692244394] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524684382] [to:+18583606616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409085931] [to:+15109722774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993425] [to:19549938906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916835] [to:17094647146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-20 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627310] [to:+447565324860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154815063] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899773] [to:18605083196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474566260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102419252] [to:+13216137438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12156263128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17053060702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805472822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088315] [to:17316124875] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125800] [to:12253620448] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16062101311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663177] [to:12316208859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507795] [to:18286394631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:19372451709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475501848] [to:+13437001972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069361379] [to:+13477972698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143714] [to:13053030702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262182100] [to:+12267792913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801746] [to:17706661977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041863] [to:17406480005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491879] [to:12292918414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193086173] [to:+19196516158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153570613] [to:+15635497664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667388] [to:12154799754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237637] [to:17865323458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265893] [to:14239434482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265893] [to:14239434482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15086856006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653910606] [to:+13475076313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572665723] [to:+19783231581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477946277] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474065813] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166621179] [to:+15169082878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677701962] [to:+12672473712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778534] [to:16266625762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809028291] [to:+15874005519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328533] [to:15405144720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074540615] [to:+14076333398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672278429] [to:+13477417192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784306] [to:18039846193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16673083425] [to:14439794303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179549716] [to:+12138028090] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036072] [to:13233804942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16618749596] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064025099] [to:+12138614387] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702503921] [to:+15612937865] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14258799791] [to:+14258805587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:13053185393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275036839] [to:+16475568671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-21 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447977665991] [to:+447520674824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199171506] [to:+12264570158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056502406] [to:+16477994120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13314223575] [to:+16784123319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857829] [to:14434046388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186373696] [to:+19176366554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407796023] [to:+12405538974] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694147431] [to:18177068314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692028216] [to:14697342378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405716006] [to:+14406588688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344773817] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19797392051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244668593] [to:+17248033097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803747904] [to:+14692053186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-21 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672545] [to:+447552695136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523894] [to:12108496619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069361379] [to:+13477972698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15017331126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364782] [to:+18638552714] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702928723] [to:+19046947937] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:18193287836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-21 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015661842] [to:+15107799608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944883] [to:18642934486] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391289] [to:12677520160] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644193238] [to:+19543143205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076095] [to:16159873155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402286834] [to:+15672067616] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086314601] [to:+13126142054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782469081] [to:+13025851874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19417132944] [to:+13603138930] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14092414512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315081201] [to:+15874097402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049141324] [to:+12048133341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971598] [to:12076716738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423068] [to:12533700051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106931151] [to:+19179772428] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085955] [to:15149157671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124451] [to:16789936001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177508757] [to:+15178615077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215953] [to:19162916839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:13097214214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745441] [to:15743987440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185884345] [to:+13479788009] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993936] [to:+14703336564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162021961] [to:+16139099588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312419607] [to:+19312577530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492084] [to:14126366314] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286787] [to:12603373960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898178966] [to:+16784333738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848005038] [to:+12677939197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122125395] [to:+14243361704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632050858] [to:+18638556295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995804] [to:18646170891] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659130] [to:18184214712] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044536808] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703216242] [to:+14153161945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898336] [to:19109770627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:15187765349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514012185] [to:+16193590555] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690373] [to:12482757442] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136857397] [to:+16096144579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148885291] [to:+12243870755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659130] [to:18184214712] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-20 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605185] [to:+447792023874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003010201] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14258799791] [to:+14258805587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400809] [to:18504055550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219454] [to:15738206239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012796] [to:18453377623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266726] [to:12019696325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010202] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035942610] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507795] [to:18286394631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14437591538] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562984060] [to:+14242835314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710367] [to:12025903474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527330] [to:15174556825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176020462] [to:+12135593360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867959387] [to:+15103405091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816401] [to:15026672703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138165081] [to:+18193030720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:12899315176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16079725689] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:7:0608045CA60201] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576472297] [to:+14845772851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067483848] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633279192] [to:+18637347520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648320] [to:12038183618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16079725689] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:0608045CA60202] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176693996] [to:+18638553325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708141675] [to:+19148208065] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148870068] [to:+15146134260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453887] [to:14109138235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412431366] [to:15087285967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364976] [to:+14706731996] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136637123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014123186] [to:+13015699289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:12146946900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047497273] [to:+16049019730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12293195930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404177] [to:14165568539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132063] [to:15145771704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003910202] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003910201] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19548681033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405410707] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182217177] [to:+16465478820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012914] [to:16464965192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920718] [to:15174025677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062654] [to:19028808650] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14199755449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19094777335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013005417] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296413] [to:15043513133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578057337] [to:+13475086308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16148965015] [to:14192103248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142430608] [to:+16464751304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052098274] [to:+13475086420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086139994] [to:+18314288263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086100] [to:17866594359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15093182063] [to:19174102130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146230363] [to:+15817010071] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720858] [to:18039741336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104475041] [to:15597990075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213171797] [to:+13217309541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261366] [to:50379081734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819643490] [to:+12134785626] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13067154344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699572] [to:12078918050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143597588] [to:+19149220482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124907] [to:12489431568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392828] [to:16077319856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016492665] [to:+14018677442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593924378] [to:+13123008825] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355225] [to:12602436021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543543462] [to:19543802897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988246] [to:16463996400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238638962] [to:+14237777975] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345236] [to:17735070408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434500944] [to:+13476674516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198172328] [to:+12262436938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579210174] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:13138188453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609728859] [to:+13609494828] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937161] [to:17347552346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149689612] [to:+14387940957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064853] [to:13307083774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-20 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-21 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236450] [to:+447523427605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141731] [to:18192663240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528421] [to:14406547071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784948650] [to:+12694308351] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027348956] [to:+13477973862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508493935] [to:+18503293544] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805471328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193399123] [to:+19193240433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622513268] [to:+13025830152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995853] [to:19518786247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-20 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048090176] [to:12046985184] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13523250658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745030013] [to:+12134017524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997027] [to:13218059930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617032436] [to:+14049004511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004636] [to:19198429608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505214315] [to:+14388097466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561038] [to:17194696990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578057337] [to:+13475086308] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145412125] [to:+13477868245] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274936164] [to:18169295701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054571773] [to:+17607014922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:13234450901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502416697] [to:+18503293504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:14254349781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204355827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076273] [to:17036251822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204355827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001722] [to:16474065813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482632] [to:16082285367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252628680] [to:+18326502532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175803706] [to:+18328044011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040110] [to:14104302167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072847] [to:17246995090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957694] [to:14439078439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349359] [to:12095425245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957694] [to:14439078439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308761] [to:19102340703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104499339] [to:+14436813182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306176050] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654144859] [to:+13477869967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702696110] [to:+15703973326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363025913] [to:+14695321842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137285802] [to:+12485375315] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372813] [to:19178890484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043078615] [to:+19785334082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384947488] [to:+14387926701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:17135600885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562391199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868452] [to:13018617182] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528839924] [to:+14157876723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517519615] [to:+19715121441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988246] [to:16463996400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067163671] [to:+16397394808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163902405] [to:+12132956355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579556675] [to:+16822314426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052794128] [to:+17053028751] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657716] [to:12063359070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147109099] [to:+14388040878] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725861] [to:18105132743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165443460] [to:16314168098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15053997565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783261023] [to:+16784123578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436021] [to:+12606355225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139180589] [to:+15133860435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491450] [to:15594808680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-20 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581395] [to:19042088225] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123988129] [to:+12138739798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048098341] [to:12042508932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768065] [to:15024871237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163942637] [to:+14406587594] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167851250] [to:+17866079713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16673083165] [to:17173951387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:15873362247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16073484814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14432510049] [to:17708759035] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077999352] [to:+15102548965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064716919] [to:+14697516054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069703] [to:13098258350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-20 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-21 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185884345] [to:+13479788009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802327418] [to:+14158258194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-21 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236450] [to:+447757355305] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-20 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312154569] [to:+12317455246] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218302] [to:18108359007] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003510201] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789928] [to:12073576398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174432575] [to:+13176881201] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713636633] [to:+12267794780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950498] [to:13179829607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334722] [to:14783211713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003510202] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266096] [to:16206151716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149724698] [to:+18133081384] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997082] [to:16059299294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030720] [to:16138165081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-21 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269229] [to:18432897979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12156263128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:14436682114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036729558] [to:+14027694389] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391289] [to:13023872770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478887] [to:14015164334] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837049] [to:12194339762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796168] [to:16057438810] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853313240] [to:+15852821630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363025913] [to:+14695321842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760580] [to:13345969615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524401544] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921512] [to:15146602015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786522287] [to:+15087884004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836396] [to:17578708800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19797392051] [to:+18328042753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959281] [to:17064960775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026149266] [to:+13478968426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17785511882] [to:+16475039329] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148124913] [to:+12628886597] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305813308] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374665134] [to:+15108538422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14235048695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155565545] [to:+13474340238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:19103090074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304403343] [to:+15308631910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617040359] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192188] [to:15145150446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973756] [to:13156638412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698740119] [to:18063825123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075682] [to:16152023148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535066] [to:17736330587] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872104] [to:13308007411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806885801] [to:+14804394230] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107339219] [to:+19298418867] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:12018939420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044085046] [to:+16785861066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393843283] [to:+13866016527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322999346] [to:+12627774507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138668873] [to:+18194140368] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269229] [to:18432897979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988580] [to:14696442714] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18632070960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18632070960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294121612] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690682] [to:17734410896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533700051] [to:+12536423068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192012086] [to:+12138062163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026697106] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036072] [to:13233804942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-20 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165701146] [to:+16474955216] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15032690424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15054854923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334560] [to:16614663590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732803979] [to:+18623082122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706814350] [to:+19172659267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065603965] [to:+14242769089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423361] [to:13605909686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128013676] [to:+17248032142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853811797] [to:+19783231988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169267695] [to:18142345251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12189663724] [to:+12183311094] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348267] [to:12708051794] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:13018048198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911046] [to:12892378715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088276351] [to:+15084168958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405745834] [to:+16167948280] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269081] [to:18109556718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065371886] [to:+16784968802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031653] [to:19027542344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821506] [to:15856663777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007472] [to:15143589693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089791] [to:18136440035] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387926701] [to:14384947488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168323112] [to:+17279985674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024784667] [to:+15874054442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19182856416] [to:+13217308387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093182] [to:16133141720] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054274547] [to:+18673222144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143597588] [to:+19149220482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156804487] [to:+17206231879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13174558696] [to:13173325990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659355855] [to:+12312663155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106931151] [to:+19179772428] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955627] [to:19053302134] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173818636] [to:+13479376158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057498302] [to:+12262416982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235050342] [to:+12485375421] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096495645] [to:+17097015734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404062675] [to:+13212701207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023786850] [to:+12405587756] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052337345] [to:+16467691337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163291260] [to:+19715126259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138639984] [to:+16139093291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165603377] [to:+15852822452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122125395] [to:+14243361704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019701926] [to:+19142793043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854473011] [to:+15852822998] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026328551] [to:+13025852186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477812697] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047653123] [to:+16049019478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042671852] [to:+13216137656] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049616814] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149180276] [to:16142165340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186373696] [to:+19176366554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079682042] [to:+12139212479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169357] [to:13215362805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050779] [to:18063824100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925814] [to:15146165355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045159802] [to:+12048138453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015384430] [to:+16465473748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040288] [to:+19177374842] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065371886] [to:+16784968802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:13234450901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169362261] [to:+17162792302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800625] [to:12037272863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693135905] [to:+12694611268] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E70201] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E70202] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165443460] [to:16314168098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-20 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-21 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447428156536] [to:+447418325112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062611259] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063322378] [to:+14702481281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643096625] [to:+16465479842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238718472] [to:+14158536166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243442] [to:18044411769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243442] [to:18044411769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253174327] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12139440733] [to:+19173965132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073104059] [to:+19292689685] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322411942] [to:+16095434819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946793] [to:13343333695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542273524] [to:+13479978448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946793] [to:13343333695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063870] [to:13862793926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816011211] [to:+12133756030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192188] [to:15145150446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996400] [to:+19148988246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:18195800322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-20 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022711741] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:18568993174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042396251] [to:+19802097682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302187] [to:18137014815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009175] [to:12532247702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286787] [to:15406799490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227215] [to:17069368951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697448054] [to:+14695327942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405410707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167851250] [to:+17866079713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862178747] [to:+13052038708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044588] [to:13259772225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690682] [to:17734410896] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029893708] [to:+19027062829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977303] [to:15707060350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14389373568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029893708] [to:+19027062829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834452] [to:18044414346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466465] [to:19734942257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459112] [to:14193413202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076366895] [to:+13476762986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659355855] [to:+12312663155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18704059507] [to:+16574008713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477039973] [to:+16475039618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317985734] [to:+12313778044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056531] [to:19028171456] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693135905] [to:+12694611268] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703094844] [to:+13477989617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068178103] [to:+17063959673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622353193] [to:+19735479026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897497] [to:18125896512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139617] [to:18164197261] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139617] [to:18164197261] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479695] [to:18284679601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052421579] [to:+17722425749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347990] [to:19418751885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:19416238918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627451] [to:18455494661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459719] [to:14195150049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023962358] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053738010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412735] [to:17573763041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000628] [to:17092934494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778122] [to:19177837697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697085791] [to:+16139126082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023993500] [to:+12027179714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898329] [to:12566891110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796170] [to:18122098039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003490201] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-20 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833254984] [to:+447451231406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-20 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008884] [to:18635292655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008884] [to:18635292655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012796] [to:19045012037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003490202] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16602235089] [to:+17204637234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842281] [to:15704909490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862580] [to:12708508473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753356] [to:13523282921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805473255] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:14133863407] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308922] [to:13215571300] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508466969] [to:+14387924531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-20 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005397] [to:17097638177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297455] [to:14232739356] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713636633] [to:+12267794780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996400] [to:+19148988246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899710511] [to:+19894557043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041460] [to:+16042652696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416615583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474872] [to:15204832566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:18126102907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618919947] [to:+19292689406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003470201] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048015396] [to:+17344365403] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624175763] [to:+13234834225] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299390443] [to:+12136163363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023324099] [to:+19282974676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049746716] [to:+15103222523] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389945788] [to:+14506390028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606286222] [to:+14422207633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172745868] [to:+18729997931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036555305] [to:+17078974230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706346437] [to:+14703336613] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384947488] [to:+14387926701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706661977] [to:+13479801746] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125270] [to:18103471904] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022711741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12537405943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618919947] [to:+19292689406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003470202] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-21 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028645661] [to:+13024991657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-21 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447771591716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708203696] [to:+14695324059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024401399] [to:+19027043459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007833] [to:15147970515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136958698] [to:+18168007383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417870329] [to:+19712611037] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695072946] [to:+19177370588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12816839911] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-21 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447743466006] [to:+447418336001] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822998] [to:15854473011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12609092132] [to:+12604077012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481131] [to:15055449502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730238] [to:17067414811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988246] [to:16463996400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285060640] [to:+16506467059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355225] [to:12602436021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183445] [to:16267666431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179775650] [to:+19148250777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068711516] [to:+15068029730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524122533] [to:+14242846871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836868] [to:5515998409494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103090074] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545982654] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786709756] [to:+12134547517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-20 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447837014346] [to:+447418331650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264553116] [to:16479686841] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175517] [to:18286781304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999116] [to:19374020853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999116] [to:19374020853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242462] [to:18043197644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242462] [to:18043197644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064499554] [to:+15068039667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-21 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415799544] [to:+447520627702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017104] [to:17406375060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122481157] [to:+17089468235] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159755311] [to:+16158076271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003689] [to:14052028682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059239669] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503012] [to:18087833869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:15875012086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777237] [to:12673287479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043958530] [to:+17702005460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532272] [to:15126564669] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513377109] [to:18657484745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15056104737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-20 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033797446] [to:+13477962771] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033359] [to:16624189569] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508004100] [to:+16042594690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785429314] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619361] [to:12039222621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023827620] [to:+14437201739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606981538] [to:+12138612890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048006268] [to:+12135297949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732803979] [to:+18623082122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779841536935] [to:+15303623335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18036729558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842281] [to:15704909490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-21 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209445] [to:+447929125077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260320] [to:19548162563] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373310] [to:18595538375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15595002848] [to:15596728669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343038060] [to:+13479196851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056502406] [to:+16477994120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472814102] [to:+12262410259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048805031] [to:+18134302316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185787976] [to:+13476191415] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403969088] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813417230] [to:+15103227837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366514] [to:16318969259] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196625] [to:13474470438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069703] [to:13098258350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632296808] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708770580] [to:+13476303090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-21 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451245475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175384837] [to:+17813129323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047171966] [to:+12138733520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-20 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868452] [to:13018617182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193413202] [to:+14197459112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874107948] [to:15879264039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098739] [to:+13069938727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797709792] [to:+18312919018] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13253156712] [to:+14698740327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338560] [to:+16474952306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157962265] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16133153236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393372] [to:18109319718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302172841] [to:+16172139061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247534] [to:12487473376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-21 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333947] [to:+447919970510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474020406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032945] [to:17247973191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107595206] [to:+19108888186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371708] [to:12253855496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035657964] [to:+13473798865] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003200401] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016764] [to:12527026395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123988129] [to:+12138739798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003200403] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12195082236] [to:+12139217872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108496619] [to:+15129523894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314168098] [to:+15165443460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003200402] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436021] [to:+12606355225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911764] [to:16134064935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312213] [to:12186836369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003200404] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054308881] [to:+16054997319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242140370] [to:16308158383] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138241044] [to:+14137289509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896968412] [to:+15103135693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149180276] [to:16142165340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981800] [to:13524339761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130616] [to:12544583820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265319] [to:17069518326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130616] [to:12544583820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13522553410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260320] [to:19548162563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138241044] [to:+14137289509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409601088] [to:+17027476275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025060785] [to:+17723601650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222523] [to:17049746716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+18077882894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288942] [to:100393889264540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152301148] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973862] [to:18027348956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864871942] [to:+13055017808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:15123939610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146082020] [to:+14388074937] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-20 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407830] [to:19189016631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197223799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381682] [to:13362578344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203784] [to:14434046400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043410865] [to:17066646251] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043410865] [to:17066646251] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192103248] [to:+16148965015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16134629814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024700714] [to:+19802097704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193035834] [to:+15817041369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144523013] [to:+14388078048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476382809] [to:+19174094868] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405412623] [to:+17408796954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329462] [to:19172161003] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-21 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805474620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976010] [to:17577444759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808598186] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-21 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447432618144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179595933] [to:+18572190742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746220] [to:15092400960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065353238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222332] [to:19107513769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240575] [to:19195279700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263384221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:15802165311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709019939] [to:+13032192497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124300595] [to:+15204875086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667502] [to:12154690483] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164708134] [to:+12169295621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175005974] [to:+19172593723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455985761] [to:+13219998237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334468] [to:17708264118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-10 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652716196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:14044385533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-10 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036362792] [to:18035287253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162627375] [to:+15852823244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145479183] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074884] [to:18283010833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603508510] [to:+13122754316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047647283] [to:+12132958569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165864129] [to:+14159889296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001644] [to:14168169467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19545982654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524391] [to:16169157669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128964784] [to:+13475804792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147954868] [to:+13148998380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474065813] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183445] [to:13238476299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17066993032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162784734] [to:+12162396181] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746220] [to:15092400960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497888] [to:19704050210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063359070] [to:+12532657716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066525] [to:18648845299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732715847] [to:+19738146391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054854923] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007472] [to:15143589693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072408] [to:15148246324] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072408] [to:15148246324] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378641] [to:19126770823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594808680] [to:+14156491450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133141720] [to:+16139093182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-21 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641969] [to:+14387925967] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036729558] [to:+14027694389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:12898133161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428904] [to:13864383388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-21 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275036839] [to:+16475568671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136958698] [to:+18168007383] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023898974] [to:+18127777341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076003943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407513485] [to:+13073702735] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092934494] [to:+17097000628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816839911] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049790485] [to:+14049001033] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345280] [to:18035969278] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159082062] [to:+12674773825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19047623106] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-20 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418327] [to:15199171462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242265] [to:17577196066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232331] [to:15596527243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852054912] [to:+19142793432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038E0202] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175415703] [to:+19177954150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072167992] [to:+19782169348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092934494] [to:+17097000628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336094] [to:13126787430] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789754] [to:15134290096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187526877] [to:+16079687320] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749278] [to:19802513928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863008715] [to:+17864803821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156928137] [to:+12139927043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:13152893293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548592] [to:16174138533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195677285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-21 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520675264] [to:+447824399010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217872] [to:12195082236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631910] [to:15304403343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202548038] [to:+17205028352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070670] [to:12605179085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306317245] [to:+12138025369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164410456] [to:+14049004206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024100570] [to:+19028019485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315958] [to:18505301157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123749853] [to:+12139219409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-21 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036023997] [to:13213168166] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866622647] [to:+15865746729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-21 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447599835354] [to:+447418329641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136686216] [to:+12139219267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737315] [to:14108317888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514012185] [to:+16193590555] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483574] [to:12628086250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15668000913] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411045] [to:12267571033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054964308] [to:+17604746014] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137287672] [to:+15865746755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023445421] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495519] [to:16783605893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173125612] [to:+19172720112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195924291] [to:+19199161071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136895] [to:16625781666] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263479565] [to:+15873152026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477037596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973326] [to:15702696110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195513930] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-21 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364052] [to:+19789697371] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626683669] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:13609499679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:18063329479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156538761] [to:+16576668089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517099565] [to:+14088725733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594021] [to:14802596081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404317279] [to:+13477148678] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409085931] [to:+15109722774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005718] [to:19125413667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402236007] [to:+17816138627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:13152893293] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016872201] [to:+19177730005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043618155] [to:+17063501148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302351677] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14157560639] [to:+16156147607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375421] [to:14235050342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756847] [to:12705798061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169841295] [to:+16476937057] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676879491] [to:+15863153153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220981] [to:19152179465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145546656] [to:+16149228657] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-20 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451243885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373496370] [to:+16474912554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032405470] [to:+19523885066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796999028] [to:+12485375991] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142548253] [to:+14123464751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061506] [to:18703123515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805472579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420791] [to:19014802776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783340737] [to:+19177730162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063687] [to:18593961382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:15735544981] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635295264] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195377252] [to:+17074031157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:16362903630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476382809] [to:+19174094868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062732] [to:17734250856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012391] [to:14189570204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260017] [to:13472631963] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:15732057907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627523] [to:16465807001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092352351] [to:+17097005451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568461] [to:14163033229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594021] [to:14802596081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688777] [to:14043439002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853410701] [to:+16513184185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228694] [to:18178003234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254487516] [to:+12135874835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069368951] [to:+12138227215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076003943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200590] [to:17242066788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784998300] [to:+13477989267] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15595002848] [to:15596728669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866178] [to:18645530083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772428] [to:14106931151] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065549688] [to:+13609727488] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068178103] [to:+17063959673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053302134] [to:+16474955627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080403120201] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863081529] [to:+13312086100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474053785] [to:+15703974139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069720] [to:13094336018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189780798] [to:+12138228308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702031963] [to:+17702004930] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497445] [to:13478618189] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080403120202] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-21 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447718647275] [to:+447451237769] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15016502311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032098571] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069518326] [to:+13219265319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190948] [to:15742395005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516158] [to:19193086173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704948974] [to:+14044811732] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575945440] [to:+19172668408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092352351] [to:+17097005451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048255123] [to:+17702005718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038477646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038477646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875964582] [to:+15874087651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168568] [to:18434852442] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317964581] [to:+15167349578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:12109544725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122729815] [to:+14706735126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337335] [to:12602249673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044411769] [to:+18046243442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239722461] [to:+13477691042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478869284] [to:+16466878621] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364713] [to:+17633015175] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132206950] [to:+18133088610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042970210] [to:+12064008674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13139578555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488484] [to:13098258678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488909] [to:13146884143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528070761] [to:+13867425086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797563] [to:16097092146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283833296] [to:+19286605088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472428275] [to:+16474963857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799148442] [to:14383924046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-21 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447592461111] [to:+447418322688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312134313] [to:+19318968590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857470199] [to:+15852824258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140017] [to:18195883014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952261] [to:19105787590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825713] [to:19545440055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743280806] [to:+17749921410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052408752] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688777] [to:17706090258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304669261] [to:+13309358113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764214] [to:12485062878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067994572] [to:+16026384151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12157962265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977540] [to:15709834861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198023468] [to:+12262416449] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124804716] [to:+18127816388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:13152893293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234267751] [to:+12138023270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734627799] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066646251] [to:+14043410865] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410980] [to:19077073800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849097] [to:14232486802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849097] [to:14232486802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228694] [to:18178003234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163213] [to:13365410455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397281677] [to:+16514105350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15053068507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896008617] [to:+13473437810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:19176363627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143505483] [to:+17142153047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328595137] [to:+17133099109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990875] [to:16147729541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103558917] [to:+18107725253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15734021980] [to:+15733623169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:15302903224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:17195699583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673779741] [to:+19172836143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946367] [to:18128019841] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16786681429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435427001] [to:+14437204300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12536524936] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17608671420] [to:17606416167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623911542] [to:+12626481244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:17868775200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058196170] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705709212] [to:+12135874508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-21 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418339931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898083] [to:18144282224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505411988] [to:+14388042548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-20 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418339931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135356668] [to:+19177328276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738167170] [to:+19085160087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344972673] [to:+13479803977] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238380520] [to:+12136036940] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318175] [to:12316450418] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556877] [to:18638337288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148181] [to:+12692207453] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102242909] [to:+19108888157] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375273877] [to:+14402526889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860052] [to:14238360003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169864907] [to:+16474910936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168568] [to:18434852442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12013005417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916344] [to:17249192737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738167170] [to:+19085160087] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568560] [to:19122829280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036362792] [to:18037247725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:18635898314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347395] [to:17864398021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102164] [to:16132617852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-21 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738167170] [to:+19085160087] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022451276] [to:+17123825849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-20 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012391] [to:14189570204] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621969] [to:15129834491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762291401] [to:+19177374522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907499] [to:12076598572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021890] [to:16477812697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688777] [to:17706090258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:17868775200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067414811] [to:+14706730238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218302] [to:18108359007] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14193676871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:15146380455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652191] [to:16043025027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865676677] [to:+18107725866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195244758] [to:+19199161653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157907] [to:14035972652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482309359] [to:+19738462071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105132743] [to:+18107725861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+16042653354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396451044] [to:+12139298201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12816839911] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805473289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479800900] [to:17148097574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072899187] [to:+15089668780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431568] [to:+19715124907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013294] [to:12315703005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896217399] [to:+19894550750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700696] [to:17049605084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517568749] [to:+14243360886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156308976] [to:+19148812959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578708800] [to:+19172836396] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206803] [to:+14353391472] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:16315253422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132956355] [to:13163902405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203784] [to:14439755719] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145189201] [to:+13147635257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139146575] [to:+16136048893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:15097807532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-20 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16082890488] [to:+12628884166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146165355] [to:+14387925814] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039445262] [to:+13032198139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893061074] [to:+19895334903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041287] [to:15028215263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108508639] [to:+12105560939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063687] [to:18593961382] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282913606] [to:+19175804891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17037750947] [to:18327698427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808685046] [to:+15874093532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725861] [to:18105132690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079655925] [to:16513075260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315923] [to:15862022122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054156396] [to:+15054446607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194127472] [to:+15817009047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262362197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:14193594394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328041751] [to:12818891519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:14087848721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242066788] [to:+17243200590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739083939] [to:+18629551950] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605083196] [to:+13473899773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:16473621227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036362792] [to:18037247725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336227] [to:14072236394] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335170] [to:17064367742] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729402412] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15087285967] [to:+16412431366] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167238819] [to:15165909331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679829985] [to:+12676860698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023044133] [to:+19027042916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18577538216] [to:+14014680075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696442714] [to:+18173988580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053024] [to:15857486292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403969088] [to:+14403594541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:18156713542] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511076] [to:+19027058406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183886] [to:14083378287] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524401544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015063192] [to:+12132950915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244394] [to:12693298159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127051] [to:18013315816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198689822] [to:+12264555343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258194] [to:14802327418] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577879] [to:19312445375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12678647323] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825016] [to:15856890672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022422550] [to:+13025958350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899750827] [to:+16474952345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12403981665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:14193594394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057670491] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034775841] [to:+16465473159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199171506] [to:+12264570158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164811] [to:19197501012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577879] [to:19312445375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475456858] [to:+13024395388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072715570] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746334634] [to:+16465136984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388638503] [to:+15147004181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404745] [to:13183155929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086664] [to:14436940505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164708134] [to:+12169295621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706090258] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557891] [to:16122393708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193814052] [to:+17027181093] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188471439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502519544] [to:+17866515792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166913020] [to:+12312663233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308121448] [to:+13308503770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037316668] [to:+18572327502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:13198444550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061506] [to:13182454586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396451044] [to:+12139298201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038313012] [to:+13478683140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292534182] [to:+16465478518] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005545] [to:19122431783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:17069105146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444603] [to:14126809382] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:14694351876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476666411] [to:+12017658838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663256] [to:19788943778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389373568] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653366629] [to:+13478993284] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663256] [to:19788943778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148880520] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709871579] [to:+13366452635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024171154] [to:+13025850760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406480005] [to:+14062041863] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017074574] [to:+19172659182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635955208] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477039973] [to:+16475039618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026714248] [to:+19177730570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023962341] [to:+13025958971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038E0201] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168565542] [to:+13479978984] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925967] [to:14387641969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198173777] [to:+18193035103] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329962305] [to:+15163625194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248585738] [to:+12679232288] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818419749] [to:+19492981440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12813092881] [to:+12138063733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306317245] [to:+12138025369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138082107] [to:+14402526780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034220680] [to:+17248035565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702288066] [to:+13478961360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157270534] [to:+13477981686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185884345] [to:+13479788009] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243499485] [to:+15209996955] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478231867] [to:+16474950652] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174981791] [to:+17185048826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149351342] [to:+12174889157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:15303531067] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904245] [to:12035109984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697071] [to:12398495013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593988275] [to:+17786533232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157296] [to:13309377271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652191] [to:16043025027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863078766] [to:+13866283590] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173531778] [to:+13479068790] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126052103] [to:+14126940316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797514] [to:17409632692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815611] [to:19178802674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-20 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674824] [to:+447977665991] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19145890311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016872201] [to:+19177730005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863078766] [to:+13866283590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:19734627799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209121326] [to:+17027476644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059101916] [to:12493597006] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937637] [to:19057452411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137285802] [to:+12485375315] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163424384] [to:+17162790890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455378] [to:17029362430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149296718] [to:+18192011537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024017344] [to:+12497001686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14198066824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332499] [to:19175419133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003230201] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735925022] [to:+15178615544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131091] [to:18325375883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525735425] [to:+17279986799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643089711] [to:+18649995392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475456858] [to:+13024395388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003230202] -Feb 1 11:50:58 ip-10-0-64-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413508155] [to:+19718886470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027047728] [to:+12026609447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15032690424] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899750827] [to:+16474952345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255329] [to:17123261714] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324103038] [to:19562154554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027003788] [to:19025793898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-20 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B00501] -Feb 1 11:50:59 ip-10-0-64-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-10 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-10 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-10 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-10 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-10 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-20 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-21 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227215] [to:17069368951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108095698] [to:+12674862816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568461] [to:16476872120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476666411] [to:+12017658838] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308832974] [to:+14402528569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147729541] [to:+12167990875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065353238] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-21 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447502732995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232818] [to:13174413436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063336782] [to:+12136349861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123988129] [to:+12138739798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088543] [to:15203385110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065692] [to:18137651761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450974] [to:15023863279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19057836587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609878] [to:12403551050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054203120] [to:17742722019] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213109] [to:14055410342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198651810] [to:+17607909089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16043436571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663155] [to:18659355855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691337] [to:12052337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011523] [to:15147754709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813504] [to:16104137050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398714] [to:14437903577] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398519696] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703000482] [to:+19175805168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161817] [to:19193403885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059191249] [to:+17053026236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056259899] [to:+12485375572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398519696] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195983755] [to:+18193075983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295808] [to:13046950934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921432] [to:18193142399] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17406180377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17406180377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945342] [to:14384984686] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063687] [to:18593961382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:16175996264] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782469081] [to:+13025851874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998209] [to:14507509545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184102486] [to:+12184163616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921432] [to:18193142399] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805473228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184102486] [to:+12184163616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479649122] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063892498] [to:+15068018672] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-20 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:FreeMsg] [to:+447520621641] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005854] [to:14037154101] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-21 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134535846] [to:+18572402049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045913246] [to:+14242866278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795788] [to:17578121904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:18327680364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566527066] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097092146] [to:+14242797563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184102486] [to:+12184163616] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306638098] [to:+13309358238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875964582] [to:+15874087651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800625] [to:12037272863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195048936] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329920685] [to:+18328044291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528543] [to:15132922729] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040490] [to:+13479806709] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:15097318556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476191415] [to:15185787976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045366433] [to:+16503008359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082047] [to:18135147443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198276823] [to:+19199166501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137783] [to:17578373158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921410] [to:17743280806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585194] [to:13046277378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:16462559604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137179] [to:12048693506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308158383] [to:+12242140370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478149] [to:15034373897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577196066] [to:+18046242265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694270171] [to:+19725348017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-20 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-20 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B00502] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022460491] [to:+17344365368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746755] [to:13137287672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077795] [to:12406260828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245100727] [to:+19199163549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15734187124] [to:+12136036726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072680909] [to:14797390418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039580] [to:15064694207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001972] [to:16475501848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044640515] [to:+13479788769] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284467337] [to:+12136300374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044887751] [to:+14049004131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-21 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447879287611] [to:+447451212614] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188819851] [to:+15186155639] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288178227] [to:+18285486367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016762356] [to:+19142817045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133432628] [to:+19783231790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16505497238] [to:+15087884059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-20 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751278097] [to:+447418336927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656025056] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524545096] [to:+16513337048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086664] [to:14436940505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058871773] [to:+12138024647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169157669] [to:+16169524391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039548341] [to:+19786919063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816839911] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720795] [to:18438268323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154621541] [to:+16157776304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:16023970270] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16627750133] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246995090] [to:+19193072847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157296] [to:13309377271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146924709] [to:+14388079688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14378000547] [to:+17059998113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397281677] [to:+16514105350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259473946] [to:+15154438605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621900] [to:17865368408] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188785364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125202212] [to:+13133494385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293328] [to:18502911817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477039973] [to:+16475039618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166913020] [to:+12312663233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12092519182] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-20 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241071] [to:+447736670697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177308001] [to:+18722251065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450614] [to:+13108792211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812430301] [to:+17816548758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864871942] [to:+13055017808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068225012] [to:+12065195896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481416] [to:17249686501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206151716] [to:+17194266096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038518547] [to:+13475184673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004009] [to:14039260338] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19145522462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15036196136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163213] [to:19194360897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194395708] [to:+13032198039] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-21 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324660] [to:+447881781019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892608778] [to:+12894600950] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223583] [to:13154890500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-20 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B00503] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965132] [to:12139440733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522103124] [to:+13867428657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173488088] [to:+15172586952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772696] [to:18329517266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204802] [to:+13134688647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317985734] [to:+12313778044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864330312] [to:+13866018220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319251] [to:+15852825057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568461] [to:16476872120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693314265] [to:+15169260635] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147957710] [to:+19175809117] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693298159] [to:+12692244394] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-20 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017204912] [to:+19142670129] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-20 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-21 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447853378335] [to:+447418328642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960548] [to:17192857743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817739286] [to:+18326509659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572244363] [to:+13216137381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573725737] [to:+17572969809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455422193] [to:+18452627612] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294121612] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524404155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065692] [to:18137651761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992135] [to:13099122833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663364] [to:12313503992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968604] [to:12318860013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016872201] [to:+19177730005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479748962] [to:17654917555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702481241] [to:17067660016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025469608] [to:+16233839291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793135202] [to:+13476303817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319688] [to:16164262442] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146633572] [to:+14388095185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042141366] [to:+17273332348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044282326] [to:+19047587834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-21 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062598202] [to:+19027043651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654159705] [to:+12138029747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242007454] [to:+12243104326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736070] [to:17063154534] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:19103090074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133002495] [to:+13133494384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042508] [to:16472810986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889764] [to:17733291261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022992590] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064499554] [to:+15068039667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:18482309359] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193345656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17209244020] [to:+14406587947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-20 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328239] [to:+447596753307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15036196136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068225012] [to:+12065195896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493108] [to:16788919017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798082] [to:17405179468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:16319237145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:15107557356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137640960] [to:+18193033347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16475224957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302316] [to:13048805031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025903474] [to:+13017710367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526371238911] [to:+14804391083] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-21 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00504] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093495] [to:18035770363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095619] [to:12403510316] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:16039915990] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005327] [to:13346725709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-20 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760968] [to:12566069606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028301916] [to:+19027046182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032328547] [to:+17039516936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-21 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14044685411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041863] [to:17406480005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011233270026330] [to:+16025004565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891637] [to:+19175995918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624208708] [to:+14308087405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562190371] [to:+19893147434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603305] [to:18163590791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:18635295264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547091594] [to:+13052037693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588537] [to:14405676597] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144206] [to:19547083410] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148678] [to:12404317279] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632347777] [to:+18637347510] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903385] [to:18016873271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697148] [to:19893956741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506617355] [to:+16784338237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393706] [to:12164696476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148246324] [to:+14388072408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387651628] [to:+14387953928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804307406] [to:+16025004499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182138404] [to:+16463496485] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691583] [to:14172049145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538685] [to:19194640884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675364614] [to:+17073009568] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942869] [to:16473866943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805419] [to:13155165632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15745270188] [to:+15744850726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633279192] [to:+18637347520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013294080] [to:12027132539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:16099549088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404653] [to:13362548875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136949] [to:18142736042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060783] [to:19567445242] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137480996] [to:+18133201086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147260115] [to:+14387945660] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199790] [to:17013013331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:14389945788] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853410701] [to:+16513184185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611268] [to:12693135905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619587] [to:12072128655] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199790] [to:17013013331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923817] [to:15145669101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14046410553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:15702058402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036034126] [to:+19038485585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13617040359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:16039915990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293936183] [to:+16466288918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-20 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329388781] [to:+18328042951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677215893] [to:+12674377387] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-21 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412081635] [to:+18477561652] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740779] [to:14234809487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942869] [to:16473866943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049080529] [to:+14844893346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16148176578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12092519182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672058365] [to:+15413257888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315247259] [to:+16317705283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627257] [to:13474187284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019684] [to:18703290803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681651] [to:19053487201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706300068] [to:+13479067600] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003210201] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500038C0201] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333738] [to:19898178966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063629131] [to:+13477981382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702031963] [to:+17702004930] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257764294] [to:+14156491908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:13479946687] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500038C0202] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191111] [to:12629896110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398883501] [to:+16465138363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988998] [to:18042522727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195983755] [to:+18193075983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499552] [to:15132926605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475498377] [to:+16465641184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:17049303003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13253156712] [to:+14698740327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-20 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674924] [to:+447539354207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309377271] [to:+13309157296] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991491] [to:14439831344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705992771] [to:+16156146891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436163482] [to:+18038519931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-20 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-20 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003940301] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409632692] [to:+17408797514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706300068] [to:+13479067600] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003210202] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874758] [to:13046691521] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293030] [to:13864667174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040474] [to:+13369381231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305646923] [to:+16466329620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046768712] [to:+12132958123] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267984008] [to:15197549511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14845418888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432836] [to:16417581864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123587] [to:+15174920449] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627257] [to:13474187284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:12297983187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138590] [to:14017494795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092844] [to:13362578844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086110] [to:15146274232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730238] [to:17067414811] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144282224] [to:+13473898083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231879] [to:16156804487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:14058196170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132082991] [to:+13477147484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197712975] [to:+14198777887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139578555] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018048198] [to:+12026090142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027178140] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860698] [to:12679829985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269273669] [to:+16474963727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073456051] [to:+13478683020] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863076177] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:12407720666] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12045583312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673220879] [to:+13479194059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:16289994874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372728999] [to:+12139298337] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185761423] [to:+15817018076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197083649] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863154793] [to:+14158534857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018579783] [to:16464066584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405784377] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282432619] [to:+18285486367] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156577037] [to:18125829347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415733] [to:+19027058167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059319758] [to:+16474910229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455494661] [to:+18452627451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-21 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853185] [to:15132545307] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884611] [to:13609570782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857971] [to:12022883996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134290940] [to:+15133860695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095619] [to:18708974786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764214] [to:12485062878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968739] [to:16787643389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030720] [to:16138165081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044050215] [to:+19047587687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141403] [to:18198165438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720579] [to:18432455570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209895639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779841536935] [to:+15303623335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209895639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072197506] [to:+17256660838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193868649] [to:+18192011501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696470595] [to:+18175922852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025050] [to:16783344270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16133048546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236465] [to:15612946678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612327] [to:+14197459599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179867] [to:12403551682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146346] [to:17654376662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-21 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520607931] [to:+447792166739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-20 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152179465] [to:+18456220981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578970] [to:17654997871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103357067] [to:12704991606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103357067] [to:12704991606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17047277742] [to:19802428566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562250206] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257764294] [to:+14156491908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784020219] [to:12508097595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191111] [to:12629308417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749278] [to:19104097991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185117] [to:13477604963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-21 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436167956] [to:+13479198525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228952] [to:12034486036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-20 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663455] [to:16154560349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839353] [to:16628081970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293030] [to:13864667174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068008649] [to:+15068039662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342147708] [to:+13309157184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941731] [to:14238396625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19739539350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053213034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082527102] [to:+13867425700] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] http://s.groupme.com/Obew4Rq] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674758090] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740779] [to:14234809487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627257] [to:13474187284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812311139] [to:+14157876796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282085430] [to:+17605896518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:17153233466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473810534] [to:+16475568925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13303567705] [to:13304419770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870240] [to:16016655589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-21 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204589] [to:13174296818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739511065] [to:+19086597109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173818636] [to:+13479376158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024196774] [to:+13024001273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476666411] [to:+12017658838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+13853361901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196416348] [to:+19199162332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454650] [to:14064781798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365005043] [to:+13369381825] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-20 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792023874] [to:+447520605185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008884] [to:18635292655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14755590949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640470] [to:13046513282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337335] [to:12602249673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15052061946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792426] [to:17163486643] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318030246] [to:+15175691410] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035196556] [to:+19038652094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825000287] [to:+19725347621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318030246] [to:+15175691410] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168958] [to:15088276351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899773] [to:18605083196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176838251] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480074] [to:12253023844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559394] [to:19107891034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242007454] [to:+12243104326] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053738010] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305219] [to:16362956745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058126642] [to:+19546412717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122905873] [to:+17472339012] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148244] [to:+17277053272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808598186] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067026] [to:14025703924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126678] [to:18563009043] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498786986] [to:+17053003686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694270171] [to:+19725348017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302839] [to:14128774139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796261] [to:17405015949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923817] [to:15145669101] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-21 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12408080984] [to:+12405732003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195510063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029730] [to:15068711516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056718020] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406375060] [to:+17402017104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049408248] [to:+17728004748] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498786986] [to:+17053003686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389945788] [to:+14506390028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267792991] [to:19196340341] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035098602] [to:+16034132364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066262196] [to:+15068036657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243824213] [to:+17865030636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003525] [to:13098684822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+15129526640] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-21 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221447] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403520699] [to:+19529778934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319331064] [to:+15817003178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-20 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-20 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432618144] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139570875] [to:+18133202513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+15129526640] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889883] [to:18125641255] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365368] [to:12022460491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025050] [to:19195915804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364735695] [to:+13366450593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+15129526640] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024161845] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064610694] [to:+14703334217] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506013715] [to:+14502329947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074002043] [to:+17184812635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067994572] [to:+16026384151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043958] [to:14133167768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404317279] [to:+13477148678] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328853247] [to:+18326501160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496485] [to:17182138404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016873271] [to:+18018903385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103090074] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035976588] [to:+17747288411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-20 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674063] [to:+447502997487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-20 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674063] [to:+447502997487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356309679] [to:+14357764128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127583377] [to:+17248033790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317802443] [to:+16316141242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049010201] [to:+12678676987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:12899195486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-10 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925814] [to:15146165355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743472] [to:16789015405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183351715] [to:+18722134307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736012] [to:12673449362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045317039] [to:+15103135957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-21 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:17322999346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:17322999346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-21 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447910826775] [to:+447520622877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199337] [to:18563009290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213317808] [to:+13219998105] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413108] [to:17133450817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19736703560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491815] [to:17138255109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162187703] [to:15166397120] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479748962] [to:17654917555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708051794] [to:+12136348267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064993061] [to:+16367306333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147308] [to:16157799942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:17868775200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868552000] [to:+13866015496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325717] [to:12699086883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014521] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316730] [to:18137587998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194620411] [to:+18193033842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-21 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049616814] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14345345484] [to:+13477149040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620874] [to:16153741171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005327] [to:13346725709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028399980] [to:+13475804812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] I'm driving right now - I'll get back to you later.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263785051] [to:+12897683470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019772] [to:15062601454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640470] [to:13046446196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064918] [to:19183140587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361810] [to:15012890125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132277] [to:18173534994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253174327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348214640] [to:17344974664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14109636666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086110] [to:15142466597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065089580] [to:+16788164617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137025421] [to:16136687240] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-21 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447879551703] [to:+447451220294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266008851] [to:+12264550320] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884760] [to:14439832454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036251822] [to:+12676076273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048805031] [to:+18134302316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-21 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702058402] [to:+15703977768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322161672] [to:+17328842605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069909126] [to:+14706734234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427797] [to:19165723173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869169676] [to:+13866016659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17047277742] [to:18038045127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853410701] [to:+16513184185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889883] [to:18125641255] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164006425] [to:+17162792564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179074507] [to:+15102549708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198569941] [to:+18193035404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302351677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122702774] [to:+19142060942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-21 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14325993949] [to:+14697286076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188819851] [to:+15186155639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186711405] [to:+19802092507] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065502515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622603709] [to:+12139356629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129151526] [to:+14159687870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864871942] [to:+13055017808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144747205] [to:+18458181056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164006425] [to:+17162792564] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708051794] [to:+12136348267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203354] [to:18136249272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-20 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414511147] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:19103090074] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332499] [to:18135278417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077473325] [to:+13608498815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215440997] [to:+14025002603] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864136809] [to:+15204336271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406480005] [to:+14062041863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-20 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614980] [to:17086737601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007629] [to:18089540211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:12146214559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363012603] [to:+13364500956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787698846] [to:+16784123990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-21 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044957558] [to:+19802092133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664206] [to:17722607734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138590] [to:14015561001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316730] [to:18137587998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-20 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215440997] [to:+14025002603] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071706] [to:14507743019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:16473621227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122934453] [to:+17248032326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705283] [to:16315247259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122853982] [to:+15612319247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:16307461282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19087598234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059146415] [to:+12262437221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522726] [to:+12693366072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-20 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18288178227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485062878] [to:+14357764214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525735425] [to:+17279986799] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076221] [to:14792228543] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036879226] [to:+12092641527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186711405] [to:+19802092507] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046277378] [to:+15172585194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085157848] [to:12089967473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17639134213] [to:+16124448067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:16198905520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893956741] [to:+19895697148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:17133840582] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652447262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153239677] [to:+14132715989] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059286980] [to:+12262411715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025908626] [to:+18456220721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645487] [to:15617552720] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088276351] [to:+15084168958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312551] [to:15402870911] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586267] [to:15177486036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046182] [to:19028301916] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109101010] [to:18329492570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:15097318556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12154327143] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544758] [to:17063500154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175534129] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743280806] [to:+17749921410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-20 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447858370549] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612875897] [to:14073049723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18567230339] [to:+18563182089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903930] [to:13475459218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743987440] [to:+17604745441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096511732] [to:50371350753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342059357] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-21 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888259] [to:19103740759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039516936] [to:17032328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025050] [to:17248884766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197016437] [to:+12262716596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17068471769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036193309] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242007454] [to:+12243104326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048821934] [to:+14703334110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632457952] [to:+18638557497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128019841] [to:+12136946367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793135202] [to:+13476303817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876387] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074237706] [to:+19172834428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447714644096] [to:+15082711154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13035787865] [to:+16784338237] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046277378] [to:+15172585194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042924739] [to:+18046244510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042812343] [to:+14157879260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572474411] [to:+18573001602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232158220] [to:+15612408365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499552] [to:15132926605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019184921] [to:18629007669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072715570] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043410865] [to:17066646251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045356702] [to:+19046947606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045390082] [to:+13475087081] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-21 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042162] [to:16315765187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066395398] [to:+15068031164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853700366] [to:+12677669363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157779175] [to:16154148860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064499554] [to:+15068039667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478980929] [to:+19172592328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138857705] [to:+16137014696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562154554] [to:+18324103038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892701540] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016001728] [to:+19172751271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370644] [to:12162027440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796261] [to:13306005548] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163054] [to:19195250504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566069606] [to:+12135760968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018393] [to:19016539906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167779982] [to:+12167776619] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16106999834] [to:16103100675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452004834] [to:+18459407229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874641141] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092026782] [to:+18563125100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-21 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157296] [to:13309377271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523154104] [to:+19193072246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228308] [to:19189780798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-21 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233981] [to:+447940715468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605433625] [to:17603937462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15737215886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193086173] [to:+19196516158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466876505] [to:16466696824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-20 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:14699521483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249938983] [to:17244481278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432012] [to:19312529796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012689667] [to:+12405732298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347613] [to:13344245535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067026] [to:14025703924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036251822] [to:+12676076273] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18635955208] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005075] [to:16788569702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15795003083] [to:14388620679] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15795003083] [to:14388620679] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606025230] [to:+12604077536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-21 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561038] [to:19365492006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703000482] [to:+19175805168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19514424912] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498305] [to:15088344846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804307406] [to:+16025004499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342054] [to:14235350420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056862016] [to:+19286605465] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146165355] [to:+14387925814] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182138404] [to:+16463496485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063861605] [to:+18653473237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364715] [to:+13219993650] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-21 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336001] [to:+447743466006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178182104] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15146924709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681925] [to:15162443109] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:14179883942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156308976] [to:+19148812959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144647] [to:13027278086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002485] [to:14049315032] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535381] [to:17732207153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033341564] [to:+18039784501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609447] [to:12027047728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302146] [to:14122953105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085109352] [to:+19175995418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-20 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338054] [to:+447415734517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413108] [to:17133450817] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925993] [to:14388691738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403466209] [to:+15672057169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006437] [to:19706312744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-21 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329641] [to:+447599835354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523154104] [to:+19193072246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592370] [to:17177062536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-20 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107417] [to:13522236098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122690252] [to:+19122005903] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033097] [to:17244668593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122690252] [to:+19122005903] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-20 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033341564] [to:+18039784501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985467] [to:13056137113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16148965015] [to:14192103248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777057] [to:14194900705] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179275904] [to:+15172527017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269322] [to:13215360473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19529778934] [to:17403520699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648320] [to:12038183618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493302] [to:15303395054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233312589] [to:+18649997404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038369245] [to:+15873232679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109486192] [to:12709450635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142736042] [to:+16465136949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+16137014521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188586] [to:12055451319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196312662] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045583312] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316454912] [to:+12313318320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193403885] [to:+19199161817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079496314] [to:+15617665043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047555911] [to:+19046946904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033238743] [to:+18438720441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086751296] [to:+18046245816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092026782] [to:+18563125100] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860189] [to:16505348105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955878] [to:17866410456] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173663773] [to:+16576668078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249686501] [to:+19705481416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800164] [to:13169900153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550320] [to:12266008851] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347552346] [to:+17274937161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039516936] [to:17032328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067044] [to:16015750905] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626003745] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062078497] [to:+16784968544] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:15103592199] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:15702058402] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:16064075331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148880520] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166397120] [to:+15162187703] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743340945] [to:+19142671738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882116] [to:15307365874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699449176] [to:+12695755099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067414811] [to:+14706730238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003030202] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327502] [to:12605737629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257764294] [to:+14156491908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326871014] [to:+15713929729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049225333] [to:+13024002136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587461] [to:14406547192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096564857] [to:+14096833679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-20 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143365309] [to:+14144005707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069801700] [to:+14693537435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:16198905520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093565332] [to:+15103405431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218242] [to:+16465037603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958467] [to:13109138690] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048201] [to:12095415037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:17184165222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202548038] [to:+17205028352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047555911] [to:+19046946904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039217074] [to:+13475076339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:17054444210] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18635955208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16479649122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:13108016025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239877288] [to:+13853361901] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782795084] [to:+13473436992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874095846] [to:+16474992191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634269] [to:13854951014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824814] [to:18628885963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19024031522] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12072296429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740229] [to:15049080575] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048780677] [to:+18046246117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038341190] [to:+13479789882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193345656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214884] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126564669] [to:+14158532272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076249071] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-21 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043493500] [to:+19046947229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022402201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-21 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506617355] [to:+18506313805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613459173] [to:+15612910569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029744957] [to:+15022083472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17799990452] [to:18725881369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656046939] [to:+13477974688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003250201] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126678] [to:18563009043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997866] [to:18153864981] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995392] [to:18643089711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407142] [to:18432243211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193796790] [to:+13479788089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612875897] [to:14073049723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860695] [to:15134290940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768508] [to:15044955572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079946] [to:17863285098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193401843] [to:+17344365372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522416563] [to:+18133208003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:18622356222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003250202] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524262] [to:16164196971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162332] [to:19196416348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312122134] [to:+19018426117] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086979012] [to:+12627774695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506396870] [to:14182416566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973305] [to:17178109402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177082735] [to:+15852822188] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557827] [to:17724185045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808598186] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392588028] [to:+19142816889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023944721] [to:+12262414235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927647] [to:14073462120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999339] [to:15416619185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734021] [to:17069382656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-20 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164463284] [to:+16163266402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018579783] [to:13472902129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:16099638051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474198258] [to:+19142671509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478804359] [to:+17185040564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-20 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451204224] [to:+447954099423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:13018048198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059146415] [to:+12262437221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606286222] [to:+14422207633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889883] [to:18125641255] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785656383] [to:+12132952449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162451258] [to:+15873232525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-20 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405091] [to:13867959387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-20 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405063919] [to:+16149964034] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705283] [to:16315247259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13057487877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504055550] [to:+13053400809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939212] [to:12675931697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174726139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567039329] [to:+12816034992] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298201] [to:12396451044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528569] [to:13308832974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898178966] [to:+16784333738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-20 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017494795] [to:+17746138590] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014893] [to:14188026973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594234] [to:14406502489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585194] [to:13046277378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107417920] [to:+16108804267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297455] [to:14232739356] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362640709] [to:+13369381156] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294621335] [to:+19177320395] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177085796] [to:16014335977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434819] [to:17322411942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098684822] [to:+18724003525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19032317348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995918] [to:16462891637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:12893389946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065502515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12248569319] [to:+18477568451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-20 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001799] [to:14803191592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697148] [to:19893956741] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349861] [to:17063336782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207277898] [to:14802294469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154606910] [to:+13473438874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212084602] [to:+13219993117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033410477] [to:+14692051259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031133] [to:19286498343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347727286] [to:+17344366646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326027681] [to:+12816436253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067376] [to:13377186573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621737] [to:15409071974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775402] [to:13046199357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-20 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862152878] [to:+16463496281] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086622462] [to:+13479372396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17176838251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-21 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196293375] [to:17194227635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851926] [to:13023962358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593956] [to:15703570508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-21 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-21 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13362544616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127468] [to:16314550159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024989887] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14233642401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025175145] [to:+12243104899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614288713] [to:+19253269284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-20 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-20 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19045053305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673356211] [to:+17278602700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559394] [to:19102318718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076356] [to:12677771495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654917555] [to:+13479748962] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126809382] [to:+12678444603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622417233] [to:+12087574177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183155929] [to:+15103404745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797514] [to:17409632692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048313257] [to:+14043411399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873175089] [to:13065017124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139570875] [to:+18133202513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001799] [to:13033247704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356768] [to:18163795147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329462] [to:19172161003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312122134] [to:+17315744425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15405784377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083314687] [to:+13052037143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408600] [to:15615840086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752242379] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227470] [to:17406058986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-20 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361704] [to:19122125395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244668593] [to:+17248033097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033122704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339244] [to:15309574824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339244] [to:15309574824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339244] [to:15309574824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476137246] [to:+16463490951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156693511] [to:+13025955832] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566107311] [to:+17702005035] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627323] [to:17313946876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17207379653] [to:+15103131888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197294330] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853535522] [to:+15852821244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336485] [to:16513074296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485401] [to:18322894127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128872510] [to:+13473436210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406842] [to:19057469763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735126] [to:19122729815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001602] [to:18572474411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659869192] [to:17653980850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194478245] [to:+17078974876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195310488] [to:+12264559709] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343054127] [to:+13479801355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:15158299096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:16473621227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991128] [to:13024193196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137179] [to:1204814119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175517] [to:18286781304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058186329] [to:+12262411617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865749] [to:+14696293934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997853] [to:14237233747] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784710455] [to:+18649995532] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049266565] [to:+14242837864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921410] [to:17743280806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144206] [to:19547083410] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557827] [to:17724185045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801749701527] [to:+19018422553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134546713] [to:+18133203345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-20 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374281304] [to:+12698838159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436531995] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577491602] [to:+13477148564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925814] [to:15146165355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784710455] [to:+18649995532] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407169984] [to:+12404084762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-20 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208386602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-20 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149989955] [to:+15146134241] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208386602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408600] [to:15615840086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699938528] [to:+12696356093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137759] [to:17166387161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14049369749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022992590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053060702] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318320] [to:12316454912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577491602] [to:+13477148564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940316] [to:14126052103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324103038] [to:19562154554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013313349] [to:+13017786256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13148998380] [to:13147954868] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300824] [to:16627052890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072137532] [to:12293083646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577491602] [to:+13477148564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003210201] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-20 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997853] [to:14237233747] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085028158] [to:+15103402596] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043853] [to:16132071747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346725709] [to:+17702005327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003210202] -Feb 1 11:52:25 ip-10-0-0-21 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790284] [to:17164891334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675744473] [to:+12677988893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084634847] [to:+13478023371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178833599] [to:+18722258246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045997016] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18632296808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-20 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940925473] [to:+447418331182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049237174] [to:+19802093652] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787049510] [to:+13477361611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067017] [to:14798494364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868661] [to:13364596905] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138430] [to:16036613946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702748076] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372677] [to:18283207677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068502506] [to:+13065003915] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668359] [to:16066273039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023221] [to:14238836824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:16474592315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:12504159006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874901] [to:17856390625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165770429] [to:+16474913988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256412] [to:18633262894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602514470] [to:+12342517699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262128] [to:19737521939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232679] [to:14038369245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039983935] [to:+19282325226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466696824] [to:+16466876505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604975952] [to:+14132736243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067017] [to:14798494364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032746] [to:17174914965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475019817] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232348] [to:17602197139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308073] [to:14075564692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-21 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222173] [to:18455418365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035386814] [to:+13234984213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345969615] [to:+12135760580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672399237] [to:+12135295802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403551682] [to:+13019179867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-20 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613459173] [to:+15612910569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000859] [to:15819964011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406842] [to:19057469763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-21 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595150] [to:12074041401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028717] [to:12086080803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003450401] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147813110] [to:+18193073670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388620679] [to:+15795003083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039217074] [to:+13475076339] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505310159] [to:+15817005248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673356211] [to:+17278602700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043078615] [to:+19785334082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333738] [to:19898178966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927781] [to:19026806564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003450403] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635295264] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076204] [to:+18039784501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031522] [to:+19027021768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012439] [to:14184361024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966291] [to:12075776659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319572] [to:15615770433] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786332923] [to:+14706733294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222173] [to:18455418365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702058402] [to:+15703977768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003450404] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322161672] [to:+17328842605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009335] [to:19028402398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764128] [to:14356309679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946759] [to:19048023594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16138908838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977856] [to:15166337185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498305] [to:17745532797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068144] [to:15025986819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634995457] [to:+15635622342] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023221] [to:14238836824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745441] [to:15743987440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562250206] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868286] [to:13164619779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017494795] [to:+17746138590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265231530] [to:+16269881512] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133732786] [to:+14242863361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021620] [to:19025371991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:15752242379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072137532] [to:12293083646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072626798] [to:15072027409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186631598] [to:+16466288578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165646746] [to:+19895334270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454898503] [to:+19177370408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526655329] [to:+12132954633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505228920] [to:+14506390064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13207610888] [to:+15632317298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611692] [to:18508008387] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896496] [to:+14156493781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189210907] [to:+19172835279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408173923] [to:+17089612911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505585613] [to:+14388086134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199373385] [to:+19715124018] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193086173] [to:+19196516158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-21 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451237139] [to:+447946034230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-21 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451237139] [to:+447946034230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157779779] [to:19316984118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479935] [to:19734091739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471819] [to:18659647707] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194660121] [to:+12262409891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125321] [to:18564187365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977540] [to:15709834861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796414] [to:17405529452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088543] [to:15202210285] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789341630] [to:+14156499716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125605080] [to:+13473899291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621846] [to:19036896021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137936189] [to:+16136041711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063725246] [to:+17028158463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039222621] [to:+19783619361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137689932] [to:+15087884625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128189] [to:15033024214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746243] [to:16095569243] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035153] [to:16133042041] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035153] [to:16133042041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740528] [to:+16463492699] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142666688] [to:+16149964316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719938] [to:14436982306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173710401] [to:+18133316695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324079596] [to:+17325274690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982412] [to:12034303933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436122] [to:12817438310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085207301] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053446344] [to:+16139093010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042633606] [to:+13866015760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292323857] [to:+19715124018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029880079] [to:+16136047175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075816] [to:18195881337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802802358] [to:+16233837745] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233130169] [to:+12138610628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747198] [to:18082258848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14708852301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660155] [to:12057374489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027821603] [to:+13477691857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764402] [to:18035076398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190404] [to:15186057694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:13475960450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502320133] [to:15148339203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173951387] [to:+16673083165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479410778] [to:+19177248013] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156068019] [to:+13477962486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223361] [to:13373229195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573290113] [to:+13479193417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479311252] [to:+16474933304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779603] [to:13309624125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146257539] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068613225] [to:+13392304719] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13316431562] [to:+13126145667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138159707] [to:+13477981896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654917555] [to:+13479748962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294621737] [to:+18052537844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454898503] [to:+19177370408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017262580] [to:+19738462544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042945872] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156215088] [to:+18724009509] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435134857] [to:+17604746640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195510063] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046874864] [to:+18572645872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15062327893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15055150431] [to:15053061059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-21 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097634218] [to:+17097022779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004462] [to:14046219591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015750905] [to:+13214067044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894449832] [to:+19894020045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196309] [to:12532453335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022622554] [to:+12087574092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614189545] [to:+16614024481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141419] [to:18192303626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246519765] [to:+13478086076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657116] [to:12697188073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12069533567] [to:+12062585740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043567] [to:19028040052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473034887] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613155] [to:17325150226] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474971889] [to:+12267794238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13094336018] [to:+13093069720] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812774] [to:14432955673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:15158299096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068069] [to:17172628754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346481536] [to:+13134246179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B20301] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017262580] [to:+19738462544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404316] [to:19375455814] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024857525] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566903190] [to:+19177370164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126052103] [to:+14126940316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158881442] [to:+17816548829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195677285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156804487] [to:+17206231879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865323458] [to:+18582237637] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15595474696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145168303] [to:+19196517030] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496751] [to:13474231596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094647146] [to:+16474916835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753356] [to:13523282921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449930] [to:13176089239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479649122] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185217131] [to:+16177064186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103923077] [to:+15865747557] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001530] [to:+16463497005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659869148] [to:17656674872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812635] [to:12074002043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005718] [to:19125413667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005718] [to:19125413667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036721] [to:18196358478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496267] [to:16465780045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659777] [to:15185938664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659777] [to:15185938664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613155] [to:17325150226] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622966358] [to:+17097019096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789009503] [to:+14706734046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372870183] [to:+12139296071] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724862] [to:15164500397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941536] [to:18653825767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407720666] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103923077] [to:+15865747557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469386783] [to:+16463496786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745715] [to:15406427393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161817] [to:19193403885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293991] [to:18505900022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243186] [to:18134040043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142658] [to:13366752694] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034594813] [to:+14438550338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672058365] [to:+15413257888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246720849] [to:+18508950340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346481536] [to:+13134246179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B20302] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308792] [to:14437456817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194158126] [to:19106918682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157345906] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14436531995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126052103] [to:+14126940316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671562] [to:+15799770348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157345906] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18018334001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049529021] [to:+17279166379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298337] [to:19372728999] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072408] [to:15148246324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299470899] [to:+13477147141] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159342317] [to:+16157777090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012836848] [to:+19015621467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882116] [to:15307365874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148899634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132209225] [to:+16136043706] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523704970] [to:+18046242498] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256917619] [to:+14259478739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15873350070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562391199] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-20 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324605] [to:+447423005369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496751] [to:13474231596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175303034] [to:+19177730547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873175089] [to:13065017124] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346481536] [to:+13134246179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B20303] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314550159] [to:+16318127468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432510] [to:15123174596] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031495] [to:18183840830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240433] [to:19193399123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812774] [to:13012135180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-21 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326484986] [to:+17323770526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092817200] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107693473] [to:+12105560975] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525602096] [to:+13479787610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184815496] [to:+12184163586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004477] [to:17809199020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-21 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213828] [to:+447749786938] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13602592380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-21 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213828] [to:+447749786938] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572474411] [to:+18573001602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145288287] [to:+13478029729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798355] [to:17408776254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127049068] [to:+18583603381] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147813110] [to:+18193073670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:18622356222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063336782] [to:+12136349861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104306] [to:16306564283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569388242] [to:+17605896566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034486036] [to:+15103228952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710039] [to:18138471731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073330] [to:12134342510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102318718] [to:+18572559394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866278] [to:13045913246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072847] [to:17246995090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253174327] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712526848] [to:+17749921552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032064778] [to:+12132958818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364097] [to:+17073419263] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595536479] [to:+12138733781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185300142] [to:+17185212268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053446344] [to:+16139093010] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197223799] [to:+14197316149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957408] [to:13526102616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927781] [to:14384035820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028717] [to:12082509491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794235] [to:17758150576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134290940] [to:+15133860695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450390] [to:16035831739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500291] [to:18042343225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409632692] [to:+17408797514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023490021] [to:+19027046119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294156876] [to:+18176125728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183886] [to:14083378287] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393562] [to:18108344207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642443] [to:19206649347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887014] [to:18076314741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496751] [to:13474231596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197600408] [to:+16136048043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302179005] [to:+13302374642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:17062509374] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346101190] [to:+18503293035] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816385428] [to:+12816035455] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-21 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502034] [to:16614934223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146023] [to:593984844661] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-21 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447947918803] [to:+447520674899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415325] [to:18764755688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132320] [to:16036576986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415325] [to:18764755688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696433711] [to:19016035465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569817] [to:15703176246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227198] [to:13409980893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154274] [to:+13437001520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102340703] [to:+13217308761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807732044] [to:+15874051076] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-20 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767320118] [to:+17726179239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107417920] [to:+16108804267] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015997949] [to:+18018906351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252382406] [to:19252066514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158668546] [to:+12678676167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479556848] [to:+15162526886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788089767] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477024725] [to:+16474941122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-21 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332467] [to:+447521129474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12696356093] [to:12699938528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029946822] [to:+17607013424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638442916] [to:+17863726930] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-21 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332467] [to:+447521129474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779603] [to:13309624125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289370] [to:18604612947] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282913606] [to:+19175804891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176145479] [to:+17036628794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15168282027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13602592380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024989887] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120563] [to:16133411694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165988552] [to:+17162791725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14233130169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572169554] [to:15016725775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038369245] [to:+15873232679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:13049914906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509819012] [to:+16049019044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193290864] [to:+18192011152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347825712] [to:+19142817883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334110] [to:18048821934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559394] [to:19102318718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745715] [to:15406427393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199513179] [to:+13309157346] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425882] [to:19125773887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067407181] [to:+14502324037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050260] [to:16046741196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262362197] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004748] [to:15049408248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789341630] [to:+14156499716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303817] [to:14793135202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165723173] [to:+17072427797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673440742] [to:+14582016798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526190219] [to:+17248032913] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439928444] [to:+18438888279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082657162] [to:+12138063358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003030201] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015661842] [to:+15107799608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014637390] [to:+12138028437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292534182] [to:+16465478518] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703163304] [to:+19703156034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438145086] [to:+12404668756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475517551] [to:+16474941589] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166593612] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044961310] [to:+13057355979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706406741] [to:+16692252597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634100078] [to:+14128193090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049957930] [to:+12048183396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003450402] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15418160731] [to:+15415392144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708508473] [to:+17813862580] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196803655] [to:+17408797666] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075564692] [to:+13217308073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148880520] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109399754] [to:+12135296757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156538761] [to:+12012344321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439831344] [to:+12029991491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168567392] [to:+16474954385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057634] [to:18176837928] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611268] [to:12692351114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003928] [to:19063671977] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064663984] [to:+14703336341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19028807119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18019531785] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405923] [to:19057038491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048880731] [to:+13479789213] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195882065] [to:+15799000685] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268843] [to:16468234723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812774] [to:14439752605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491348] [to:16065212517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:18602681121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505585613] [to:+14388086134] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540383] [to:12407430066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789015405] [to:+17604743472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:17049616814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031522] [to:+19027021768] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420051] [to:+12262401189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437591538] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12156068019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17869751096] [to:+13475087669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14233642401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167440139] [to:+17135883492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711358] [to:+13064000804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816593896] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19529778850] [to:19144792334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437903577] [to:+13024398714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751364] [to:17409636941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-21 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045704302] [to:+18046650539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608492253] [to:+16105718609] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231954] [to:16037023650] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402870911] [to:+12342312551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055351381] [to:+13479808083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313067399] [to:+17015872156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475684] [to:+18102218517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044849638] [to:+14049004548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004325] [to:14072854738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026780] [to:16062350022] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093135415] [to:+12677938913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082047] [to:18135147443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958467] [to:13105058262] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794235] [to:17758150576] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-21 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432011735] [to:+447451211332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B60201] -Feb 1 11:52:59 ip-10-0-0-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18169201381] [to:+16513184804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415325] [to:18764755688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063725246] [to:+17028158463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18137859522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037529] [to:16307880583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196322681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390350] [to:14389983683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13303567705] [to:13304419770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12259368262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-10 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744170622] [to:+12039904425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824775] [to:19082026499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-20 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432011735] [to:+447451211332] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B60202] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-21 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853544009] [to:+13479787448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204171452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:18637972149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204171452] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237159772] [to:+12132958267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176341698] [to:+19142815269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148122] [to:+15852824368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055800569] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132590] [to:16038511402] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592136352] [to:+17274937792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265983676] [to:+14153161549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:17057885675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:13068810505] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183789717] [to:+16474955955] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-20 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688372] [to:16465314696] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258223] [to:15012069212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568795] [to:13364254601] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383047] [to:13365968897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284467337] [to:+12136300374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087396] [to:14075419885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232818] [to:13097509204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039611] [to:15066256094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474592315] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629135] [to:15084939294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-21 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468587] [to:17088564683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767320118] [to:+17726179239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440249] [to:15186377901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13023993500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005718] [to:14048255123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053271477] [to:+16474968388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17068253914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817027974] [to:+12816034769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147541410] [to:+14387920216] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179936467] [to:+17278197248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093978211] [to:+18729996147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675968241] [to:+12678444088] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825000287] [to:+19725347621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193403885] [to:+19199161817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046199357] [to:+12627775402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162210505] [to:+15852824855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035098602] [to:+16034132364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593986127584] [to:+13478303802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132523] [to:15089441605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16138185151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174509614] [to:+17604746265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17408796728] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19793249766] [to:+14426007946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450390] [to:16035831739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788346882] [to:+16785868192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605083196] [to:+13473899773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135076732] [to:+12139213154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179312] [to:+19175638683] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023068171] [to:+19027062781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-20 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234654] [to:+447930075810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436531995] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405784377] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089967473] [to:+12085157848] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134616037] [to:+13477865052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159755311] [to:+16158076271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137438] [to:19102419252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349255350] [to:+17344366112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122982312] [to:+14122302879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:15732810942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049633973] [to:+14703334436] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022779] [to:17097634218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145980983] [to:+16149965167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186539266] [to:+13477989729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383996700] [to:+14388078058] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709168576] [to:+17162790942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006239] [to:12505665234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042235316] [to:+19298411285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750759] [to:+13025830121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016404259] [to:+17016454474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927781] [to:19023002122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566691629] [to:+16095434064] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036437] [to:17096400987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086492] [to:16309564506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085207301] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593537177] [to:+12139352294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163433] [to:13212036697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196416348] [to:+19199162332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705071536] [to:+15703973415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997910] [to:18607195823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297983187] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432455570] [to:+18438720579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122702774] [to:+19142060942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629491569] [to:+16106999943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587581] [to:14404533565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329492570] [to:+16109101010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124907] [to:12489431568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862663] [to:+19149338611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066677] [to:15092009268] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752242379] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453106] [to:17147529815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143911960] [to:+14146006995] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528192] [to:14402618172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149299626] [to:+14387931038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335810] [to:17063508346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653276198] [to:+13479978196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783601054] [to:+12138026450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076249071] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041859] [to:+17185676091] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500956] [to:13363012603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076314741] [to:+18077887014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16786435546] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045022703] [to:+19252398553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059060759] [to:+12262436839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429018] [to:18593335749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434057452] [to:+18133209059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148366315] [to:+14387923278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683263] [to:18605141998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851926] [to:14433665795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873175089] [to:15144243892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258108] [to:18123900304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163486643] [to:+17162792426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361704] [to:19122125395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494353] [to:13602411933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303578332] [to:+12626483448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197431782] [to:+18193037291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084158205] [to:+19047587493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013068353] [to:+19738147962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292721] [to:15109789261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036896021] [to:+17812621846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378705] [to:12035921699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449567] [to:17737154084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493540] [to:18632142471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044338372] [to:+13477735318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997765] [to:17204980091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013572876] [to:+17604747437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913988] [to:14165770429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913166] [to:16474614052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14237411708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:18438581703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044887751] [to:+14049004131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:12038100073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436982306] [to:+14439719938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976080] [to:17078329827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860695] [to:15134290940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292918414] [to:+18639491879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739882] [to:19285757527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:15715023583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197223799] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13164619779] [to:+14242868286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067407181] [to:+14502324037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468587] [to:17088564683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852137] [to:14108296397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172832] [to:14357314913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500034A0201] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-21 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751278097] [to:+447418336927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137544626] [to:+13477055697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:18282012763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400809] [to:18504055550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500034A0202] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068037735] [to:15063211352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258599] [to:12017808657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709886047] [to:+18133088899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:18325408389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045037] [to:15142479030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649053] [to:19785968044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538047] [to:19377187793] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:15166593612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334022] [to:19899921527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303531067] [to:+17016454913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147541410] [to:+14387920216] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633279192] [to:+18637347520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301503] [to:14127080897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135076732] [to:+12139213154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046352] [to:19024739763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370408] [to:18454898503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186057694] [to:+18572190404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817019743] [to:15813093013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073547745] [to:+19172669376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-20 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030A0201] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304304] [to:16073771416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093057816] [to:+12026609416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569388242] [to:+17605896566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466876505] [to:16466696824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327502] [to:17037316668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201094] [to:+13477696424] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053060702] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996776] [to:19703180968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996776] [to:19703180968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14044541497] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897785340] [to:14167060433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-21 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418333625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13067172109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672302919] [to:+12039904243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174965420] [to:+16413165184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142618999] [to:+15148198684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894986043] [to:15022038063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12055169427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14795612945] [to:+12138023825] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337048] [to:19524545096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16302582099] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125025308] [to:+14153269688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995814] [to:13472903163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688372] [to:16465314696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603492208] [to:+17605899368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336344] [to:12092213572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566771182] [to:+19725346680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003450201] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16186042842] [to:+16367305355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787793896] [to:+19047581337] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875909565] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364688] [to:+16467380593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062849488] [to:+18316122372] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014704] [to:+15167238778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062298368] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817438310] [to:+12816436122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937161] [to:17347552346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316450418] [to:+12313318175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410521] [to:17049291164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815269] [to:17176341698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892007806] [to:+12897805325] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-21 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339384] [to:+447543193689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038708] [to:17862178747] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232331] [to:15592316389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265231530] [to:+16269881512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473020] [to:18654382913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142708885] [to:+19298410820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372728999] [to:+12139298337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012648] [to:13866032987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083177851] [to:+12087633812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817027974] [to:+12816034769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566771182] [to:+19725346680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003450202] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163433] [to:13212036697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044701798] [to:+12048134485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336211] [to:17069411451] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822128] [to:13216950008] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612134] [to:14437625590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048255123] [to:+17702005718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033238743] [to:+18438720441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123916922] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105286618] [to:+13478084059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679122] [to:16612100957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434057452] [to:+18133209059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362548875] [to:+15103404653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19737521939] [to:+15713262128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496429] [to:17863035354] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160816] [to:14077155727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:14787033715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-20 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940715468] [to:+447451233981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329388781] [to:+18328042951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178759983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178759983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334022] [to:19899921527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292415476] [to:+17185044844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297518] [to:+18328025673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093057816] [to:+12026609416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924456] [to:14388221032] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133411694] [to:+16139120563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031495] [to:18183840830] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437456817] [to:+14156308792] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437456817] [to:+14156308792] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062350022] [to:+12138026780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188191030] [to:+13476670104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436183] [to:14782583835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374899] [to:13302058130] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777057] [to:14194900705] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072402162] [to:14437561330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16236706789] [to:+14806664595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344349622] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017975] [to:19043157139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:15715023583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673220879] [to:+13479194059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:16307461282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808030080] [to:+15874006697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003150202] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809822154] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032F0201] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736711972] [to:+15873232525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897214] [to:19163081851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977856] [to:15166337185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018449503] [to:+15155127266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455970373] [to:+17749921920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419602] [to:18083712476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032F0202] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035071942] [to:+13477145618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181096] [to:18052980921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534079] [to:50240774665] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-21 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632070960] [to:+18639493799] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628081970] [to:+14242839353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127753776] [to:+15129523446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446737] [to:14232001052] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14798494364] [to:+19142067017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348267] [to:12708051794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13025615522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17402067760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16616367343] [to:+16156147607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431994] [to:+16158100311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632296808] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024857525] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929426] [to:15878972221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:13182285839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329517266] [to:+18327772696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404370] [to:13305180312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474916097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622165253] [to:+18629551607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567110] [to:15066540923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13123308199] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797809] [to:18439747282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605569143] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524913862] [to:+19292009941] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524913862] [to:+19292009941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16146579381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866284125] [to:13187174745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692696025] [to:+16136045275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436183] [to:14782583835] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669125] [to:17738851359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028567] [to:+12267982318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429238] [to:18565010575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17279067911] [to:+17278578114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674084560] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913166] [to:16474614052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976080] [to:17075969558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707889] [to:16314331732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375947901] [to:+12139927757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762841] [to:19084443853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436982306] [to:+14439719938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679122] [to:13234558445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136297717] [to:+12134787835] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015972677] [to:+17745654113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-21 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468283] [to:13153720394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002648] [to:13026327408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405919847] [to:+15204333286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635955208] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AD0201] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14385808778] [to:+14388078836] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-21 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447511075565] [to:+447418336845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266402] [to:16164463284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018769] [to:13526394932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635955208] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003AD0202] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033610521] [to:+13478966271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817814903] [to:+17604749017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237247792] [to:+13473798200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348650088] [to:+19417256629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302839] [to:14128774139] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223124] [to:12516802983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369291032] [to:+13369440738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093057816] [to:+12026609416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216950008] [to:+15852822128] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530684] [to:16025385101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634885] [to:17327034208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046513282] [to:+16465640470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688372] [to:16465314696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194365] [to:16625232099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475763406] [to:+17185042100] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186377901] [to:+15183440249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263765560] [to:+12138062444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:13475960450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366341] [to:12692777984] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428874] [to:19043187636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967169] [to:19313383917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004775] [to:14044160190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138335098] [to:+15178161867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708371223] [to:+16465138363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-20 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14045502237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500956] [to:13363012603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374184] [to:14072855695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109101010] [to:18329492570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13067172109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:13474692540] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14233642401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036196136] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174138533] [to:+17816548592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475446554] [to:+16474941995] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402023943] [to:+14197767985] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804611921] [to:+15109486125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19376214096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138830292] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015916] [to:17752408920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562750765] [to:+19177229427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042609989] [to:+12048177563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503847] [to:14047095813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028567] [to:+12267982318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374184] [to:14072855695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136895] [to:16623800862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439118] [to:18609780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076598572] [to:+14158907499] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082384247] [to:+17472014516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868286] [to:13164619779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035109984] [to:+12039904245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048821934] [to:+14703334110] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165770429] [to:+16474913988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167730302] [to:+16163266122] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133339686] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064075331] [to:+19142797123] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525735425] [to:+17279986799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673530753] [to:+13475088602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479254927] [to:+19142286245] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691249] [to:13158790613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512138149] [to:+12515819883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022366163] [to:+16466998127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122125395] [to:+14243361704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786839] [to:17073621123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786839] [to:17073621123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786839] [to:17073621123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358305079] [to:+14353391601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149475446] [to:+16475569918] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14237777842] [to:14237731463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133568194] [to:+16178619678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174539281] [to:+19148812082] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312728298] [to:+18316107671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156308976] [to:+19148812959] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916097] [to:12899195486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:17603492208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009335] [to:19028402398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873272412] [to:14163203924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034486036] [to:+15103228952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325273813] [to:18489928447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390417] [to:14185503432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033349441] [to:+16612285595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408365] [to:14232158220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157098] [to:18596619358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995566] [to:12706254110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419602] [to:18083712476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070353] [to:12607061608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566771182] [to:+19725346680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13103658168] [to:+12135455228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045012037] [to:+13866012796] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155416] [to:15183800638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184361024] [to:+15817012439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:13182285839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365016391] [to:+13477145160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179192220] [to:+13478082069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018235] [to:13865034091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760968] [to:12566069606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285757527] [to:+19177739882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593956] [to:15703570508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122412685] [to:+13479373273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139189607] [to:+16129305604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:15752242379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070353] [to:12607061608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:17785878066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13362907193] [to:13369548051] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:16627750133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398233936] [to:+13214067248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991508] [to:12405850128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363653632] [to:+13364500944] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122412685] [to:+13479373273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+12086202624] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306950] [to:18163848024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508069548] [to:+15817040494] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995575] [to:18642015532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-21 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026697106] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704050210] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727161] [to:12488302472] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17703634852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19045053305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225857] [to:13372077694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225857] [to:13372077694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19024031522] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153695405] [to:+19142817241] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076137973] [to:+19543142094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-21 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052753043] [to:+18053943010] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003560202] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436242954] [to:+14433453595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0301] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436242954] [to:+14433453595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031B0303] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052753043] [to:+18053943010] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003560201] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929426] [to:13062501823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-21 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037023650] [to:+19783231954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048896314] [to:+15617665916] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109789261] [to:+14696292721] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363027171] [to:+13369381984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376182400] [to:+12133550105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176451728] [to:+18572404145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179239] [to:12767320118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581337] [to:16787793896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057833650] [to:+16474982779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024739763] [to:+19027046352] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192126619] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132206950] [to:+18133088610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057055032] [to:+15052572594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018048198] [to:+12026090142] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734627799] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857829] [to:14434046388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196219193] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262011663] [to:+17053029735] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419602] [to:18083712476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:16786826753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022371516] [to:+18077883185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516303] [to:19199287317] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314013] [to:12512073524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632398] [to:+16139097163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056500069] [to:+19382385018] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632398] [to:+16139097163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422130] [to:18324888716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704945546] [to:+15703973518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136685053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:12297983187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136579083] [to:+13479804016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801715721959] [to:+14706734411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102265] [to:18598163201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19157275406] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666157] [to:17085518375] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19157030615] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586608] [to:12692015328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073462120] [to:+12139927647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058406] [to:19027511076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058406] [to:19027511076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:18035537324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15136962152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619694] [to:17813092365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17023430844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527239079] [to:+13476677407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262202486] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473617634] [to:+16466876380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138347908] [to:+13478020354] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545899656] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142165340] [to:+16149180276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12672302919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057374489] [to:+19172660155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018982] [to:18023237021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545899656] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057374489] [to:+19172660155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340968] [to:13368759078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282156581] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845461661] [to:+14846339277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035071942] [to:+13477145618] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173833642] [to:+13859851230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:19172262945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044541497] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603287] [to:19063228266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897751866] [to:+12894600983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092817200] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849353] [to:12526196095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784811661] [to:+16784348597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388221032] [to:+14387924456] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15012436773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012648] [to:13866032987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232679] [to:14038369245] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073312156] [to:+13479543976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144747205] [to:+18458181056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16192046365] [to:+12132957696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911730] [to:17186195408] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190561] [to:16163899916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818169] [to:19142589667] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364849] [to:+15109486186] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822128] [to:13216950008] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014794258] [to:19737895064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921786] [to:19176515319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702944040] [to:+14845363323] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:18325408389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476670104] [to:15188191030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188026973] [to:+15817014893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149676387] [to:+14388072409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147541410] [to:+14387920216] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319241] [to:16464003559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678880172] [to:17059172489] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064833625] [to:+19148608093] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727802] [to:13604704425] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727802] [to:13604704425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044052849] [to:+16784338170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150248820323] [to:+15169267023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727802] [to:13604704425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402870911] [to:+12342312551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144912552] [to:+14692058705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19018598533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897098] [to:17174142753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475149] [to:15108834702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626004657] [to:+17344365453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043459584] [to:+18038519308] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313076578] [to:+16313867646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132364] [to:16035098602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646435212] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796170] [to:18122098039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106918682] [to:+19194158126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176341698] [to:+19142815269] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594369545] [to:+14158536821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093049057] [to:+13478084601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752683878] [to:+15058006635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672699789] [to:+12156667437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024989887] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577423152] [to:+19148252122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891637] [to:+19175995918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374642] [to:13302179005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681672] [to:14076806461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349650] [to:14232484945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355355] [to:12606245272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093547310] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179192220] [to:+13478082069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658506144] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:19015814838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479429689] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772310] [to:+15865748754] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13473390594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076137973] [to:+19543142094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436122] [to:12817438310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498772408] [to:+17053001438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133346461] [to:+13436001559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416619185] [to:+13478999339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048882222] [to:+14043900637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195244758] [to:+19199161653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148339203] [to:+14502320133] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016035465] [to:+14696433711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153720394] [to:+19148468283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967169] [to:19313383917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18632070960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288178227] [to:+18285486367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165723173] [to:+17072427797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-21 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605185] [to:+447792023874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053160] [to:13054168812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-21 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296992087] [to:+14782397113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:18036142819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375646] [to:12695895918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:14787033715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475763406] [to:+17185042100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596404874] [to:+13478969560] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315693] [to:15178616251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026579174] [to:+12026609497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044101619] [to:+18583605269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390417] [to:14185570868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134787824] [to:14702221731] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855633745] [to:+15852822822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13023445421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147025992] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439832454] [to:+14108884760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445145] [to:19014685475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035982] [to:15309908155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147369801] [to:+17408798858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177230125] [to:+19142817580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029211556] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142345251] [to:+15169267695] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313067399] [to:+17162792790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793533708] [to:+14155698309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152301148] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003150201] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253855496] [to:+14073371708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166593612] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478523029] [to:+15612407739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043007350] [to:+13054174721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+15817005356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142891021] [to:+17607013071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369293440] [to:+17605897711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892007806] [to:+12897805325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592577650] [to:+15592239417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056831574] [to:+14156499878] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133407387] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022332792] [to:+19148291293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436242954] [to:+14433453595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0302] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178802674] [to:+19142815611] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802327418] [to:+14158258194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044033129] [to:+13052036900] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697034076] [to:+17042280709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596449] [to:17655888938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053402259] [to:+13217309779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026772759] [to:+14242842803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500488] [to:13368752101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876387] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17135823065] [to:+17189629215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040651] [to:+13479544339] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013153721] [to:+16784348354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622356222] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439118] [to:18609780700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-20 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520626643] [to:+447596432668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046213921] [to:+17728004705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064577341] [to:+14156491327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069411451] [to:+14703336211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192706021] [to:+12262416902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865749] [to:+14696293934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165667232] [to:+16163239003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410521] [to:17049291164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003634] [to:19547073462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995804] [to:13473590150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673617] [to:13022426145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481442] [to:16083591745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313611] [to:18285828161] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527239079] [to:+13476677407] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658506144] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193403885] [to:+19199161817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475446554] [to:+16474941995] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547083410] [to:+19543144206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739882] [to:19285757527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844375] [to:+19709996038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096400987] [to:+15068036437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481416] [to:17249686501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775402] [to:13046199357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19713005847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12672302919] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19152565159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16479649122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779563] [to:+14242768620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179537] [to:13013286556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062620499] [to:+15068045486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951716] [to:16472858749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676736] [to:19378698361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012439] [to:14184361024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135275800] [to:+18134302556] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985467] [to:13056137113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102090311] [to:+16105718386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12526190219] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524545096] [to:+16513337048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12048942036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033898457] [to:+16137014521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155606340] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:12564054304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749106] [to:13213562102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069909796] [to:+14706730689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15857525001] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15614201809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093391] [to:18192103932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844375] [to:+19709996038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474941122] [to:16477024725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885478] [to:12405870051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885478] [to:12405870051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885478] [to:12405870051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003928] [to:17793020334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:16064075331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737287] [to:15743540792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985308] [to:12673563047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038877] [to:15713312491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096838764] [to:+17097004837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737287] [to:15743540792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246334] [to:19139123328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009407] [to:13174809278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705067623] [to:+17729797332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029525] [to:13523167983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035268] [to:17138536006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817019743] [to:15813093013] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-20 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393943] [to:15203140944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163662929] [to:+13064003148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463634695] [to:+14018677632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173833642] [to:+13859851230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:16196219193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893322474] [to:+18106414119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085165132] [to:+13476675037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844375] [to:+19709996038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145238] [to:16148323242] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702889366] [to:+17077507973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:16786826753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030979] [to:12508572363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072217] [to:19194081047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072217] [to:19194081047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668841] [to:12402372560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605251407] [to:+17816138564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677088] [to:15704451436] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:19015814838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899773] [to:18605083196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475149] [to:15108834702] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405992] [to:12896810376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15032690424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552245] [to:18638777370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231954] [to:16037023650] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314331732] [to:+16317707889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162476276] [to:+12085012509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:16143988147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329492570] [to:+16109101010] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126674] [to:18565007874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402049] [to:18134535846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188191030] [to:+13476670104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449068] [to:+17273629381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402049] [to:18134535846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089967473] [to:+12085157848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788145] [to:16014551872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:14182918680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468283] [to:13153720394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154251503] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149296531] [to:+14387921486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187174745] [to:+13866284125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193796790] [to:+13479788089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318965233] [to:+19312577960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505900022] [to:+18503293991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248337661] [to:+17248032617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388287178] [to:+14388077826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629491569] [to:+16106999943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656376204] [to:+14155493967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055143583] [to:+14703335067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381790] [to:12768065885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165547569] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202548038] [to:+17205028352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449068] [to:+17273629381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481131] [to:15055449502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137689932] [to:+15087884625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148130076] [to:+17736667474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298337] [to:19372728999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614018638] [to:+16612287486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192965379] [to:+15672057151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024482191] [to:+14318003788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:17346428241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642443] [to:19206649347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981896] [to:15138159707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053929552] [to:+17185044190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699086638] [to:+12692207064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479653554] [to:+19738147984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016037351] [to:+18046244135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344366646] [to:17347727286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132206950] [to:+18133088610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025533767] [to:+15203376187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076806461] [to:+14072681672] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272804765] [to:+18506315325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040494] [to:14508069548] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030986] [to:12027666011] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273084721] [to:+19148988261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18137209924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199755449] [to:+13122754397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066639092] [to:+15068041533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199848347] [to:+17185212271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062737608] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527239079] [to:+13476677407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847355722] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108101988] [to:+14022060621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594863] [to:17788089767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358301052] [to:+14353391601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365403] [to:14048015396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390417] [to:14188174416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477019474] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18164197261] [to:+16465139617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:16013410056] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045317039] [to:+15103135957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034462954] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134755028] [to:+13479977446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18164197261] [to:+16465139617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109544725] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072167992] [to:+19782169348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318965233] [to:+19312577960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819108616] [to:+18328041959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062257983] [to:+12135297705] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045997016] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407366] [to:18438040986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407366] [to:18438040986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14507743019] [to:+14388071706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046292158] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053058] [to:13302988265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506130473] [to:+14388076080] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162392344] [to:+13303567604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573032791] [to:+19176635266] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767449] [to:14193864874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:18286341003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805236815] [to:+16475039411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394405] [to:12162131090] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165823536] [to:+16319800398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15304926705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026327408] [to:+13024002648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:12624983041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+14088683465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-20 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142249236] [to:+18194140051] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025385101] [to:+14158530684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768104] [to:17346809919] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096621069] [to:+19092931182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562263332] [to:+14694237806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12144377652] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466696824] [to:+16466876505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010555] [to:14189972546] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-21 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123758131] [to:+19715123774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235889203] [to:+14155698735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526196095] [to:+17636849353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912745] [to:14163339844] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072094015] [to:+14502339380] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088438912] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525489398] [to:+15103228094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17093301425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220200] [to:19147551125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605569143] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023993276] [to:+17036466896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706165190] [to:+14049002714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562263332] [to:+14694237806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:14196311887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011213541494715] [to:+17279353434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163175700] [to:+12162396694] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690373] [to:13136763495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046352] [to:19024739763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019384336] [to:+19148486483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194158126] [to:19105842678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179164] [to:15305548064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474073950] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690373] [to:13136763495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044931329] [to:+13477869011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028291264] [to:+19148208756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:12297983187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046119] [to:19023490021] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-20 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643109348] [to:+17279165346] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444603] [to:14126809382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894449832] [to:+19894020045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479017974] [to:+12019480175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-21 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149296531] [to:+14387921486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955878] [to:17866410456] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405368] [to:19096765584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:15702058402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852133] [to:14052150687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139352294] [to:18593537177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639243] [to:18628995941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126809382] [to:+12678444603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12674441461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16104068032] [to:+17027478258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706181777] [to:+14308088086] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:15192126619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995853] [to:19518786247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043458] [to:19022371776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940591] [to:16042170120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768508] [to:15044955572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220484] [to:18133126754] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237731463] [to:+14237777842] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15019600774] [to:+16572211789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991407] [to:+12139354123] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185894756] [to:+14502338307] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472338566] [to:+16474953739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450974] [to:19104092646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415309365] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129327924] [to:+13479131354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600983] [to:12897751866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866284125] [to:13187174745] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-21 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215360473] [to:+13219269322] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506782898] [to:+14506393032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026780] [to:16062350022] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141435] [to:18192150964] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346809919] [to:+14197768104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164463284] [to:+16163266402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:15125400439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184804] [to:18169201381] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077085470] [to:+16474942744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149169769] [to:16039217973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199960841] [to:+12262407268] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104043723] [to:+18102218447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+14153227988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246995090] [to:+19193072847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989652] [to:17194397061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17869305433] [to:+17866515751] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13045946178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:13185198743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:15195056879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135046] [to:14806211211] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E20201] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550701] [to:15133538581] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388858299] [to:+14388078722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026690617] [to:+13019094073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127051] [to:18013315816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029177090] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132927510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371708] [to:12253855496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20202] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:13018048198] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864545158] [to:+17702005170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594369545] [to:+14158536821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164190] [to:16467175982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354428] [to:14124037991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997370] [to:12896818125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624874] [to:12096665055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624874] [to:12096665055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736831497] [to:+12137978349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195279700] [to:+19193240575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182285839] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109138235] [to:+14433453887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:14125202212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046119] [to:19023490021] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034397481] [to:+17077236567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865870820] [to:+19548379923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377187793] [to:+15108538047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674444050] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19545313866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:14792564065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058224852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843979247] [to:14844260438] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843979247] [to:14844260438] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092331] [to:19803181549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991491] [to:14439831344] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973415] [to:15705071536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067478504] [to:+12536423566] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169267381] [to:18044955528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361378] [to:12762987718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:12404470102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232158220] [to:+15612408365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733182] [to:17065646385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19152457507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398222453] [to:+17864804623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493258] [to:18633323767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318843162] [to:+12315987439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065739527] [to:+17625859151] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594160051] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525650] [to:17173164181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368752101] [to:+13364500488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-20 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451211332] [to:+447432011735] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161867] [to:15138335098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302861] [to:15168088035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16125599682] [to:+16129305847] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13217477363] [to:+13025958421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369200] [to:12539616204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060621] [to:16108101988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606245272] [to:+12606355355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239126] [to:17204160576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028131167] [to:+14434530407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282156581] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-20 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003940301] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-20 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003940302] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169302126] [to:+17162793442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17868594721] [to:+17864801591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149787374] [to:+14387928127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109051246] [to:+14437201492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637056] [to:+12137978857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783341905] [to:+12138029590] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137181144] [to:+18458181239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609419] [to:12023512698] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362597906] [to:+17278600141] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145319626] [to:+18572329854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396183] [to:18003043107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370781] [to:13309848559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246815626] [to:+14122301956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340501] [to:14345473564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483185543] [to:+12483282284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:16316185618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786985811] [to:+16784338556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107879729] [to:+15129524199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485870] [to:18502106965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043522178] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606271414] [to:+13476675154] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318965233] [to:+19312577960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028184076] [to:+19027021926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525675183] [to:+12133756943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218136] [to:13022938908] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797026] [to:15402064151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155400072] [to:+12626482538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:18484699172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-21 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003940303] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004325] [to:14146409318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836143] [to:12673779741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:19787671171] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997370] [to:12896818125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722607734] [to:+15617664206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155731049] [to:+16156147432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167238819] [to:15168068113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186833581] [to:+18572400584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475446554] [to:+16474941995] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833701] [to:14093381069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155449114] [to:+12627778189] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801749701527] [to:+19018422553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051002] [to:19035306969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187174745] [to:+13866284125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-20 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447577995319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156567] [to:19194408770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777057] [to:14194900705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059628990] [to:+12892756995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095323322] [to:+16095434556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293083646] [to:+13072137532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003890201] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500034B0201] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500034B0202] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145610064] [to:+18722258796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185894756] [to:+14502338307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690284] [to:12892741885] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188518008] [to:+17249939181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406222657] [to:+14403594754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034232] [to:18322315345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293083646] [to:+13072137532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890202] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19897804417] [to:+19894557029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052450] [to:19039268925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912745] [to:14163339844] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715023583] [to:+15713273942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003928] [to:17793020334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049080529] [to:+14844893346] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184804] [to:18169201381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014685475] [to:+19014445145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593961382] [to:+12138063687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418429] [to:17702867403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025808454] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288686] [to:15206687386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036437] [to:17096400987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812741] [to:12405007005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196358249] [to:+12132950379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164190] [to:16467175982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073704] [to:18196686132] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014069] [to:14137689670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491516] [to:19568987036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862580] [to:12708508473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074320495] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479757329] [to:+16304893470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715463] [to:14138835916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13139578555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068008649] [to:+15068039662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031F0201] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232337] [to:14127356792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19415656265] [to:+17126428292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367444133] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056020225] [to:+18053666729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512371857] [to:+12132955682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126809382] [to:+12678444603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145735165] [to:+19414173077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948230] [to:17343955970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15307188470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249686501] [to:+19705481416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162581989] [to:+12264551200] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790961] [to:17169069455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981896] [to:15138159707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474073950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055714543] [to:+17053006015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500033F0201] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787183623] [to:+18572329562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138097] [to:15148350490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0202] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500033F0202] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782442634] [to:+14706733898] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192819] [to:13367697377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16306491189] [to:+17736667534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782861539] [to:+15614916182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17743570393] [to:19018302409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193864874] [to:+14197767449] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151509] [to:18026730565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137046470] [to:+14197767721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558101] [to:593998294776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141731] [to:18192663240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-21 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233981] [to:+447940715468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946451] [to:19044363828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14032008283] [to:+15873280484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587756] [to:15138074764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+14153227988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039902] [to:15065435714] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095569243] [to:+17604746243] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969307] [to:12055853926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228825] [to:+12262414729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031653] [to:19027542344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126501234] [to:+13479319363] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191080] [to:14199302036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154363546] [to:+12138026906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544262] [to:17173332002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033610521] [to:+13478966271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705943996] [to:+15703974172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-21 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228825] [to:+12262414729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206365] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472294417] [to:+16474937887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304817271] [to:+13302370835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001438] [to:12498772408] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564187365] [to:+18563125321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564187365] [to:+18563125321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:13476337912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168565542] [to:+13479978984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862223610] [to:+15865748339] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037909] [to:18147622621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072710226] [to:+12816433324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168565542] [to:+13479978984] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991960] [to:18432742157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157962265] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15594160051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874704] [to:17655064143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570155] [to:15197197743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137767] [to:13375166600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348058162012] [to:+15874006157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031C0201] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024739763] [to:+19027046352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639243] [to:18155492152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679829985] [to:+12676860698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164489431] [to:+15169260170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413916205] [to:+15412488820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027609712] [to:+12029991594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151509] [to:18026730565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500039F0201] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133555402] [to:+16139096988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628377] [to:19786881955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195048081] [to:+16412432465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886799] [to:+19149798145] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672287800] [to:+12155961015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196219193] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088602] [to:12673530753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14165547569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-21 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-20 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447763356061] [to:+447520627250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948145] [to:16169029169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703216242] [to:+16466999825] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306212674] [to:+12342315752] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475501848] [to:+13437001972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122953105] [to:+14122302146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376214096] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742842961] [to:+13479067271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348058162012] [to:+15874006157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031C0202] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144106] [to:18038257445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302419] [to:18135625054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025385101] [to:+14158530684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783681924] [to:+12133756938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039991717] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403579902] [to:+17409102301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863924] [to:16469421894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151548] [to:15185728781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029946822] [to:+17607013424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500039F0202] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097433788] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:18609978853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-20 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320352] [to:+447946591836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-20 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320352] [to:+447946591836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056046941] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612100957] [to:+17277679122] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981673] [to:15182250160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158851362] [to:+14153260100] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574242] [to:13045797941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800164] [to:13169900153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473785] [to:16155713299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401227] [to:17162809475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402049] [to:18134535846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036690562] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806691429] [to:+19512281313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414511147] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162392344] [to:+13303567604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162392344] [to:+13303567604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045239] [to:16478646909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354428] [to:14124037991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865874] [to:12673537407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698735] [to:14235889203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177067649] [to:16178512983] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019184905] [to:16068312971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328595137] [to:+17133099109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362539856] [to:+13364500488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324913029] [to:+18639491238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13046693616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196541941] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18137859522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792188086] [to:+18324103005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671284] [to:12299770399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047813665] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368752101] [to:+13364500488] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-21 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299390443] [to:+12136163363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995566] [to:12706011833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001438] [to:12498772408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043600014] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19034616860] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146579381] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372544] [to:19109757731] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372544] [to:19109757731] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269943] [to:16166387097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437588083] [to:+13479130028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205620] [to:14439737568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477791548] [to:+16474989742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406180377] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134418813] [to:+14136854992] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0202] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500030F0201] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-20 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16627521870] [to:+14027694379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334217] [to:17064610694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789493238] [to:+14043900800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243442] [to:18044411769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15594160051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012379679] [to:+12405732118] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997370] [to:12896818125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024739763] [to:+19027046352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995575] [to:18646435212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536422764] [to:13608104225] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694351876] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015327319] [to:+14437205727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136762523] [to:+18327774567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185308821] [to:+13478083047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361378] [to:12762987718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040318] [to:+15103403172] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950013] [to:16472968765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895876] [to:12037100662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158008854] [to:+19292209653] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19034616860] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370642] [to:18287883012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867959387] [to:+15103405091] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000622] [to:17097437806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143505483] [to:+17142153047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743472] [to:16789015405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13023993500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637858] [to:17204256319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477132406] [to:+13478303293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089017331] [to:+19175808856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:16472338566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768104] [to:17346809919] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12263485291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045239] [to:16478646909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893833349] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008196] [to:16023730391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505171442] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363409674] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13395459601] [to:18282801625] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862178747] [to:+13052038708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427731] [to:13604864958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018014183] [to:+19018428106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028567] [to:+12267982318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107258875] [to:+16177065562] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312419607] [to:+19312577530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162300139] [to:+19712611143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002648] [to:13026327408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-21 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154423] [to:+16319800609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632347777] [to:+18637347510] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018014183] [to:+19018428106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175797584] [to:+13476675405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010106] [to:13205237496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179325749] [to:+17185044003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536422764] [to:13608104225] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048033459] [to:+16042651839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173371316] [to:+17185043734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200259] [to:16787538120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:14783572402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732003] [to:16313554367] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664206] [to:17722607734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888277] [to:18432679828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018014183] [to:+19018428106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022755125] [to:+15088343288] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19289234769] [to:+19282976024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755891] [to:17154172359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035537324] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968897] [to:17183081070] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743987440] [to:+17604745441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726249010] [to:+14696725966] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14047889224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886397] [to:14406628107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089738179] [to:+19172668408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197640] [to:19123194520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732003] [to:16313554367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19158502266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515266] [to:12392468252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058301543] [to:+17279987054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774175] [to:13472808490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734190] [to:14047719371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:15195056879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875647541] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087232613] [to:+13059014525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078735220] [to:+13219998276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107258875] [to:+16177065562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019277] [to:17784015340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168226959] [to:+15068009288] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12157962265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737154084] [to:+18724449567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248337661] [to:+17248032617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163203924] [to:+15873272412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14387643323] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018976] [to:19152580796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822452] [to:17165603377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774175] [to:13472808490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692351114] [to:+12694611268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331523] [to:+12139298798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063992968] [to:+16516664751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692252597] [to:15706406741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:15023875985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900139] [to:14043265508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632412060] [to:+18639493274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193628863] [to:16196211024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528951203] [to:+13478961564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078806798] [to:+17073464562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328579305] [to:+19513070656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493967] [to:17656376204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13364864294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477171843] [to:+16475037670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528951203] [to:+13478961564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027026814] [to:+13019179939] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146257539] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479481] [to:18455703692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842745746] [to:+18623082152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-20 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432665580] [to:+447520622789] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862816] [to:16108095698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179626054] [to:+15862488047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:16025090085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18288178227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:14352332191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198067490] [to:+12262410233] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951736] [to:16479074537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951736] [to:16479074537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479686] [to:13476593122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610859] [to:19178643638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:15166593612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435409863] [to:+18438720710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838423] [to:15107768053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838423] [to:15107768053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132004289] [to:+19148818316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140051] [to:15142249236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817739286] [to:+18326509659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064694596] [to:+15874005777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103364651] [to:+18103393252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706270021] [to:+17605896539] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402212336] [to:+17408796733] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324913029] [to:+18639491238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016017405] [to:+15084168729] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405041190] [to:+17408797591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228980] [to:+12262410722] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19014513437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302179005] [to:+13302374642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185089429] [to:+15817040417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144792334] [to:+19529778850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403570149] [to:+17408798133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263479304] [to:+12262407966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564057439] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752242379] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048942036] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162882576] [to:+17166661183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024803969] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045053305] [to:+13219993439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035606373] [to:+15873322839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076598572] [to:+14158907499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479757329] [to:+16304893470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038579248] [to:+19715129905] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407274266] [to:+17409101877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036232163] [to:+13478083006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076598572] [to:+14158907499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655064143] [to:+12135874704] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14788411616] [to:+13478303915] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025449802] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893321217] [to:+13473897188] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016017405] [to:+15084168729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18129897737] [to:+18126709094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023593144] [to:+16162390214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199015115] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216465] [to:18324700747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647049893] [to:+16783941438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16416805776] [to:+16418437934] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049056909] [to:+17047505772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-20 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003630202] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:16035661725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547083410] [to:+19543144206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096075278] [to:+15096519264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679122] [to:16612100957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842745746] [to:+18623082152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037963] [to:16074277611] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195930514] [to:+18193039778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185308821] [to:+13478083047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609978853] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734627799] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010240] [to:12524699137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144322] [to:+12135874232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043224217] [to:+13479971776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197223799] [to:+14197316149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430883] [to:14193075169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862858290] [to:+13059014057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:15715023583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094587752] [to:+13312087203] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615432301] [to:+19172668748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062611259] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024351842] [to:+14156918952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032039362] [to:+18175921246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042831027] [to:+19178093952] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797644] [to:17403198857] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096296] [to:18193607677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646345250] [to:+17727740656] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190023] [to:16162942798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498772408] [to:+17053001438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767337157] [to:+13479801578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187036] [to:12105191443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074480876] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743512] [to:13139262959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833701] [to:14097249939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985245] [to:19738889695] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163203924] [to:+15873272412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985245] [to:19738889695] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985245] [to:19738889695] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149724698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032713525] [to:+15129527822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785700121] [to:+19172592879] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:13472286480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14383464988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152301148] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185728781] [to:+15184151548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789144710] [to:+13479193437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062345670] [to:+17073007351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164051759] [to:+19149027453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159458403] [to:+12139926409] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15207882230] [to:+16236664648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045704302] [to:+18046650539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14437591538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-20 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159458403] [to:+12139926409] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046547848] [to:+13476674011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425810] [to:13869837924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593587700] [to:+16467389396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:17049634700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159458403] [to:+12139926409] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786990] [to:13015731038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072218527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329854] [to:16145319626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567014245] [to:+12628005452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-20 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705380] [to:16317667449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411507] [to:12036429642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988918] [to:17176599000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610859] [to:19172502531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600674] [to:12396035622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142904349] [to:+17408796865] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053949556] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156310534] [to:+19318968162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096296] [to:18193607677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953406] [to:14189554499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953406] [to:14189554499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017571004] [to:+14243361810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-10 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523676321] [to:+12136946581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:12038079073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085385] [to:13042100651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812741] [to:12405007005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839639] [to:19105384960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415309365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:13059785955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16305994982] [to:16302583787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542164573] [to:+18572191863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13062211546] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084601] [to:16093049057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13138264243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-21 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703452513] [to:+12139359332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:19372603770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043002470] [to:+18046245528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786990] [to:13015731038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001788] [to:16476203683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708401878] [to:+15703973427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043493225] [to:+19047587899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467175982] [to:+19199164190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333801] [to:18194313155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096400987] [to:+15068036437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627326] [to:16073424038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132807250] [to:+15612404875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500030D0201] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243162] [to:18047670963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026772759] [to:+14242842803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049665799] [to:+13052037931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038235022] [to:+13475088486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856890672] [to:+15852825016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014094] [to:13177906180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14199755449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998151] [to:12527147304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815702] [to:13373315833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997796] [to:18644919517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692091576] [to:+16694002307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067129] [to:13213170858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094337] [to:12405439372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162021994] [to:+18458181060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309805] [to:13219462118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025948991] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003270302] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003270303] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232152365] [to:+14152377880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148927516] [to:+14388072636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594942384] [to:+18597777342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863498102] [to:+17864801399] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13127351553] [to:+18477561860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159544237] [to:+12674140824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661361] [to:15173669382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542164573] [to:+18572191863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14032008283] [to:+15873280484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437818273] [to:+13473439820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13023638165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018235] [to:13865034091] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243499485] [to:+15209996955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737287] [to:15742022395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364804] [to:+13203075233] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132807250] [to:+15612404875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030D0202] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376228530] [to:+17604747396] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853869261] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979249] [to:+14842522504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145855378] [to:+19177374766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656376204] [to:+14155493967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13134711779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146419750] [to:+18328044662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412090] [to:15195502740] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927018] [to:12403544403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370803] [to:19124258290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089540211] [to:+14426007629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732003] [to:16313554367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438398787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029561277] [to:+19027043619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803949309] [to:+16474937035] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797563] [to:16097092146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:16036748012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903385] [to:18016873271] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154605476] [to:+13476677996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:16786826753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485062878] [to:+14357764214] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837899] [to:19106357939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702867403] [to:+19298418429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478677617] [to:+13479749363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+13853361901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266481] [to:15672424117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564054304] [to:+17726179181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695981] [to:+19715128808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506106] [to:14194807138] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:19736870717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197197743] [to:+12264570155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048842] [to:18604622066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609497] [to:12026579174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037316668] [to:+18572327502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593541] [to:14345790411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348058162012] [to:+15874006157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962864] [to:17036222795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068009288] [to:14168226959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15099895547] [to:+15092828506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046171335] [to:+16474955528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163891] [to:13049210733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052205964] [to:+12262416114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020294] [to:19892056932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043002470] [to:+18046245528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036690562] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866284125] [to:13187174745] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358113] [to:13304669261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218447] [to:18104043723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751580] [to:19184309525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419740] [to:12702141311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370164] [to:12566903190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437602887] [to:+12135878944] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027893605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604078380] [to:+12604076707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548592] [to:16174138533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192121344] [to:+14197767486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562881299] [to:+18569550282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535082] [to:16622957420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833679] [to:14096564857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535381] [to:17732207153] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209605604] [to:+14242835718] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535381] [to:17732207153] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449156] [to:+17727747348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17343955970] [to:+16167948230] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236151234] [to:+19175804241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408173923] [to:+17089612911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-20 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142904349] [to:+17408796865] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014094] [to:13177906180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237590106] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235889203] [to:+14155698735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132807250] [to:+15612404875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13306801487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:12038079073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977228] [to:15702445755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:15023875985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066086618] [to:+15068045309] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-20 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447919970510] [to:+447418333947] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134616] [to:+15799770358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785656383] [to:+12132952449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17056266855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515544632] [to:+19542718559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129527822] [to:18032713525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16187078427] [to:+13476969040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162332] [to:19196416348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609978853] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364554] [to:+12243104359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969308] [to:15738372782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403815129] [to:+13012311295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718062] [to:14846640033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-21 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187036] [to:12105191443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139095] [to:16623749045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406463037] [to:+15109480320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862337079] [to:+13867422374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16177355446] [to:+16178634327] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374642] [to:13302179005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472320748] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064926] [to:17039947119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19029211556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14028803315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033895920] [to:+16474951782] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196303050] [to:+19199161012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302839] [to:14128774139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144912552] [to:+14692058705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883765] [to:15305927629] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883765] [to:15305927629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064220] [to:19123816387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403726530] [to:+12026609910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14043600014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844797659] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148940625] [to:+15817003075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691249] [to:13159452012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196470] [to:12297980966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695895918] [to:+12485375646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196303050] [to:+19199161012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:12017136786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147163] [to:19893591804] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:15879661413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:15879661413] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148252747] [to:17577273845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026327408] [to:+13024002648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039F0201] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155731049] [to:+16156147432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:15414184495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:1843096169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603287] [to:19063228266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500039F0202] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789862] [to:15592747030] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129863] [to:15415107858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044887751] [to:+14049004131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178616251] [to:+15863315693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138097] [to:15148350490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14438252749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725178] [to:18108450471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725178] [to:18108450471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676945386] [to:+12677988803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066396263] [to:+15068039670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459702] [to:19374891405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525650] [to:17175214401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316244] [to:14192706072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990556] [to:12163966733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746243] [to:16095569243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725178] [to:18108450471] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661926] [to:14435296099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165197687] [to:15165920131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166593612] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652409541] [to:+18572400870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228823] [to:16143778052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077541395] [to:+13477962452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018499048] [to:18017927627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18632296808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708268341] [to:+13479190757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026772759] [to:+14242842803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15206311287] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056328982] [to:+13218328096] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287021780] [to:+18285486155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:19313371219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046620733] [to:+13479787116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065692] [to:18137651761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197640] [to:19123194520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606905610] [to:+19298413259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059060759] [to:+12262436839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17408796728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15206311287] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162627425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173321781] [to:+17659869250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175869438] [to:+13479376267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372419520] [to:+12133773185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538385] [to:12406267868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17869427301] [to:+17864802258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237590106] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676570] [to:13026026046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037931] [to:14049665799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300303] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144448615] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543933194] [to:+19543142739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13366136840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643089711] [to:+18649995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001772] [to:13059751656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072218527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163709] [to:14074868858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-21 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786881955] [to:+17189628377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14345473564] [to:+14342340501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407229] [to:18452004834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036437] [to:17096400987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179375] [to:+13479478247] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:12035929776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162968275] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089868482] [to:+17636346377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135064325] [to:+18133205860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:12766204045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789015405] [to:+17604743472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16104137050] [to:+14436813504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168592045] [to:+15169341282] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144206] [to:19547083410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065590442] [to:+13203737767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037A0301] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784967057] [to:17622099493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786476] [to:17659930251] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973914] [to:17173836145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313554367] [to:+16317732003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065590442] [to:+13203737767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037A0302] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065590442] [to:+13203737767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037A0303] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196470] [to:12296690599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036896021] [to:+17812621846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-20 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194807138] [to:+15672506106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124818076] [to:+19122084341] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138363] [to:17708371223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334477] [to:18127187555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623219949] [to:+19178777716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439179780] [to:+12133773130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074480876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080400860301] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703641147] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022600] [to:+19709997818] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159451402] [to:+13476303528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953279] [to:18768569131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581395] [to:19044052412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179010378] [to:+17605736029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098915] [to:17606600860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12539616204] [to:+12533369200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080400860302] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813330684] [to:+16474919067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:16156782362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309424709] [to:+12342312293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425737] [to:12016445211] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055866567] [to:+17864802873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076249071] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033610521] [to:+13478966271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576962614] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080400860303] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795734] [to:14788324181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594513] [to:16623038373] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577688] [to:19314503335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097267800] [to:+12138613875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:16789493238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976463] [to:18164683836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497888] [to:19705844179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-21 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447500177717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192400330] [to:+12262407471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124967749] [to:+15129523826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-20 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176508216] [to:+19177329778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15016502039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:12038953440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046693616] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144373555] [to:+16139096612] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-21 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609497] [to:12026579174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778622] [to:13474479196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404975367] [to:+17402017970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377186573] [to:+13214067376] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15016502039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709453357] [to:+19705500289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204256319] [to:+17204637858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052028682] [to:+17542003689] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220573] [to:18455147677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357762463] [to:14357107685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-20 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944588] [to:16069224147] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969307] [to:12055853926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13062211546] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466635312] [to:+17144554626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622392784] [to:+14158253095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172262945] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401589] [to:15055891522] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704451436] [to:+13476677088] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818316] [to:15132004289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133568194] [to:+16178619678] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449156] [to:+17727747348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:19734627799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016024909] [to:+13017786698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924173] [to:12022102089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312124278] [to:+17184169914] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362578344] [to:+13369381682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924173] [to:12022102089] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570155] [to:15197197743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139370806] [to:+12135298835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-20 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064105578] [to:+14706735651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496267] [to:16465780045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-20 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754941615] [to:+12138024785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16155498172] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408365] [to:14232158220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603578355] [to:+13474340857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209059] [to:18434057452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565571419] [to:+16465479200] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147065113] [to:+14387920529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12525584844] [to:19197252445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504310] [to:18143201547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817016678] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153908618] [to:+13473798193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644918906] [to:+16172193323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003DB0201] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15087235642] [to:+13479378190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885561] [to:13616480312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911909] [to:17276876750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916835] [to:17094647146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644918906] [to:+16172193323] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003DB0202] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-20 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738681704] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-20 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958635] [to:19104955232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405304] [to:15306912996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611611] [to:12166323512] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725672254] [to:+14022560918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862858290] [to:+13059014057] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019531785] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562672537] [to:+13478992504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168014284] [to:+17097015582] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049157640] [to:+12048086764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323770201] [to:17326107172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049405232] [to:+16784348924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363409674] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038611636] [to:+17748557040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194484006] [to:+18193039646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196470] [to:17048856177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320459] [to:12072297556] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162689638] [to:+12162396132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037023650] [to:+19783231954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214581788] [to:+13216136927] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125485523] [to:+17182558682] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869967] [to:17654144859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:15714251008] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858310193] [to:+15852823026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059785955] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574173] [to:12083163346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:12035929776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436210] [to:18128872510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963727] [to:12269273669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:12407720666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16474854669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187726718] [to:+19179772592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-21 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447810485760] [to:+447451224409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329343] [to:13478930547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803701882] [to:+15873277919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024627] [to:17048983826] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:18136797220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183007668] [to:+15187340190] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973518] [to:15704945546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15738182357] [to:15736938544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014565486] [to:+19298411558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927283] [to:15146554614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160359] [to:13867489005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015231667] [to:+14146006019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-21 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447709606494] [to:+447451218105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083177851] [to:+12087633812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16673055316] [to:+14108884988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015024183] [to:+19014445065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072409] [to:15142339633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263384221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045704302] [to:+18046650539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896699] [to:12705620938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138834538] [to:+19292688291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106188520] [to:+18103393988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467175982] [to:+19199164190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194158126] [to:19106918682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038611636] [to:+17748557040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311857] [to:+19142817867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282387488] [to:+16503377722] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16179010338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594513] [to:12283414022] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16073488381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646435212] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787901312] [to:+19782169004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435396746] [to:+13477963904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815702] [to:13376558023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744009647] [to:+14018677620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438268323] [to:+18438720795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16155498172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255342] [to:18638443593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032192303] [to:17203183209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024491428] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524391] [to:16169157669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896699] [to:12705620938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326419] [to:14349420639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628037193] [to:+19018430794] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069382656] [to:+14706734021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003220201] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:0608047B830201] -Feb 1 11:55:39 ip-10-0-0-20 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D10201] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953889] [to:17096855625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074586737] [to:+13479319374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042436759] [to:17789886224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708268341] [to:+13479190757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990556] [to:12162968275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:0608047B830202] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178177250] [to:+17187479197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154045727] [to:+19148485925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478674642] [to:+15028041612] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284045256] [to:+12677988820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148940625] [to:+15817003075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433733266] [to:+12405457893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664648] [to:15207882230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:14156400057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178643638] [to:+19172610859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:16039535036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691184] [to:12487030383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486483] [to:16019384336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:18126102907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782445068] [to:+14782397113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159543286] [to:+12677938939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736870717] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19545899656] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893152837] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209862] [to:18134557036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-21 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D10202] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14105643607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17014122234] [to:19293301880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220200] [to:19147551125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093499] [to:16462496018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449567] [to:17737154084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523427885] [to:+13478085721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043265508] [to:+14043900139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220777] [to:14842749952] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433245311] [to:+15162526929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178027939] [to:+15175691342] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438505645] [to:+12136036349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142626510] [to:+13149320402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815611] [to:19178802674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384018015] [to:+14387931066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837835] [to:16026339066] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040555] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500036A0202] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093952] [to:13042831027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611825] [to:13182103922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384018015] [to:+14387931066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434710] [to:17327622944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076313084] [to:+13479788962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709035928] [to:+19177086452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266402] [to:16164463284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196687336] [to:+18194141002] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15066261286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883765] [to:15305927629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673563047] [to:+17279985308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300886] [to:13366096662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411507] [to:12036429642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612100957] [to:+17277679122] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864667174] [to:+14696293030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018200] [to:12085016476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530684] [to:16025385101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14437846129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:12407720666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603287] [to:19063228266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725672254] [to:+14022560918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874244] [to:13043898996] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067887] [to:18632862021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246995090] [to:+19193072847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168088035] [to:+15168302861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027026] [to:16477455143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361497] [to:12538449766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172922657] [to:+12342313996] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607398857] [to:+13479976095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028305624] [to:+19027058477] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-21 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329343] [to:13478930547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073824] [to:15733808654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859310] [to:14133012995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185500523] [to:+14502323266] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139918] [to:12694558225] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196303050] [to:+19199161012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268286] [to:17172865257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124365987] [to:+19122005572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012893720] [to:+19015042657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19034138742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929426] [to:13062501823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997931] [to:12172745868] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163966733] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022333966] [to:+16475569456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043671] [to:19027540010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474731464] [to:+16474918912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607398857] [to:+13479976095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734190] [to:14047719371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-20 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143892205] [to:+17348210698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532446017] [to:17029729619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194311666] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139918] [to:12694558225] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18673222138] [to:12532344509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405091] [to:13867959387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032934] [to:13184557124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005233] [to:16184191809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345301] [to:14438059000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011213541494715] [to:+17279353434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:16474904168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-21 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15065021354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:15752242379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:14404786461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15144448615] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062298368] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637986] [to:17208391758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:14404786461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:18433096169] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220513] [to:17865129038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326669187] [to:+17604745845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473194798] [to:+14242769469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094343499] [to:+15164724184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364291] [to:+17279353219] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145855378] [to:+19177374766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024857525] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005390] [to:16785160118] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506429825] [to:+12135298835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016035465] [to:+14696433711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419549] [to:12055455522] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296690599] [to:+17278196470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306467057] [to:+14242846661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14237777842] [to:14237731463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129527399] [to:15129126734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984345] [to:17173791314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458930298] [to:+16318127442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397113] [to:12296992087] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361652] [to:12532485181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012349] [to:13862154995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:14844797659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033513047] [to:+18038518979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234430331] [to:+14156499051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004837] [to:17097497827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989855] [to:14168290234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526190219] [to:+17248032913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043812774] [to:+16474912066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235228906] [to:+13479130625] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18604613238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-20 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390064] [to:14505228920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922267] [to:18175665650] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474143570] [to:+13478303285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-20 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015496] [to:13868552000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17014122234] [to:19293301880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534307] [to:13176947025] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708268341] [to:+13479190757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014521] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603579206] [to:+12604070680] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:19042404097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:19734627799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381682] [to:13362578344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138363] [to:12398883501] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-21 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13205237496] [to:+19706010106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148932427] [to:+16149965651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477775228] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049281] [to:16202537787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059682699] [to:+16197324706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063575] [to:16062300303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13108190574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-20 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447487802961] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522103124] [to:+13867428657] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032934] [to:13184557124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-20 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046471217] [to:+18046243557] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736773] [to:13347423571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19098336905] [to:+17142153854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005390] [to:16785160118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988002] [to:17657918716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095879757] [to:+14156498228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046471217] [to:+18046243557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348071] [to:16787677018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179010378] [to:+17605736029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005099] [to:19185073415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611825] [to:13182103922] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473100] [to:18659190013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700696] [to:17049605084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563202] [to:18182820514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-11 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-20 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-20 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522553410] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447512109594] [to:+15865748015] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-20 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447563608930] [to:+447520608452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:14303427738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132758134] [to:+14132715476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449785] [to:16198615301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040290] [to:+15169269637] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659940] [to:19547933691] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397113] [to:14782445068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995392] [to:18643089711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:15742106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105817749] [to:+13369440577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944588] [to:16063698797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197640] [to:19123194520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993607] [to:16034555238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408191427] [to:+16513338790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602411933] [to:+13609494353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842745746] [to:+18623082152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003270301] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436405226] [to:+14108884230] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525930957] [to:+13214067679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170102] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134535846] [to:+18572402049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089738179] [to:+19172660262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058902579] [to:+17053028751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646176823] [to:+16783941461] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040555] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500036A0201] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482232218] [to:+17324360210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604073173] [to:+14158908082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767320118] [to:+17726179239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003220202] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522726] [to:+12693366072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513188454] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742517938] [to:+15085569327] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125202212] [to:+13133494385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106763135] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610720] [to:12039099017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693574464] [to:+12692244584] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156974070] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572354951] [to:+18046242022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649396] [to:14044380001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814685446] [to:+12138220436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646435212] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093623163] [to:+15102548822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302861] [to:15168088035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862828] [to:12142296808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:19094556145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15082711909] [to:15086414170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220777] [to:14842749952] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708051794] [to:+12136348267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17406180377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14436531995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377245] [to:12346509491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088215] [to:18155108960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859782876] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166322] [to:18284218889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13046693616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:12038953440] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702000852] [to:+14242768273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736773] [to:13347423571] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263122733] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:12704018334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140824] [to:12159544237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:19736877560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894986043] [to:16513373273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749598] [to:17155798888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313910] [to:18504192348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144106] [to:18038257445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792564065] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083257] [to:15024407707] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004253] [to:19028560383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182482] [to:17023258906] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160359] [to:13212621961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:15148260266] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:15148260266] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023150510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818316] [to:15132004289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220513] [to:15064441485] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132964820] [to:+16139122655] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158009658] [to:+13475804370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705828512] [to:+15703977397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12013743789] [to:14844264915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192965379] [to:+15672057151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029607] [to:15068560623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195930514] [to:+18193039778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566903190] [to:+19177370164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052496] [to:15127692952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799856381] [to:+12602327080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673704005] [to:+12679232854] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707145213] [to:+13867423812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433226] [to:13129781470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354483] [to:18146158905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044003] [to:19179325749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064418] [to:14056754564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201701] [to:12673255425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065848402] [to:+14692057778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199232345] [to:+18133088551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14174509614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739203] [to:18285147757] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:12296302986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217142] [to:12707248663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:19094556145] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787207] [to:18176092937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787538120] [to:+19292200259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15207882230] [to:+16236664648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058931] [to:15879918333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16472067898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-20 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447908965251] [to:+447520609347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13363409674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911730] [to:12512841521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179817] [to:12027465982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983051] [to:12267001420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600227] [to:17314467354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144106] [to:18038257445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:19736877560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253174327] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043600014] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473466] [to:18658514674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950377] [to:13155324401] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996155] [to:18285829428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040599] [to:14388285601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:19089021138] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325375883] [to:+15103131091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-20 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672170] [to:+447947561824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039857] [to:15062598297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802404010] [to:+15874096953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132075925] [to:+16137025128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:12016692803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19564143168] [to:+19292146713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047687] [to:16477925655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-20 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447704998413] [to:+447451230785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504310] [to:12672555932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:16474592315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159111] [to:13365142310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135505] [to:14084013648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479197] [to:19178177250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025357585] [to:+15084168896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14174509614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124650313] [to:+13302374631] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:15879661413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-10 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666705] [to:17133052368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755891] [to:18433250302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029072] [to:15066097812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13157345906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-10 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318307529] [to:+13478969821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-11 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:17043529092] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:17043529092] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:17043529092] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768508] [to:15044955572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:13187712503] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16164200282] [to:16162500265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:13187712503] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733781] [to:18595536479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12488546576] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12488546576] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12526462419] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12526462419] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:13022908499] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:13022908499] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479197] [to:19178177250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085104797] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937637] [to:12893397674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085104797] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778062] [to:12628086166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085689630] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137587998] [to:+18133316730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778062] [to:12628086166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17275154433] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17275154433] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-21 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539354207] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:18646303554] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:18646303554] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:19012294961] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795788] [to:17578121904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144406256] [to:+14197459813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:15107704566] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:15107704566] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17724536265] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673704005] [to:+12679232854] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527026395] [to:+14582016764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733808654] [to:+13203073824] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819839942] [to:+15817015377] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065399] [to:12527021147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632412060] [to:+18639493274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406627] [to:+18572191273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990556] [to:12163966733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17724536265] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085689630] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13205237496] [to:+19706010106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630754] [to:19285838142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977540] [to:15709834861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:18593967205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:19012294961] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619295210] [to:+15618197607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105643607] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481442] [to:16083591745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182302248] [to:+12136946718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002648] [to:13026327408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968807] [to:12893390423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044662] [to:12146419750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129126734] [to:+15129527399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043898996] [to:+14023874244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192126619] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12526190219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674444050] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074863] [to:15853074710] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057055] [to:14199677062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065526996] [to:+13067000780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166323512] [to:+18328611611] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069990559] [to:+16476915764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082090] [to:17065643091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199084917] [to:+12137978857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982600] [to:+16412432190] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:13309494907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:13309494907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179239] [to:12767320118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147498562] [to:+14692052569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:13309494907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405142] [to:12269292027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064708259] [to:+16137074565] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402066732] [to:+14406588601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170102] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503764879] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175214401] [to:+12679525650] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:18627726104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044379710] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146100] [to:18608905611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:14025948991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947937] [to:17063512758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148252617] [to:50370669479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023795771] [to:+13479804094] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236271] [to:19546631475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407720666] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296992087] [to:+14782397113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955109] [to:19373446161] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674011] [to:13049425310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764214] [to:12485062878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364500] [to:+17186755508] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029570817] [to:+19027026958] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795118] [to:12623492121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596637916] [to:15592698937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193399123] [to:+19193240433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014521] [to:14033898457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133012995] [to:+14136859310] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734603492] [to:+17185676422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179010338] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-21 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702434985] [to:+13866015464] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955109] [to:19373446161] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455147677] [to:+18456220573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020936] [to:12039571841] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219990603] [to:12083126172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127284448] [to:+14122301026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083463183] [to:+14028703448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786881955] [to:+17189628377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876796] [to:16812311139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023875985] [to:+19318968622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659190013] [to:+18653473100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381682] [to:13362578344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14788324181] [to:+19142795734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026579174] [to:+12026609497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169157669] [to:+16169524391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302146] [to:14122953105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654109482] [to:+19027043769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194027208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303533544] [to:+13476673134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046165168] [to:+13219996801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13469325076] [to:+18328043755] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-21 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023730391] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527147304] [to:+13219998151] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046697435] [to:+19785336979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194948830] [to:+16193628603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146244139] [to:+12138613753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300303] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106357939] [to:+14242837899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269273669] [to:+16474963727] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924173] [to:12022102089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:19736870717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423947] [to:12532672410] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859168] [to:14138853211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751580] [to:19188372939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889846] [to:12192291440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756435] [to:18165980754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286745549] [to:+12347556922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:12488500767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858705759] [to:+12138225617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176121117] [to:13137723765] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750785] [to:15038685546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:18622189932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977086] [to:15709032476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345319] [to:18437075181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:15124339463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220531] [to:17606906898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16306491189] [to:+17736667534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057618982] [to:+16474950422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500038F0201] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033898457] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817019743] [to:15813093013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528858189] [to:+19199162330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743471036] [to:+16307859982] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:14303427738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697447] [to:19895512166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038F0202] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094770] [to:17044534051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492144] [to:15042709619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532049130] [to:+14259392511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007629] [to:18089540211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002952] [to:14043231520] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497888] [to:19704050210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108095698] [to:+12674862816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043381335] [to:+18046245387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16608155743] [to:+14242796429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162968275] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614663590] [to:+16615334560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542288898] [to:+15129525404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044808838] [to:+19046947342] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702053124] [to:+13479218957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323180684] [to:+17328677570] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-21 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238610] [to:+447821389780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214221] [to:14013451158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049281] [to:15025148146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057618982] [to:+16474950422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045907421] [to:+12048088485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562367140] [to:+13024991380] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863283594] [to:+13053404204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610859] [to:19178643638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378899937] [to:+15028040682] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194807978] [to:17192044711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039D0201] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485596] [to:19186975243] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853638595] [to:+15852824417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041939] [to:+13436001289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445489] [to:19012826999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142585218] [to:+14388072831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122982312] [to:+14122302879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415309365] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010106] [to:13205237496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148252617] [to:50370669479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938415] [to:13615002324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:18194311666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732810942] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039D0202] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879371410] [to:+15874084326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183406631] [to:+17199991004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-20 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174708] [to:19179431775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058196170] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705717575] [to:+19703156742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623164294] [to:+13478028000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142066532] [to:13479859987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297413] [to:18645679464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596637916] [to:15592698937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479859987] [to:+19142066532] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706040564] [to:+19318967812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434092] [to:+16465648343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564089100] [to:+16466328743] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014558186] [to:+17605899346] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016037351] [to:+18046244135] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348071] [to:16787677018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:14153406100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874095894] [to:+12262430575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547083410] [to:+19543144206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237806] [to:19562263332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18723332393] [to:+18585199213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181239] [to:13137181144] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151509] [to:18026730565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157771640] [to:+13477970498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376228530] [to:+17604747396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-21 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:17706543179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042100] [to:13475763406] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963695] [to:19372381863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:14509903157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209653] [to:13158008854] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249192737] [to:+13474916344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149157671] [to:+14388085955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885561] [to:13616480312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626003745] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:18458917063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757032084] [to:+19172610625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-20 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447999584286] [to:+447418326296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813859091] [to:+16172139746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366136840] [to:+13366450997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13092263565] [to:+18729995251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602241572] [to:+12602777291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193628603] [to:16194948830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804623] [to:12398222453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528858189] [to:+19199162330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110201] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643089711] [to:+18649995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513284459] [to:+17784025376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023258906] [to:+17027182482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247813414] [to:+17142612789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475697] [to:16195048936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345319] [to:18437075181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043898996] [to:+14023874244] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602510242] [to:+19792326112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419973] [to:14783029700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028042248] [to:+16139092407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736070] [to:17063154534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185274976] [to:+14242863189] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475684] [to:+18102218517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562367140] [to:+13024991380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630754] [to:19285838142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804818] [to:17575374934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16123601762] [to:+16464179187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-21 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:FreeMsg] [to:+447451236589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786758] [to:18764308380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509819012] [to:+16049019044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525650] [to:17175214401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893470] [to:18479757329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19153048612] [to:+14692054856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893470] [to:18479757329] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268286] [to:14437075043] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-20 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331173] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607195823] [to:+17279997910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179164] [to:12404859244] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168290234] [to:+16474989855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725798] [to:14047253996] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199236990] [to:+16474912165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054355061] [to:+12138619957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-21 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451230135] [to:+447717895066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736072] [to:14133516124] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874244] [to:13043898996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786758] [to:18764308380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511915] [to:12094550430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151548] [to:15185728781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054355061] [to:+12138619957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179770195] [to:+19142816254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195699583] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308068245] [to:+15304882797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320630] [to:12672428195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698260955] [to:+14697516836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15714251008] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166042] [to:19194174121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019388] [to:19026982765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062244966] [to:+13073702993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035661725] [to:+16034134831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031325] [to:13302493141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077909] [to:15147757396] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125759108] [to:15123330089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048942652] [to:+12048180322] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992084] [to:12893353586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008051] [to:18125925219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887447] [to:14232239462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132869689] [to:+16136046050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127442] [to:18458930298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137587998] [to:+18133316730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138159707] [to:+13477981896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173833642] [to:+13859851230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:15632750247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185938664] [to:+19172659777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127284448] [to:+14122301026] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602510242] [to:+19792326112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543392246] [to:+14693006721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:13302574249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737154084] [to:+18724449567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168088035] [to:+15168302861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383047] [to:13369570347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593998294776] [to:+17182558101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052017088] [to:+19162455559] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247625741] [to:+17243200495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146573496] [to:+13479801481] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736919388] [to:+13479806787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048839077] [to:+13478685460] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484485] [to:13233542878] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484485] [to:13233542878] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065643091] [to:+13478082090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963727] [to:12269273669] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19126752341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625882361] [to:+18622278967] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15772818039] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023730391] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039486] [to:17097697773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392674] [to:16026538608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025216216] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569060377] [to:+18563523022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:17054444210] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12707234055] [to:+12139359098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391083] [to:526371238911] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329388781] [to:+18328042951] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950013] [to:15146196925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170325] [to:15059853846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069990559] [to:+16476915764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122281385] [to:+15122657260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14047860052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065526996] [to:+13064000417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14093549945] [to:+14097977842] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13609728859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197607] [to:15619295210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444503] [to:16095335183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998151] [to:12527147304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13126471290] [to:+13126145140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196943373] [to:+12267794122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795734] [to:14788324181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048366514] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309568] [to:17856336771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336979] [to:13046697435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450390] [to:16035831739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220573] [to:18455147677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046741196] [to:+15874050260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195586] [to:12292911324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124366] [to:12674492223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035714] [to:14128416419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855145487] [to:+14125350526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423730] [to:14077152797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:13472320748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736832983] [to:+16465136788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241982] [to:+12262437181] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232608] [to:12397458539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035071942] [to:+13477145618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039099017] [to:+19172610720] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028807119] [to:+19027021768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439288872] [to:+12404077181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:18457745586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016001728] [to:+19172751271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18327807256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340501] [to:14345473564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066515491] [to:+15068038864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649256] [to:14197420983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:13302574249] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916023] [to:15875895653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020936] [to:12039571841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705828512] [to:+15703977397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038708] [to:17862178747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132828916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095534381] [to:+14092205501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108425644] [to:+14437203762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18108588627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608101074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485062878] [to:+14357764214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625020067] [to:+15612318962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890881] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784469] [to:14043375610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437934] [to:16416805776] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14702744110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319431] [to:+15852822141] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745030013] [to:+12134017524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067679] [to:13525930957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543141396] [to:18646219173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734535401] [to:19084160744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587132] [to:19047299373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19032438244] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145309943] [to:+13219996374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19146191606] [to:+19177086657] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578121904] [to:+19142795788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856676] [to:18503214792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:17054444210] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106265124] [to:+15304883579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097163] [to:17097632398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065089580] [to:+16788164617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732869136] [to:+19735479917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274701951] [to:+17279985231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965924] [to:14349443016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361810] [to:15012890125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446148] [to:+12267792819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-21 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930075810] [to:+447451234654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14387643323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300303] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F10201] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162566691] [to:+19162926458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143107841] [to:+19142068696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14407895778] [to:+14406588335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F10202] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303916262] [to:+14158403861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158100246] [to:15744401765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751580] [to:19188372939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:18329231304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817867] [to:18144311857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:15023875985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897785196] [to:16479647874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897785196] [to:16479647874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470534] [to:18175577626] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097422] [to:15877743355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499583] [to:13618061296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607546793] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032B0201] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607546793] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032B0202] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455147677] [to:+18456220573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182911] [to:17346212684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309568] [to:17856336771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276193703] [to:+14803008220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:16182105146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-21 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20601] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474479196] [to:+19178778622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837835] [to:16026631942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328720102] [to:+19108888424] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233072305] [to:+12135876674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018703839] [to:+14696293211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483857441] [to:+12486557422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899218773] [to:+12264557912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054355061] [to:+12138619957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:13022301107] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784848585] [to:+19298413148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132004289] [to:+19148818316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525930957] [to:+13214067679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089604] [to:+14388074952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622966174] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523459524] [to:+18455797155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031325] [to:13302493141] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044003] [to:19179325749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446148] [to:+12267792819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159305] [to:13303621919] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90501] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526371238911] [to:+14804391083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157776104] [to:16152108004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:13522354735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15134459946] [to:15137204626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-21 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415734517] [to:+447418338054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614771692] [to:+16614024784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622189932] [to:+19738146197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116596483290] [to:+16042594985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478121024] [to:+16467019128] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142063415] [to:18032295576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491365] [to:15759425035] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606283] [to:18287724792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817001131] [to:14187191115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074305942] [to:+15125597443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300544] [to:+16139092495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315066677] [to:+16317732116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:16786875713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:18585374179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736870717] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817814903] [to:+17604749017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300544] [to:+16139092495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179704275] [to:+16172132273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283270012] [to:+18046244573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046693616] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155731049] [to:+16156147432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052569] [to:12147498562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427946] [to:14809805067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473792] [to:12674016124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-20 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622725] [to:+447944977542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019384336] [to:+19148486483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153908618] [to:+17182559687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220513] [to:12256784387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253855496] [to:+14073371708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18107305107] [to:+12482833153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783024809] [to:+19172750491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479197] [to:19178177250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195048936] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:15136289501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90502] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899166] [to:19125395508] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899166] [to:19125395508] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378382970] [to:+15306393883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988393] [to:17743926481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024100570] [to:+19028019485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836449] [to:16197477638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083126172] [to:+13219990603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:18019133261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:17048366514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823870] [to:527341286093] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823870] [to:527341286093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706772546] [to:+15703973577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593600] [to:18145150993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:14149825306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146419750] [to:+18328044662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138524120] [to:+16139097041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608818425] [to:+13473897561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214221] [to:14013451158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375646] [to:12695895918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630754] [to:19285838142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446148] [to:+12267792819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327643] [to:50245554229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706772546] [to:+15703973577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316730] [to:18137587998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003300201] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059021066] [to:+19172751767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034130991] [to:16033214064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895690] [to:+16465688602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610525] [to:13158674556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950013] [to:15146196925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328899150] [to:+17323774903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298436] [to:17043639413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274597563] [to:+14132519497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220200] [to:19147551125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499733] [to:17636914747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569548] [to:17244546686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184557124] [to:+15152032934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90503] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003300202] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706772546] [to:+15703973577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774269] [to:18572444276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038247117] [to:+14696723288] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14105643607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047365420] [to:+12015805911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868412] [to:18152126367] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381748] [to:19087639247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628891147] [to:+14155706475] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477434094] [to:15195885745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:14792564065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739288] [to:13345575254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129525404] [to:12542288898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016035465] [to:+14696433711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-20 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312029281] [to:+12313318169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542286754] [to:+14694127996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305199581] [to:+15303623361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999312] [to:+13477749648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177598370] [to:+15613165017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320630] [to:12672428195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086400] [to:16026920024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:16035661725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305301] [to:16367445805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053943010] [to:18052753043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137181144] [to:+18458181239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101148] [to:17802234218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130350] [to:15182683457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152085749] [to:+16572071439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199755449] [to:+13122754397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196907490] [to:+18194122275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147485] [to:16154799930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B90504] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148094] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:15133093579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15062298368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023999384] [to:+13475076155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148094] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312374558] [to:+13366452635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327341] [to:13234077031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694308330] [to:12257337222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220573] [to:18455147677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999312] [to:+13477749648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037247725] [to:+18036362792] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101074] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185728781] [to:+15184151548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:15192162970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597109] [to:19739511065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474143570] [to:+13478303285] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021160] [to:13177193349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629491569] [to:+16106999943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128442251] [to:+14242768967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109565869] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244573] [to:12283270012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142063415] [to:18034869639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475697] [to:16195048936] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527021147] [to:+12138065399] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315153139] [to:+19027004485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003060301] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90505] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003060302] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179800501] [to:+16178613552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524840] [to:17706017786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-20 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447802708812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108588627] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363003] [to:18434218324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336344] [to:12092213572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645412888] [to:+18649997497] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373598] [to:15404559897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003060303] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734535401] [to:16093102909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198445118] [to:13194648163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895512166] [to:+19895697447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659903] [to:584247527774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797389] [to:18434160834] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303578332] [to:+12626483448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:19802677442] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084684161] [to:+12155961127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17096979432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042890906] [to:+19172594219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336979] [to:13046697435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404824] [to:14237159267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16366678501] [to:+18133088551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106918682] [to:+19194158126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137204626] [to:+15134459946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326112] [to:12602510242] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724396] [to:19293128656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:14179883942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:18283716473] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053949556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872243481] [to:+15874004877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985308] [to:12673563047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669416] [to:17733547921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647810] [to:+19717328525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195502740] [to:+12262412090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174708] [to:19179431775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776871] [to:12166097198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356098] [to:13057073705] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16312357772] [to:+14156498354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174509614] [to:+17604746265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092400960] [to:+17604746220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17403981777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406839] [to:15595295008] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12678197086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185278518] [to:+15189305426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:17135810906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286065474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632638816] [to:+18639492415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066525] [to:18648845299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094716] [to:554599040323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024491428] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:14389945788] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426669] [to:15057288131] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405412623] [to:+17408796954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673510450] [to:+12673177388] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557800] [to:19804745841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587132] [to:19046001946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426669] [to:19286795090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335289] [to:17065024781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:19177170477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176770548] [to:+15178615234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-21 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627702] [to:+447415799544] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:17049616814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076248] [to:19034943506] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027003788] [to:19025793898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899233] [to:19064405846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146100] [to:18608905611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-21 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858370549] [to:+447520624872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13309574324] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038F0202] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500038F0201] -Feb 1 11:56:53 ip-10-0-0-21 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035075400] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464980371] [to:+19177027052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673424306] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779619] [to:+17604743539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762664058] [to:+13366450166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-20 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188753891] [to:18185270282] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AB0201] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003AB0202] -Feb 1 11:56:54 ip-10-0-0-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786347625] [to:+17185043245] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309568] [to:17856336771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048373858] [to:+13218329967] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155561266] [to:+13392191988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173104914] [to:+18583606809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705327678] [to:+19018430799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435472256] [to:+14438550773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133339686] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18107282075] [to:+18108527302] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045548803] [to:+19047584191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783029700] [to:+14788419973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736170934] [to:+19738146335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122163402] [to:+19719998220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-20 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670911] [to:+447881289336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860847] [to:12674562728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024469020] [to:+13019179610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-20 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229389] [to:+447880690771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179610819] [to:+13478023719] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656318246] [to:+16466691791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14409698730] [to:+14407938563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302179005] [to:+13302374642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796516232] [to:+15082711366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555238] [to:+19542993607] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177524347] [to:+18563566379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477220189] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045946178] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110202] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048366514] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645563913] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047860052] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566891110] [to:+17605898329] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039535036] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164022570] [to:+12162393881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147622621] [to:+16465037909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095357123] [to:+19028018422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283207677] [to:+14073372677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462018749] [to:+19148485395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654144859] [to:+13477869967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734705714] [to:+16784967263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607969149] [to:+17472237337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030067] [to:+19027041286] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249192737] [to:+13474916344] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404731382] [to:+19404634229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12046985901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178616251] [to:+15863315693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167384381] [to:+13476672668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013140997] [to:+19014449076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166379] [to:13049529021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19793246593] [to:+19794265610] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014381539] [to:+12132957726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14012560076] [to:+14017680048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041863] [to:17406480005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220513] [to:17867187153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17788739747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021980] [to:19022200557] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065802513] [to:+19172592622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043197644] [to:+18046242462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139746] [to:17813859091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131888] [to:17207379653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968590] [to:19312134313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398786296] [to:+12313318153] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:17183550489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632347777] [to:+18637347510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:12342059357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104700920] [to:+12342313024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-20 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188819851] [to:+15186155639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-20 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398786296] [to:+12313318153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265893] [to:17659869917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997910] [to:18607195823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513593890] [to:+13479377526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345969615] [to:+12135760580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17082090289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144448615] [to:+14387927527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004705] [to:13046213921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:16159202960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202537787] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197223799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083715338] [to:+18133088301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474731464] [to:+16474918912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859676734] [to:+15852822695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641653] [to:12034196400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077826] [to:14388287178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+14088683465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:18484699172] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:16614925244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513188454] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988393] [to:17743926481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455147677] [to:+18456220573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123496] [to:14046048437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063022935] [to:+13025851813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165802] [to:16107817097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306638098] [to:+13309358238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286036] [to:15405290352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266158] [to:16159220640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13045946178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732301875] [to:+17277568838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326506276] [to:50498963042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185570868] [to:+14506390417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734171738] [to:+18629020661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148816687] [to:+17027474935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:17203076596] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220777] [to:14842749952] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156400057] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045314249] [to:+17408796696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244573] [to:12283270012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13367444133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377683] [to:18122398795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068711516] [to:+15068029730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-21 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E20602] -Feb 1 11:57:01 ip-10-0-0-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096397055] [to:15098727188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304397] [to:19185334412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417584] [to:16472021642] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634876] [to:19734194260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15399999095] [to:17606253879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160359] [to:14439387977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18042216973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18042216973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14194965595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:14047912607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:14047912607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784997755] [to:+19176366078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15167106796] [to:+18477568766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899210859] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808029257] [to:+15874100883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103068] [to:17737088514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132956717] [to:19106742136] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218293] [to:16069470168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246815626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069937966] [to:13067375612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138836] [to:17402482693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587132] [to:19046001946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782996188] [to:+19142797362] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065399] [to:12527021147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-20 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447947561824] [to:+447520672170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802642053] [to:+15874086612] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762841219] [to:+19727521281] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020339] [to:15813097401] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746014] [to:12054964308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735280910] [to:+17207291591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0201] -Feb 1 11:57:04 ip-10-0-0-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083423917] [to:+19734535433] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567739688] [to:+19792326063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817010098] [to:14182268655] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543831754] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0202] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852107765] [to:+15852823677] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195930514] [to:+18193039778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573335666] [to:+18572190851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137689932] [to:+15087884625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12046985901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:14403847756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:14049158941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168963] [to:15085232917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348833] [to:18768616884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15134459946] [to:15137204626] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057618982] [to:+16474950422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214064] [to:+16034130991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192706072] [to:+14197316244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024491428] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303578332] [to:+12626483448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436849646] [to:+14437202629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573335666] [to:+18572190851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031965] [to:12185568492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058286954] [to:+12262409601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166322] [to:19193386897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143242013] [to:+18572194679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049607499] [to:+19802093296] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808030080] [to:+15874006697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975423] [to:16052996699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192714] [to:16092414546] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199835093] [to:18592507160] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454069797] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939070] [to:12679927048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732803979] [to:+18623082122] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149439137] [to:+14388078727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19319526153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265810075] [to:+12262415181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735867068] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396035622] [to:+17278600674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358238] [to:13306638098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-20 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20603] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403815129] [to:+13012311295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001046] [to:17058457280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-20 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314664336] [to:+16319802099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-21 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447578600340] [to:+447451242986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003010201] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834240] [to:17163075109] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425217] [to:12055144465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628037193] [to:+19018430794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-21 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447578600340] [to:+447451242986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010202] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508097595] [to:+17784020219] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039525238] [to:+15873158057] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16366678501] [to:+18133088551] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305207] [to:15182538952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092136581] [to:+12138025913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782442634] [to:+14706733898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19365723713] [to:+19172661760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165873041] [to:+16178634543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572409941] [to:14843629867] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:18484699172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182482] [to:17023258906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403815129] [to:+13012311295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15079938358] [to:+16412431791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593986127584] [to:+13478303802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364405] [to:+14072162830] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412965020] [to:+19418705345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17809822154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674011] [to:13049425310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602510242] [to:+19792326112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158256467] [to:15596637180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19793246593] [to:+19794265610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666088] [to:18054599016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666088] [to:18054599016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:18286341003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433733266] [to:+12405457893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609728859] [to:+13609494828] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14173652762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538954] [to:12018826775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:19788668379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038241484] [to:+17474006136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046697435] [to:+19785336979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874244] [to:13043898996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-20 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299770399] [to:+13476671284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274701951] [to:+17279985231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-20 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887447] [to:14232239462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106086036] [to:+12105718764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236412980] [to:+14153260231] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774229] [to:19733806169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-21 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20604] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419973] [to:14783029700] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269274720] [to:+12264555307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202332521] [to:+17206232150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372242715] [to:+18583603829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141607] [to:18193342282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-21 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624741] [to:+447871769353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736072] [to:14133516124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16179010338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067679] [to:13525930957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597362075] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673440742] [to:+14582016798] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707660329] [to:+18456222315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18052537699] [to:18052164197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089580249] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048283] [to:16084224934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19028807119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363003] [to:18434218324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:17703801508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158042151] [to:+19142817256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143242013] [to:+18572194679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019273156] [to:+16467389019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594636] [to:16147072197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041459] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043187636] [to:+13867428874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804180] [to:13152832970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804180] [to:13152832970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875005373] [to:+15873154437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214064] [to:+16034130991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308068245] [to:+15304882797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14199755449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708941033] [to:+16784348343] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218293] [to:16069470168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162926458] [to:19162566691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406627] [to:+18572191273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844310884] [to:+16106999319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105643607] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634876] [to:19734194260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804180] [to:13152832970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192855207] [to:+19732985362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182781308] [to:+17277569908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708941033] [to:+16784348343] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19365723713] [to:+19172661760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568616] [to:16464315791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12696356093] [to:12699938528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174346280] [to:+13477868593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889263] [to:16147835888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008155] [to:17659776698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192902306] [to:+17744255108] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412090] [to:15195502740] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478820] [to:15182217177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072636] [to:15148927516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485589] [to:19175663170] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-20 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438408] [to:17063946577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163014678] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708941033] [to:+16784348343] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485589] [to:19175663170] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:18562005472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573756443] [to:+17185212728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485589] [to:19175663170] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093391] [to:18192103932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143956724] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308087405] [to:16624208708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102301] [to:17403579902] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293099147] [to:+15108537462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197097082] [to:+12267901978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324706] [to:14059682699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328899150] [to:+17323774903] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143792288] [to:+16474952257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593517] [to:12508855334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:13212176931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150374933175] [to:+14434035408] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762664058] [to:+13366450166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379180] [to:15163667606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-21 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520623206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038565090] [to:+17604748595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433717152] [to:+13214068144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-21 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E20605] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364120] [to:+18108528063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:18477220189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477619667] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213562102] [to:+13479749106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336884] [to:13528574229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178211133] [to:+17184169174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15399999319] [to:50497807416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822695] [to:15859676734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185246372] [to:+15183440454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131091] [to:18325375883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502761215] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472338566] [to:+16474953739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296071] [to:13372870183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666014] [to:15865533397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195147557] [to:+12138063817] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048033459] [to:+16042651839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137204626] [to:+15134459946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:13342007467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188343310] [to:+19177739351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054964308] [to:+17604746014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024098639] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:19177170477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804152] [to:17868059510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798533] [to:12527231974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866098105] [to:+18188563111] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262202486] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019790382] [to:+12405587809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:12035929776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048283] [to:16084224934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335159] [to:15406540096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733849] [to:17069901050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065263861] [to:+13064000236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698260955] [to:+14697516836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800847] [to:12408554015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137957] [to:17043106315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869967] [to:17654144859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122953105] [to:+14122302146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145098787] [to:+18046246465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563566379] [to:13177524347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195048936] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288842] [to:18315952061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400857] [to:15615743657] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131888] [to:17207379653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318169] [to:12312029281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023226105] [to:+16474954838] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988393] [to:17743926481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+16465139124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038611636] [to:+17748557040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134617] [to:+15795002819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044824943] [to:+14043411988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066179612] [to:+12135878426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132996912] [to:+18133204684] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234430331] [to:+14156499051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873272412] [to:14163203924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17047277742] [to:18038045127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046725907] [to:+14242769123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:15732810942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748962] [to:13049921123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14237214414] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462587100] [to:+12138065820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408505] [to:14234651670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073424038] [to:+17189627326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017508185] [to:+18572408242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306638098] [to:+13309358238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018976] [to:19154070102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436303551] [to:+14108745885] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018976] [to:19154070102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955614] [to:12013591628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535549] [to:14026098562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185177724] [to:+14308088170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294220021] [to:+16466876628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462587100] [to:+12138065820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802676059] [to:+15103137202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850906] [to:14782783283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17814357417] [to:18048986192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025148146] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106086036] [to:+12105718764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035011] [to:18193450103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040826] [to:15023411605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058477] [to:19028305624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562848822] [to:+14242797132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-21 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797537] [to:14782974469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177578564] [to:+18173988106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202332521] [to:+17206232150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030067] [to:+19027041286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124365987] [to:+19122005572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735771] [to:15048120439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-20 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198028802] [to:+12267903565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168290234] [to:+16474989855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025376] [to:16513284459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822220] [to:14143267023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015719] [to:13062403665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022873772] [to:+13025955012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177578564] [to:+18173988106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176515319] [to:+17749921786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233226427] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035661725] [to:+16034134831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364805] [to:+19703159819] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432302931] [to:+19172835490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085562357] [to:18126185701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974033] [to:16073335664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204669] [to:15709395855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:15714251008] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428071] [to:12012567635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13105005606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822141] [to:15853319431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15403157781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13609728859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365897] [to:19108765743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671284] [to:12299770399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802981709] [to:+13203737317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:15166538130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094770] [to:17044534051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14174509614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477604963] [to:+13475185117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958262] [to:16788765224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032714] [to:15156896175] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185034] [to:17703093695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862154995] [to:+13866012349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938913] [to:16093135415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258094] [to:18129100732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:15735867068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823026] [to:15858310193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165535457] [to:+17162790260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125292] [to:18282849460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892368] [to:16307010913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074028025] [to:+17743570193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044662] [to:12146419750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645530083] [to:+14242866178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185806722] [to:+14387931818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407966] [to:12263479304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857881123] [to:+12138024006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145460909] [to:+14388085893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602514470] [to:+12342517699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159062626] [to:+12678444168] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:19157035684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153954513] [to:+12138739986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903145] [to:15869806118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439872] [to:12528837978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19312220898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412554896] [to:+15415393079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804717] [to:16095196199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039741336] [to:+18438720858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146233123] [to:+17408796432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033E0301] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083541] [to:15026897622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819985704] [to:+15817015752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:17183550489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372544] [to:19109757731] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792564065] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025748433] [to:+19027030852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381748] [to:19087639247] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493646] [to:13525984956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302090749] [to:+13309708841] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146233123] [to:+17408796432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033E0303] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454766014] [to:+18453632332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381748] [to:19087639247] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885561] [to:13616480312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707610] [to:15854650528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895338783] [to:+19895697349] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366814534] [to:+13369381424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318169] [to:12312029281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326063] [to:19567739688] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407481874] [to:+17036466469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095977030] [to:+19027003915] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153747052] [to:+16465037033] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538954] [to:12018826775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193814052] [to:+17027181093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674011] [to:13049425310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824931] [to:13153109786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062836] [to:19024881844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042736673] [to:+17185041336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192969] [to:12077468200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16825007476] [to:18178973591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464140] [to:12108720157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:13059785955] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405852825] [to:+12408924456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593147635] [to:+14243364291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084211] [to:16782063328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040325] [to:+17547774410] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-21 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588601] [to:14402066732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19718880919] [to:+15036478810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164159542] [to:+14402528709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194664354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053738010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328899150] [to:+17323774903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14799357419] [to:+19543235705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190404] [to:15186057694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958262] [to:16788765224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564089100] [to:+16466328743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087061] [to:15875012094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314262] [to:13309372474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474916097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400857] [to:15618086032] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13023880110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13023880110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164995] [to:14703638398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358238] [to:13306638098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862162] [to:16462179061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043898996] [to:+14023874244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176363627] [to:+17329081688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058301543] [to:+17279987054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597362075] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973094] [to:15702909432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002712] [to:16787912139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017819538] [to:+12139359880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17802642053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13023993500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800164] [to:13169900153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896142] [to:12563070954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786861] [to:12018526446] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079839] [to:19542903192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362991914] [to:+14158535798] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264553276] [to:12264560405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660475] [to:18653096578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:19802390418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046195] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377526] [to:12513593890] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033122704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174914965] [to:+17248032746] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045997016] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128442251] [to:+14242768967] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18109565869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:16039535036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874607] [to:13175384894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130265] [to:12544215220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480479] [to:17163075931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653605640] [to:+13025851245] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389945788] [to:+14506390028] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601884] [to:19053514268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159434426] [to:+13478086292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733480] [to:16365448219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085714844] [to:+12085010851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232158220] [to:+15612408365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953175] [to:16625422549] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473238] [to:12763656590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597548100] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706661977] [to:+13479801746] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:17183550489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398225830] [to:+17864804586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297983187] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192181] [to:+19178777407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991594] [to:12027609712] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884760] [to:14439832454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866098105] [to:+18188563111] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15745143949] [to:+12695755337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14025906387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822220] [to:14143267023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174590451] [to:+13478993492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102301] [to:17403579902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043846065] [to:+18046246966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719133] [to:19545295841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176029901] [to:+12132953375] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202412590] [to:+12627776515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068973733] [to:+12264559943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096498794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-21 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235966] [to:+447944433131] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062838] [to:17196445912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653605640] [to:+13025851245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479124144] [to:+13473438146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611611] [to:12166323512] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898329] [to:12566891110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14025906387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302861] [to:15168088035] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407604868] [to:+18629551607] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041937] [to:15066070699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134985] [to:+17185676406] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:19563108585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675955697] [to:+12085012527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437561330] [to:+13072402162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679724799] [to:+14842842306] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555238] [to:+19542993607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17814080737] [to:+17816548869] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334142] [to:19898022269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603676363] [to:+12062585463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524785558] [to:+19417256164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007946] [to:19793249766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-21 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306636427] [to:+13308503610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145698705] [to:+14387945607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13024161845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12626223014] [to:+14144006005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372677] [to:18283207677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951856] [to:19099044260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316275951] [to:+16315317163] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477434094] [to:15195885745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652479992] [to:+12135760259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-20 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Voxox] [to:+447451215738] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649103] [to:19014624422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479124144] [to:+13473438146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316275951] [to:+16315317163] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407665] [to:15612944177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042167185] [to:+18328042929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-21 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565408893] [to:+18563126402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024529861] [to:+19027030950] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316275951] [to:+16315317163] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-20 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527231974] [to:+19142798533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135984252] [to:+13479192016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:18609978853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367444133] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-20 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206290290] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963727] [to:12269273669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817606232] [to:+19172318470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015719] [to:13062403665] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569327] [to:17742517938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403969088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478668406] [to:+13478303293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183196209] [to:+15189305292] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894194] [to:+17744255046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13045946178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-20 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670436] [to:+447979196659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18016335145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430504] [to:17864007994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:14694351876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735024] [to:16783903003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176089239] [to:+19014449930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478016] [to:16208751113] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154462] [to:+13479478867] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059785955] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206290290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407875] [to:12896751904] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617772445] [to:+15614052410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-20 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447881511744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322666662] [to:+12819422238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243499485] [to:+15209996955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931070] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023875985] [to:+19318968622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136779040] [to:+14387954248] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457502319] [to:+19172659669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362296635] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178643638] [to:+19172610859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428874] [to:19043187636] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188343310] [to:+19177739351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198028802] [to:+12267903565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407966] [to:15198164287] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18108588627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184366353] [to:+17248034881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128871495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128871495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034196400] [to:+16465641653] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026982765] [to:+19028019388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893833349] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535549] [to:14029681671] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801578] [to:12767337157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802677442] [to:+19802097147] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162480] [to:19196073418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129738288] [to:+15165443566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608101074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838343] [to:19372056332] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139480] [to:13864022905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542464754] [to:+15107799580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028751] [to:17058902579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-20 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816200] [to:15026194765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-20 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373421457] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938481] [to:17277682317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531523] [to:19316284207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175782] [to:17864996439] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133289266] [to:+16139091853] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18189669269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129738288] [to:+15165443566] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302090749] [to:+13309708841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129738288] [to:+15165443566] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:16198189719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148186] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-20 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148186] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023052354] [to:+19027043620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252382406] [to:19252066514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963882] [to:16097314193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148186] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086273095] [to:+14153260638] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048896314] [to:+15617665916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126778942] [to:+14158594134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048135586] [to:12042187860] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048135586] [to:12042187860] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033238743] [to:+18438720441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14252395115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733328397] [to:+19733595072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17802642053] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439831344] [to:+12029991491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048283] [to:16084224934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404572887] [to:+13309358245] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12183713364] [to:+19492453624] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586816] [to:15176079757] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708362193] [to:+13867423110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144622064] [to:+14387925480] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262202486] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044844] [to:19292415476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:15126391523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863726930] [to:18638442916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747172] [to:14014418195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026920024] [to:+13478086400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037289984] [to:+16039450694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12152816039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18084622202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308068245] [to:+15304882797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144622064] [to:+14387925480] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801072] [to:13053050303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064643] [to:18175385631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596802] [to:15807499130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144914828] [to:+14144007691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043846065] [to:+18046246966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356307] [to:12172427722] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194419] [to:17065647259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702358870] [to:+19142798168] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288918] [to:19293936183] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106779520] [to:+18326505244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878635] [to:19362177816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431568] [to:+19715124907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439928444] [to:+18438888279] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148927516] [to:+14388072636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:18622356222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699829651] [to:+12694308482] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245438144] [to:+13025955528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749138] [to:15059068030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634559] [to:19404659999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247323163] [to:+17408797817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759425035] [to:+18639491365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955878] [to:17866410456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13025844851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132519505] [to:19785026388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194121674] [to:14387779878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067796] [to:17812236873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067796] [to:17812236873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025376] [to:16513284459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:14199613516] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13025844851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542043420] [to:+12626483617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-20 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813194565] [to:+15817041653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174142753] [to:+13473897098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563996439] [to:+19172659445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396132] [to:12162689638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-21 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447707658095] [to:+447418335484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312220898] [to:+13477865527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896004087] [to:+12897690179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740407] [to:+16463494395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817002318] [to:14188091039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946367] [to:18128019841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602265744] [to:+12604076568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168209714] [to:+17603145568] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293193666] [to:+18108527980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477019474] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146867153] [to:+15799770321] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037909] [to:18147622621] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024566025] [to:+19028018894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101074] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562969513] [to:+13479068892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912029] [to:15199033185] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152108004] [to:+16157776104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043901] [to:19022259622] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748595] [to:16038565090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406480005] [to:+14062041863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103631975] [to:+19164690523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024642] [to:14033579240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427680] [to:14804341368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0114915210517288] [to:+15102540101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048033459] [to:+16042651839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701097] [to:17879750226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597548100] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048986192] [to:+17814357417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124296593] [to:+12132959402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734021] [to:17069382656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484495] [to:+12139353295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305295] [to:15185278443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295275] [to:19195649842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862695] [to:+16317705520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313631] [to:18502512295] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187726718] [to:+19179772592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349398] [to:19179829184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062298368] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077468200] [to:+13479192969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966529] [to:12054366219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-21 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660096] [to:16035731372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491301] [to:15309137663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053454842] [to:+17053028843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C20201] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007690] [to:12052077370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702131267] [to:+15703974305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733423437] [to:+17187479197] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622966156] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056479] [to:15146592686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059227401] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528574229] [to:+14076336884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204958102] [to:+15204338948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:19294221965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:14125202212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464567] [to:18055877741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193501216] [to:19175367639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177524347] [to:+18563566379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403579902] [to:+17409102301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408505] [to:14234651670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-20 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095354] [to:14384900556] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052056012] [to:+15052571976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-20 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782335642] [to:+14158403394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206365] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192028422] [to:+14197767563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235705] [to:14799357419] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-20 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210640] [to:+447578106723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479543874] [to:13189909452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083613] [to:18125254719] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732537] [to:12022863282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306284] [to:16363467681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063671977] [to:+18724003928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099044260] [to:+12132951856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813504] [to:16104137050] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733480] [to:19893325660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735024] [to:16783903003] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178684272] [to:+19177248623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587594] [to:14408644467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244546686] [to:+13479569548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432302931] [to:+19172835490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145522462] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004837] [to:17096838764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862178747] [to:+13052038708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194311666] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029946822] [to:+17607013424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365142310] [to:+19703159111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034171883] [to:+16109102092] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614771692] [to:+16614024784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016492665] [to:+14018677442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276876750] [to:+16474911909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235998753] [to:+17605899886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14012521478] [to:+13214067075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146233123] [to:+17408796432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033E0302] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154799930] [to:+16156147485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844797659] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643848369] [to:+14153253089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477548985] [to:+13475188622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023258906] [to:+17027182482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074305942] [to:+15125597443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104802646] [to:+15104474204] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477812697] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026579174] [to:+12026609497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035195501] [to:+19032130989] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138835916] [to:+14132715463] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504483768] [to:+14387940177] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246217439] [to:+17248035672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:16319656263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054159204] [to:+15058004277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13364864294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596447781] [to:+14158537019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13522553410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306950] [to:19106279680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C20202] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304397] [to:19185334412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013958] [to:16813781252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459683] [to:14195519177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577308] [to:16198298950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:13236359132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538688] [to:18122256294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838159] [to:13374281304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028751] [to:17052794128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801072] [to:13053050303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703163304] [to:+19703156034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024833] [to:16136145045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025104726] [to:+15022083158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022188900] [to:+19787869397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-20 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746829] [to:13044941955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473154] [to:12673562217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133622375] [to:+14132715431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088920227] [to:+19083824843] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896154507] [to:+17189627055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110201] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474715585] [to:+17012892898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131389] [to:13178285159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127850] [to:18064334658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047687] [to:16135394561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234430331] [to:+14156499051] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536835] [to:13475200616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-20 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896154507] [to:+17189627055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110202] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126778942] [to:+14158594134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-20 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182683457] [to:+16465130350] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606759641] [to:+17603145633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939212] [to:12675931697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043187636] [to:+13867428874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604500889] [to:+17344366234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609422539] [to:+13477735783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185334412] [to:+13476304397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828718] [to:+14073371251] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094343499] [to:+15164724184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195123] [to:13049750613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596447781] [to:+14158537019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305295] [to:15185278443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149007141] [to:+16149964741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-20 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557808] [to:12893390669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244546686] [to:+13479569548] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476871881] [to:+16474992984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868769053] [to:+12485583443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186057694] [to:+18572190404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315693] [to:15178616251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963309] [to:15025507945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202871] [to:14102587116] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264560405] [to:+12264553276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703093695] [to:+13475185034] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328862] [to:13043805289] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582391354] [to:+16463490997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102068288] [to:+14437203875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:13212715976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804152] [to:17868059510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572444276] [to:+17812774269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393483] [to:14352200027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126005] [to:18038429339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735024] [to:16783903003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349398] [to:19179829184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075825] [to:18195711415] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075825] [to:18195711415] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269284] [to:16614288713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021980] [to:19022200557] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384088] [to:16233299316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892305580] [to:+12897683234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505013682] [to:+14503286127] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439928444] [to:+18438888279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052054829] [to:+17053006350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575814229] [to:+13479713483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563182089] [to:18567230339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19127072216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654144859] [to:+13477869967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318378] [to:15803822369] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473887473] [to:+13479198307] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036192194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313910] [to:18504192348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049962986] [to:+16042594982] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004620] [to:19026921062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719124] [to:19543284274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563996439] [to:+19172659445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065982909] [to:+12148149206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729401041] [to:+17726177572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593198923] [to:+16412431267] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159008225] [to:+18729995348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037176222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17159021567] [to:+12628884274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-21 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046901655] [to:+17123825010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799229] [to:16069228519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:19362296635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147757396] [to:+14388077909] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478086446] [to:+16474992993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675955697] [to:+12085012527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365200944] [to:+16504860086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14345795043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-20 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Voxox] [to:+447451215738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435065303] [to:+14438550169] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973094] [to:15702909432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987439] [to:12318843162] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473913290] [to:+12262412151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478086446] [to:+16474992993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131029] [to:15094608969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13378420341] [to:+17279353798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968263] [to:19494686732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12196785900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653096578] [to:+19172660475] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802974204] [to:+16474937005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166389] [to:17746335118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362177816] [to:+19365878635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067375612] [to:+13069937966] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388287178] [to:+14388077826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-21 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095354] [to:14384900556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157776104] [to:16152108004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:18433072967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799229] [to:16069228519] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16153899582] [to:+16156146625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068394] [to:19179934329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995545] [to:12408189886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062737608] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026920024] [to:+13478086400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786722] [to:169287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174684392] [to:+14848164763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483242] [to:18175003020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12162878761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966529] [to:14046459673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19312220898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329967] [to:18048373858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468283] [to:13153720394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604661628] [to:+18133202152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249101112] [to:+17248034177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102068288] [to:+14437203875] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204958102] [to:+15204338948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312165242] [to:+19312577798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012294961] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787884317] [to:+16784345408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324859813] [to:+16096144296] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263765560] [to:+12138062444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593198923] [to:+16412431267] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597548100] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147571706] [to:+14388075317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145460909] [to:+15146136823] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732466] [to:50375463986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163667606] [to:+13479379180] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232770236] [to:+14242866725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003AD0202] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143471185] [to:+18638554197] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856676] [to:18503214792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298889083] [to:+16136044226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346212684] [to:+14086182911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603532840] [to:+13606383208] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043439002] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649256] [to:14197420983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148183] [to:+13025955661] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649256] [to:14197420983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603492208] [to:+17605899368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138264243] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262128] [to:19737521939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043901] [to:19022259622] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608142] [to:16787916909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065456] [to:18644836308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985310] [to:14434692601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+17123826380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965527] [to:14808197244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174197005] [to:+17659869045] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177578564] [to:+18173988106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:14076908528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185034] [to:17703093695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834495] [to:15705888412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437458470] [to:+19172836909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052330557] [to:+17029015524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709920841] [to:+13473437781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-21 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024784] [to:16614771692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183550489] [to:+15103404060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804152] [to:17868059510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168127896] [to:+17166661271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013140997] [to:+19014449076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:19736870717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199613516] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511076] [to:+19027058406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739363514] [to:+19738146766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125395508] [to:+17605899166] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009092] [to:19173189577] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:16785429314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14409255346] [to:12164824767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109156088] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569920] [to:17057302557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035099] [to:12167895983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427680] [to:14804341368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563108585] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500813] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-21 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326296] [to:+447535170601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303337968] [to:+14157876927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038990] [to:12048694412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:14038210387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185117] [to:13477604963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16095820507] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-21 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12256784387] [to:+17542220513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-21 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303337968] [to:+14157876927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471397] [to:18654740296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308012354] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477220189] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576691] [to:16782375966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805085] [to:18049014171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14149731010] [to:15596189507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024881844] [to:+19027062836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132302889] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151907] [to:14036200853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14149731010] [to:15596189507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563482791] [to:+19177329218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12546406059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073824] [to:15733808654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177368474] [to:+19292009905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451850] [to:+12133756697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611647] [to:18034794298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364832] [to:19892857926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730486] [to:18608953613] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856663777] [to:+15852821506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136263954] [to:+13134246299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369404] [to:14029606483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197400884] [to:+18192011213] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195502740] [to:+12262412090] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157776104] [to:16152108004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087061] [to:15875012094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228913] [to:12294026666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-20 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335458] [to:+447507622951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478901863] [to:+16474982556] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-20 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738681704] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057689436] [to:+17053005291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237214414] [to:+19417256329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742126589] [to:+19259574646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192028422] [to:+14197767563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142017928] [to:+13148998403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13364864294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023080048] [to:+17194960585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372106872] [to:+17604743706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182482] [to:17023258906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-21 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227185] [to:15163041376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:12056718020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743472] [to:16789015405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587857] [to:12024402433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746014] [to:12054964308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968598] [to:16783348098] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348077] [to:16785589964] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147485] [to:16154799930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176453447] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106246101] [to:+14439737211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623025] [to:17757457558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566891110] [to:+17605898329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606759641] [to:+17603145633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772696] [to:18329517266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-20 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038990] [to:12048694412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785338016] [to:15188941084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536666916] [to:+17344365920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438398787] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788668379] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024715525] [to:+19027058191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729401041] [to:+17726177572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802480130] [to:+19282974676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801481] [to:16146573496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-20 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303294] [to:15623221184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202928245] [to:+17206235203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702263172] [to:13346105394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17342366477] [to:+14438550338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372870183] [to:+12139296071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304702109] [to:+14242865258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15087285967] [to:+16412431366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17703641147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-21 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166375] [to:15086423151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549848] [to:12524691532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746335118] [to:+15089166389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139923792] [to:+18133084722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-20 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447858370549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:14044470940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204958102] [to:+15204338948] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652064871] [to:+14694060681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013294] [to:12315703005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756106] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-21 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:14843451379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061352] [to:18705573149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048819562] [to:+19047584134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12256784387] [to:+17542220513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703638398] [to:+16788164995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684769] [to:18435974243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018428193] [to:17577694128] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193296667] [to:+18194122229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177906180] [to:+13059014094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173639887] [to:+16466875942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343154267] [to:+19177086348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133923613] [to:+13134247963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017064] [to:14407818069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295275] [to:19195649842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484457] [to:16085185494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192206] [to:16315062729] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19546877862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434201515] [to:+16412431804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900556] [to:+14388095354] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-21 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16363467681] [to:+16367306284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137651833] [to:+12692244506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652281] [to:14169853069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-20 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798943] [to:16072386906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078202142] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19025808454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229067] [to:19148822450] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484457] [to:16085185494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477220189] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200641] [to:17247308585] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:14792564065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576981452] [to:+17206232218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403199466] [to:+14437203744] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14342220221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305295] [to:15185278443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272620] [to:+19142816155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12546406059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673339353] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788860721] [to:+14043411075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:16313170234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628037193] [to:+19018430794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:15194947317] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15712597894] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16208401031] [to:+19172833980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572071944] [to:14404520176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329476355] [to:+19089224105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AD0202] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182331785] [to:+13193827527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156186710] [to:+16157776407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-21 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402603008] [to:+13203074785] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-21 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738681704] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148198567] [to:14503691576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-21 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811884] [to:16789946825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312029281] [to:+12313318169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854650528] [to:+16317707610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592507160] [to:+13199835093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377635] [to:14152363366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896919114] [to:+16474941175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003700201] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14124284611] [to:14123771945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477946112] [to:+18456222138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103733328] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151907] [to:14036200853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472217712] [to:+12342312654] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002122] [to:+14387927781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095323322] [to:+16095434556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765916852] [to:+16503001237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178285159] [to:+15103131389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364450] [to:+18638556790] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14047860052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818488] [to:19372052810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978320] [to:17188085919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13308012354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003700202] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803296594] [to:+14804392377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471397] [to:18654740295] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17703641147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163314893] [to:14026418418] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064760878] [to:+15068029581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004314] [to:19034312126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405412623] [to:+17408796954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175008706] [to:+19725348798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-21 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447743466006] [to:+447418336001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013424] [to:15029946822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077909] [to:15147757396] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379180] [to:15163667606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045946178] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024161845] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746835] [to:15863725208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746835] [to:15863725208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955945] [to:17652101133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056479] [to:15146592686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042258] [to:16135527360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916097] [to:12899195486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995545] [to:12407726303] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104443] [to:14174896460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16608337503] [to:+16602009735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092414546] [to:+13479192714] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427680] [to:14804341368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625902531] [to:+19015042153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796757] [to:17406498553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816200] [to:15026194765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019530582] [to:+12485375699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003970201] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286516] [to:15408199418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15134459946] [to:15137204626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052181448] [to:+17273624874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003870301] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106279680] [to:+16367306950] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017323] [to:16065453528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14342227295] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791283] [to:17163905854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791283] [to:17163905854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022948465] [to:+19498771451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052181448] [to:+17273624874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870302] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043445] [to:16138672397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194044359] [to:+12262430817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068144] [to:18433717152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167279850] [to:+14387927294] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058457280] [to:+12497001046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-20 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034383401] [to:+16039450732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052181448] [to:+17273624874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003870303] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216950008] [to:+15852822128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974109] [to:14086006229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034488235] [to:+16822139303] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319365] [to:14348515175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786606171] [to:+19172750499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434035408] [to:50374933175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-20 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767985] [to:17402023943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435974243] [to:+13478684769] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721930] [to:16239990264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022371776] [to:+19027043458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011554599040323] [to:+19174094716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165785182] [to:+17162792498] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621737] [to:15409071974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156918952] [to:15024351842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088901] [to:12673576343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610968] [to:16015172640] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803194322] [to:+17049700773] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135447635] [to:+17279997509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-21 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333947] [to:+447919970510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238279297] [to:+14234150092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487030383] [to:+16467691184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920296] [to:18323761972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022104849] [to:+16474919922] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236359132] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003970202] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334458] [to:17065025055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:0608041ACE0201] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078202142] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025390] [to:17043512894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304397] [to:19185334412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013859] [to:18634403535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043712662] [to:+12048138423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738779058] [to:+19142794385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803389602] [to:+15204336838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087061] [to:15875012094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195926884] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868988010] [to:+13867428319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:14802686225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:14802686225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092414546] [to:+13479192714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045319] [to:18322872322] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024784] [to:16614771692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037176222] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324999974] [to:+18456220438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292323857] [to:+19715124018] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897131] [to:16054316005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054245658] [to:+16139097117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048071152] [to:+17256660310] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028477811] [to:+12404357813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-21 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502997487] [to:+447520674063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14258805433] [to:14254955695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703093695] [to:+13475185034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009382] [to:12264009674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164763] [to:17174684392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-20 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721930] [to:16239990264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16825007476] [to:18178973591] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123261714] [to:+17125255329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894926928] [to:+17636849995] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748495248] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068450] [to:15736443591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19145522462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038990] [to:12048694412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16082848025] [to:+19178778764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735588710] [to:+19739639243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371251] [to:14077828718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:14153289705] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:0608041ACE0202] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14012975234] [to:+19175805115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733808654] [to:+13203073824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945806] [to:15147426491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869967] [to:17654144859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016639002] [to:+14242797984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892146] [to:17734196636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-20 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477434094] [to:15195885745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699870] [to:12027465917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026858] [to:13065517801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593956] [to:15703570508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724536265] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735867068] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294026666] [to:+15103228913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15018139668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998403] [to:18503987804] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12899210859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19364270328] [to:+18326167418] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416007436] [to:+19414173077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436271913] [to:+18435345226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109162569] [to:+13478969323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363911] [to:13608019085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177631020] [to:+13479478187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19364270328] [to:+18326167418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866178] [to:18645530083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167551080] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009490] [to:19172262282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191575] [to:17069980304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708247768] [to:+16466999507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322712554] [to:+18724005812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792340304] [to:+17133735896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014140692] [to:+13859851987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130350] [to:15182683457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14237214414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772216] [to:12109141104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139923792] [to:+18133084722] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162480] [to:19199352232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804675814] [to:+19177376316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981618] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981618] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054964308] [to:+17604746014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003F60201] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364857] [to:+17866079855] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173315949] [to:+16172132569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571976] [to:15052056012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122194344] [to:+13479971091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:14303422924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-21 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329610] [to:+447506103357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015719] [to:13062403665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396954] [to:12163387089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:16465468727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043293] [to:19542669707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175574311] [to:+12673177530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173315949] [to:+16172132569] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527147304] [to:+13219998151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:19176363627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-21 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447487802961] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145892118] [to:+15148198620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101132] [to:15873272096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425652] [to:13863089214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137651833] [to:+12692244506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225617] [to:19858705759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893833349] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079946] [to:17863285098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427946] [to:14809805067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697205289] [to:+12148149902] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678647323] [to:+13479194059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474731464] [to:+16474918912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796757] [to:17406498553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076616968] [to:+16465473361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-21 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369404] [to:17344760737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140881] [to:18199683578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377113] [to:13305416159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713603] [to:18027386084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158533304] [to:15135047895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-20 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005291] [to:17057689436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109565869] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14238228122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F60202] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898329] [to:12566891110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18133514011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033123924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673562217] [to:+12672473154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798533] [to:12527231974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318378] [to:15803822369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542164573] [to:+18572191863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158533304] [to:15135047895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876093] [to:18434098199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218889] [to:+19199166322] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604661628] [to:+18133202152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149729210] [to:+16144208146] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693332219] [to:+14692051591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412090] [to:15195502740] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057126121] [to:+12139352423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424492] [to:13213622505] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613246372] [to:+15614916616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057126121] [to:+12139352423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18327807256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15042292647] [to:12516443579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023258906] [to:+17027182482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414233279] [to:+19715127072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592876892] [to:+14158530276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862126371] [to:+15862488137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135447635] [to:+17279997509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302699] [to:14128973950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+19092932451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15012406686] [to:+18722259707] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797537] [to:14782974469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172878859] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245185871] [to:+12138611375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700580] [to:17042314758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122256294] [to:+14156538688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065373047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834240] [to:17163075109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546406059] [to:+13479977843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471397] [to:18657659951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801072] [to:13053050303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177797] [to:17729855080] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163000259] [to:+12135296951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638442916] [to:+17863726930] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188514699] [to:+16124448055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549805109] [to:+19543143289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219990603] [to:12083126172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044015117] [to:+17784027240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850625] [to:12607394252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403579902] [to:+17409102301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007691] [to:14144914828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785338016] [to:15188941084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725285595] [to:12294001944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145633] [to:17606759641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767486] [to:14192121344] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17743223867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869397] [to:19022188900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17472007268] [to:+13108792042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19025808454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154799930] [to:+16156147485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019388] [to:19026982765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531341] [to:17652743328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019696325] [to:+12014266726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:14844797659] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756106] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809802] [to:19107282474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048392008] [to:+16265085508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301641] [to:18142033208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486483] [to:16019384336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070699] [to:+15068041937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-20 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751278097] [to:+447418336927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418127] [to:15199950331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-20 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038369245] [to:+15873232679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13609728859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-21 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447770583060] [to:+447451232441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19544009182] [to:+15612407471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169174] [to:17178211133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369570347] [to:+13369383047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105805637] [to:+14242838483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173632393] [to:+13023744930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182911] [to:17346212684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049942630] [to:+16465137705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272620] [to:+19142816155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864610036] [to:+19088425053] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805115] [to:14012975234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232160] [to:12674758090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048819562] [to:+19047584134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775544] [to:17313251941] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199352232] [to:+19199162480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19546877862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:14182918680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375591571] [to:+13203073795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183550489] [to:+15103404060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974591] [to:15704234841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892701540] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348098] [to:+16784968598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15748495248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072402162] [to:14437561330] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406990] [to:15195601111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155449114] [to:+12627778189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895881751] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037176222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177797] [to:17729855080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024351842] [to:+14156918952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477606933] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384088] [to:125827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252395115] [to:+12062585695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600241] [to:12896688006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057126121] [to:+12139352423] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939070] [to:12679927048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246299] [to:13136263954] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223323] [to:18127466397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516929450] [to:+13234984549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617772445] [to:+15614052410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019696325] [to:+12014266726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163463518] [to:+16474989235] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887356] [to:19172503909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760968] [to:18593270009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695987760] [to:+12692244339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736870717] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037289984] [to:+16039450694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13853154424] [to:+17727668071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989729] [to:15186539266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150092] [to:14238279297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025253583] [to:+17027476081] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783308146] [to:+19172319037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173632393] [to:+13023744930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046199357] [to:+12627775402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15037542316] [to:+15038374149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724536265] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14238228122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317303362] [to:+12313778293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967139] [to:16782376994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555747] [to:15193201760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067742] [to:12525642048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:16313170234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008051] [to:18127673660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406325759] [to:+17274938802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062836] [to:19024881844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636629968] [to:+13478992173] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866725] [to:14232770236] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:14789747907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479200] [to:12565571419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969679] [to:17574127555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479200] [to:12565571419] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801679] [to:19312219085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15042292647] [to:12516443579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792564065] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:15632750247] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293112] [to:17173302997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683119] [to:14023070052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599635567] [to:+13477866264] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526371238911] [to:+14804391083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428874] [to:19043187636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132817326] [to:+19027046441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697205289] [to:+12148149902] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567739688] [to:+19792326063] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869397] [to:19022188900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673562217] [to:+12672473154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673563047] [to:+17279985308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:13236359132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515068] [to:13522070150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852307] [to:13023625115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15056046941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134102205] [to:+18134302964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515068] [to:13522070150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-20 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328239] [to:+447596753307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977086] [to:15709032476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026858] [to:13065517801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411066] [to:17346206690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869442] [to:19172042643] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992084] [to:16476406074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19036193309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702771378] [to:+14044811147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033097] [to:17244668593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148198567] [to:14503691576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13375296527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014720] [to:14186803698] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014720] [to:14186803698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022295] [to:17636576016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-20 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835795] [to:15017431490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899210859] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405506641] [to:+12404077142] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076908528] [to:+14072161105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340738] [to:16063155756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340738] [to:16063155756] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567960096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015042700] [to:19416238918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804745841] [to:+16122557800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567960096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-21 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520606243] [to:+447936991316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525177] [to:12065959571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898200603] [to:+19895334574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678647643] [to:+12673177343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823026] [to:15858310193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139520404] [to:+18133081940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847950] [to:18307433347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083594120] [to:+14156498179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653612836] [to:+13478968687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407409] [to:16463729025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063575] [to:16062591923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343209] [to:14042072512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228352] [to:14196516716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269273669] [to:+16474963727] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195649842] [to:+12135295275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14237214414] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242763] [to:16316788019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879871688] [to:+17784000122] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163000259] [to:+12135296951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821326] [to:18106189765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17176726745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17176726745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:14153289705] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043807861] [to:+14157127579] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094868861] [to:+19027031504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601561] [to:12498775036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403544403] [to:+12139927018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094343499] [to:+15164724184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619957] [to:12054355061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285770058] [to:+18107725608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896926] [to:12515543678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545982654] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464140] [to:12108720157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998151] [to:12527147304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326170] [to:15709947023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674283] [to:15634473670] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374891405] [to:+14197459702] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432897979] [to:+15169269229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860189] [to:16505348105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001046] [to:17058457280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033126866] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675931697] [to:+12677939212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638125252] [to:+18638553875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145522462] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336211] [to:17069411451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-21 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672170] [to:+447947561824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402733129] [to:+18572408893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432452391] [to:+18435345314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136797220] [to:+14152377614] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313371219] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436992] [to:19122462349] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083613] [to:18125254719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162689638] [to:+12162396132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:16035661725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012349] [to:13862154995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473610740] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437591538] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345174120] [to:+13025955970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023032242] [to:+19027058464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223463] [to:14438393387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797995] [to:12293089824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938913] [to:16093135415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309574324] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847355722] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622356222] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373754612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:15088373433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304669261] [to:+13309358113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146621579] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272908864] [to:+18638554473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523750930] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109778205] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102319614] [to:+19173965527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039840634] [to:+19712489202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053050303] [to:+17864801072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153720394] [to:+19148468283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+17278196831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15795003083] [to:14388620679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14153408518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015558] [to:18603024023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005369] [to:17097634027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158183] [to:14033361253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161012] [to:19196303050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048819562] [to:+19047584134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703452513] [to:+12139359332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14345795043] [to:+12133756559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+17278196831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023445421] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150092] [to:14238279297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012826607] [to:+19018422325] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156918952] [to:15024351842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146419750] [to:+18328044662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402313569] [to:+13122752559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042235680] [to:+13369382199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216627] [to:12103467152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131389] [to:13178285159] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309137663] [to:+18639491301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026418418] [to:+15163314893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204424436] [to:+15207278659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001772] [to:13059751656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362671942] [to:+13369382526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102756] [to:14847470564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015969] [to:14043084019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472217712] [to:+12342312654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156050595] [to:+16157779396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:17703293877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172135299] [to:+17816024266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182268655] [to:+15817010098] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185278443] [to:+15189305295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243996] [to:15033093254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243996] [to:15033093254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785906992] [to:+19786140750] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200259] [to:14042871887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815953] [to:593981579344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973899] [to:15704858904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14238228122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14159479692] [to:+18583605409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324437028] [to:+17322582334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096564857] [to:+14096833679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15863725208] [to:+15865746835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048098341] [to:12042945872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044015117] [to:+17784027240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491450] [to:15594808680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-21 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:64364] [to:+447451230999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003570202] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179010338] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784020219] [to:12508097595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18109565869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075931] [to:+17167480479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070699] [to:+15068041937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026026046] [to:+12678676570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232770236] [to:+14242866725] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AD0201] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024088954] [to:+12136946917] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165607572] [to:+16474985265] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373051105] [to:+12135297860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148350490] [to:+16034138097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509819012] [to:+16049019044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187712503] [to:+15104476417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563757974] [to:+12026090023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604622066] [to:+17185048842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804747552] [to:+19802093974] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329476355] [to:+19089224105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AD0201] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248597856] [to:+13477966489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130045] [to:+14344736493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163463518] [to:+16474989235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108765743] [to:+14243365897] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235889203] [to:+14155698735] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032876130] [to:+16822139303] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143037442] [to:+17742047889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319656263] [to:+18452627730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344760737] [to:+16058369404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058301543] [to:+17279987054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128019841] [to:+12136946367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751215] [to:+17729797187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875825433] [to:+15873151908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617772445] [to:+15614052410] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157345906] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122982312] [to:+14122302879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096951415] [to:+12497000990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402023943] [to:+14197767985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740417] [to:+17474006180] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563996439] [to:+19172659445] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19782736823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527231974] [to:+19142798533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13148998403] [to:13142017928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005949] [to:14145739417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137721] [to:19105991330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033121864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039273873] [to:+13475804608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042190370] [to:+19142065315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412143365] [to:+19252397863] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135835923] [to:+16136043164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318169] [to:12312029281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772637] [to:19562442904] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313996] [to:13172922657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743223867] [to:+15089874966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-21 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447745735382] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127876631] [to:+15129525590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135835923] [to:+16136043164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023371] [to:18084634847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-21 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:64364] [to:+447451230999] [flags:-1:0:-1:0:-1] [msg:165:..T...,/..@..w]......a..8..&....n2...~......yYnO....sPX^.....ar.d~..A..w...J..A..w..$/....xxyLO.... w...Z....,P.........u6.$.....i:......A..<...o....or8...%....4....] [udh:6:050003570201] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473154] [to:12673562217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594021] [to:14802596081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293129367] [to:+17185041614] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375657023] [to:+17605896693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184718] [to:18705515847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025958285] [to:+14018677274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147759961] [to:+14387926715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522553410] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042288] [to:13526154910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132519225] [to:19787997304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028186456] [to:+19027021985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150499082447] [to:+16465470581] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862501124] [to:+12139926044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107646866] [to:+16108804263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042190370] [to:+19142065315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174346280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434098199] [to:+12135876093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203556542] [to:+17204637817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037612858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037612858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408929543] [to:+19178777929] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536286] [to:18658055609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176348539] [to:+17029565743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787610] [to:12525602096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16137961428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308012354] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896518] [to:19282085430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639243] [to:19735588710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374891405] [to:+14197459702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-20 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944912146] [to:+447451203436] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887447] [to:14232239462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802365629] [to:+14695326997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037176222] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308832974] [to:+14402528569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408929543] [to:+19178777929] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700773] [to:19803194322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892553828] [to:+19895697409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026026046] [to:+12678676570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003640202] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003640201] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026328529] [to:+13024000442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396954] [to:19901406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161290] [to:19197661841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481442] [to:16083591745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093010] [to:17053446344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124365987] [to:+19122005572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18473409153] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718174] [to:12675061019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762070417] [to:+19142812504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106609535] [to:+13478020679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343209] [to:14042072512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17083296274] [to:+17162792232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017045] [to:17865256316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15712348890] [to:13012024006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736443591] [to:+12482068450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028214919] [to:+14156125670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-20 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447547812046] [to:+447451225022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659903] [to:584165569332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-21 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858370549] [to:+447520624872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204832566] [to:+15104474872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177757095] [to:+19727503794] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-20 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802708812] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019441] [to:16267107484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293129367] [to:+17185041614] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042244365] [to:+18724005558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783979692] [to:+19785939305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048632] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037652007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860698] [to:12679829985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178616251] [to:+15863315693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329126316] [to:+17324433134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:15735867068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:13479927772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14843360388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086006229] [to:+17078974109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156034] [to:19703163304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086674952] [to:+15084168639] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-20 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136891] [to:15013502853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-21 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620407] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-21 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12678647323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097977842] [to:14093549945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026858] [to:13065517801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349664] [to:15169676433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166160044] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708457217] [to:+14043412099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19375591571] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899210859] [to:+15874004486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185076519] [to:+15817020122] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:18194311666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086560633] [to:+13024391984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E60303] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047265298] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838483] [to:19105805637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021980] [to:19022200557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-20 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204046] [to:18134106352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082160922] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177757095] [to:+19727503794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-20 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447745735382] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067628] [to:16812081067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146621579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673440742] [to:+14582016798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404786461] [to:+14403594774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096397055] [to:15099902065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789015405] [to:+17604743472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954682] [to:19104204770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868254] [to:18037301590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704234841] [to:+15703974591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502512295] [to:+18506313631] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:12149898813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860007] [to:17066140969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692777984] [to:+12693366341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:12149898813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155301009] [to:+12626482699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042464764] [to:+14049003661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403510316] [to:+19802095619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796210] [to:19109350679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248072] [to:19175302637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309372474] [to:+12342314262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+13479199059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19132045692] [to:+15618197363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365809873] [to:+13367018095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182683457] [to:+16465130350] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166389] [to:17746335118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652281] [to:14169853069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15718588430] [to:+17633015438] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736198] [to:12032430579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668078] [to:14173663773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:14038963487] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169360002] [to:+19727504207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147485] [to:16154799930] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394251] [to:16236883503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660475] [to:18653096578] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027664805] [to:+12026090440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282085430] [to:+17605896518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807403318] [to:+16233837133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18473409153] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193075169] [to:+14198430883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023638165] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022659738] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879871688] [to:+17784000122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028214919] [to:+14156125670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324254888] [to:+17324360768] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782783283] [to:+14156850906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813097401] [to:+15817020339] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+13479199059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375273877] [to:+14402526889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244668593] [to:+17248033097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408929543] [to:+19178777929] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309372474] [to:+12342314262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642457296] [to:+14242525680] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864022905] [to:+16172139480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660475] [to:18653096578] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138853211] [to:+14136859168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19145522462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082971] [to:18128017494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199613516] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476875153] [to:+16474912845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+16466691090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-21 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326556] [to:+447979697576] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+16466691090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653981618] [to:+14156493971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216627] [to:12102733950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362545030] [to:+13369382511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592660] [to:19128509829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108720157] [to:+18322464140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024881844] [to:+19027062836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-21 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543284274] [to:+19542719124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959402] [to:19124296593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245387] [to:18043381335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176079757] [to:+15172586816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15018139668] [to:+18316107665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659903] [to:584165569332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742517938] [to:+15085569327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342059357] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178285159] [to:+15103131389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856676] [to:18503214792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004620] [to:19026921062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185821] [to:13479255044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014270920] [to:+18018903371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15016502039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199950331] [to:+12262418127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017045] [to:17865256316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19316915353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-21 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447763356061] [to:+447520627250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689453] [to:14802598804] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023905867] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023905867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15714251008] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12899210859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17085100285] [to:+16308696595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025744427] [to:+16474938775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678647643] [to:+12673177343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026982765] [to:+19028019388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674562728] [to:+12676860847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939212] [to:12675931697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478276] [to:19853122213] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015042700] [to:16788565744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615077] [to:15177508757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639432] [to:12522185322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155075441] [to:+16158432819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315062729] [to:+13479192206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013722] [to:13869567376] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169360002] [to:+19727504207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745441] [to:15743987440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167881748] [to:+16474951330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868124] [to:13377062113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167551080] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045100454] [to:+16784343645] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044602653] [to:+14703336773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185219464] [to:+17074099455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12194408277] [to:15743831069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502761215] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-21 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262128] [to:19737521939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126005] [to:18038429339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476275] [to:15409601088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:16783346385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437398815] [to:+19177731092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042623] [to:18432240881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038642129] [to:+17036466575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706312744] [to:+19703006437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346104063] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042623] [to:18432240881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:16319656263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14232984533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973587] [to:15705888412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373446161] [to:+12132955109] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17743223867] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148177213] [to:+16149963560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708540405] [to:+15705216799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044602653] [to:+14703336773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088602] [to:12673530753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-21 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159173357] [to:+16156147388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:17048366514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155713299] [to:+18653473785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-21 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:18136797220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199305134] [to:+19402222061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199305134] [to:+19402222061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098915] [to:17606600860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195087947] [to:+13477868726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068008649] [to:+15068039662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196516716] [to:+16149228352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044602653] [to:+14703336773] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346206690] [to:+19298411066] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195244758] [to:+19199161653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343209] [to:16784684529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030950] [to:19024529861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603714658] [to:+13478084759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343914239] [to:+12139217654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818039269] [to:+15047027142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003DB0201] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818039269] [to:+15047027142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003DB0202] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:14058198544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:13236359132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821846] [to:15854159422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169025840] [to:+17027476282] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103631975] [to:+19164690523] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15033024307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783979692] [to:+19785939305] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675061019] [to:+16105718174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-21 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447881511744] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100969] [to:15872168776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408199418] [to:+15406286516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004314] [to:19032531684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190294] [to:16783343313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434544920] [to:+18572404877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077826] [to:14388287178] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603652] [to:16094773942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493646] [to:13525984956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756106] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095323322] [to:+16095434556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-21 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335460] [to:+447936666889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046982755] [to:+12048179977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329962305] [to:+15163625194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047988354] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038642129] [to:+17036466575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939305] [to:19783979692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015164334] [to:+19729478887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734091739] [to:+19735479935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-20 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447596753307] [to:+447418328239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911128] [to:12037706892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-21 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009221] [to:17736764126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505585613] [to:+14388086134] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084160744] [to:+19734535401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-21 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312219085] [to:+14433801679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163667606] [to:+13479379180] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436163482] [to:+18038519931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063321361] [to:+17063959503] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488352] [to:18172319096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14345795043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086000] [to:12562698205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610720] [to:12039099017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388620679] [to:+15795003083] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086400] [to:16026920024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438184664] [to:+18572192236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774723] [to:16083933394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789144710] [to:+13479193437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106030573] [to:+13219998306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14387643323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564089100] [to:+16466328743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009221] [to:17736764126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12899210859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220513] [to:12256784387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624913041] [to:+14243363337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12523750930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162212] [to:12527751203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046459673] [to:+14045966529] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303253699] [to:+18302824839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958218] [to:17206756056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370835] [to:13304817271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476275] [to:15409601088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-21 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-21 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072167992] [to:+19782169348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338559] [to:+16475569925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185274976] [to:+14242863189] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13062505972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-20 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447917452092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733132883] [to:17083684629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040924] [to:13042163391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-20 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605185] [to:+447792023874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072854738] [to:+14146004325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767563] [to:14192028422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096838764] [to:+17097004837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:18434687544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19109156088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173164181] [to:+12679525650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807347] [to:12107196429] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038642129] [to:+17036466575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022331162] [to:+16042653116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237529] [to:12144359084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327080] [to:19799856381] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373715942] [to:+19703159046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707665653] [to:+16079687236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164995] [to:14703638398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097634027] [to:+17097005369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163667606] [to:+13479379180] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736907007] [to:+17188069180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674758090] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572594] [to:15057055032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030950] [to:19024529861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703745110] [to:+16784333552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165615930] [to:+12262406642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326063] [to:19567739688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127466397] [to:+12138223323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195088694] [to:+14152377311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503267687] [to:+18637347990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796210] [to:19109350679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-20 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152077618] [to:+12679525677] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242763] [to:18049216753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-20 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370835] [to:13304817271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013185800] [to:+14433453929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022740] [to:+16463497983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313251941] [to:+12627775544] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287883012] [to:+19177370642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19737566067] [to:+18629551683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13462211157] [to:+17133099231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433681923] [to:+17278578032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734021] [to:17069382656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256774] [to:19419623606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702058402] [to:+15703977768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708540405] [to:+15705216799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137705] [to:13049942630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+19092932451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132433293] [to:+16139126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476203683] [to:+17053001788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605465] [to:15056862016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375273877] [to:+14402526889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16179010338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453813825] [to:+18452627694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:13479927772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041487] [to:19023210217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858311969] [to:+13475808032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924456] [to:14388221032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248072] [to:15164515889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:19172878859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803194322] [to:+17049700773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816024266] [to:15172135299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777085] [to:15134974376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327774217] [to:12142084298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722227080] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319572] [to:17542021238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142033208] [to:+14122301641] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16312604688] [to:+16319800497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173123713] [to:+19177229885] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152177374] [to:+18729997881] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327502] [to:17037316668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196149990] [to:+12262412001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157688883] [to:+18563125638] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497000990] [to:17096951415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046295038] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167895983] [to:+17248035099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319656263] [to:+18452627730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108720157] [to:+18322464140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238279297] [to:+14234150092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939070] [to:12679927048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939305] [to:19783979692] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176986493] [to:+19172750903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077826] [to:14388287178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524127] [to:15126798908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192969] [to:12077468200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18134813243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515543678] [to:+17605896926] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673576343] [to:+18133088901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16397394726] [to:17809063704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938415] [to:13615002324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025958285] [to:+14018677274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759126] [to:13854454021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037414913] [to:+15873289576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-20 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674952] [to:+447983513336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148177213] [to:+16149963560] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16188024198] [to:+12132953702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16123848509] [to:+16314177164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327774217] [to:12142084298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035058035] [to:+16034138381] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989729] [to:15187195521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200259] [to:16787538120] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632236] [to:16417802502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742047889] [to:12143037442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797537] [to:14782974469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186539266] [to:+13477989729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-21 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015090187] [to:+13477988094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:19563108585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414378] [to:18108145961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862669] [to:+12243104467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735588710] [to:+19739639243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853638595] [to:+15852824417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192130083] [to:+14199649083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104955232] [to:+13025958635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15745143949] [to:+12695755337] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-20 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273203959] [to:+18133208963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095284390] [to:+17027794664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062591923] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163905854] [to:+17162791283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191134] [to:18636057517] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783979692] [to:+19785939305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815953] [to:593981579344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464003559] [to:+16465319241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466876505] [to:16466696824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095284390] [to:+17027794664] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191134] [to:18636057517] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342059357] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551409] [to:19095603085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619380] [to:15107540885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784967057] [to:17622099493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128188818] [to:+17736669282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165245] [to:19143304693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17018710762] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CD0301] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573374] [to:15053220007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893397674] [to:+16474937637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024407707] [to:+15022083257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892701540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434544920] [to:+18572404877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136289501] [to:+12604071409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133622375] [to:+14132715431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174138533] [to:+17816548592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026090065] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142542375] [to:+19802097616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573374] [to:15053220007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708540405] [to:+15705216799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382017] [to:13366845156] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474915264] [to:+16319800050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17018710762] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CD0303] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232770236] [to:+14242866725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276575653] [to:+17864107761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573374] [to:15053220007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374811620] [to:+17727740208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177899] [to:16093690348] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166483466] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739942] [to:19174748655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764106] [to:16463294794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477568366] [to:18017557964] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235996440] [to:+12138227527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406122410] [to:+17408796105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260330] [to:15164626852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107891034] [to:+18572559394] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508000289] [to:+13054175325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:17403140897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645563913] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179184046] [to:+14197767557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136984] [to:15146630396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175012930] [to:+12602327105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899413] [to:17578313788] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265316] [to:18327761067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164469634] [to:+12897681006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497436] [to:19293402034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072847] [to:17246995090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041927] [to:+18572400893] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142518834] [to:+17142153623] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747287] [to:17064153121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636058909] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881205] [to:12063805565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005949] [to:14145739417] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095284390] [to:+17027794664] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735867068] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187334] [to:19177766282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13308012354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293129367] [to:+17185041614] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652747147] [to:+12017429281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854650528] [to:+16317707340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788478713] [to:+16784348960] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475566599] [to:17095894861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894926928] [to:+17636849995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14153408518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306284] [to:16363467681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165547569] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004325] [to:14072854738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:13104306673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165547569] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729476053] [to:12144573746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424311] [to:14072743164] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774474] [to:14142436606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924456] [to:14388221032] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953474] [to:16474541230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-21 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:19374787545] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884140] [to:13186557044] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473466] [to:18658514674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847355722] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:18019209046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767985] [to:17402023943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062836] [to:19024881844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19543058096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897131] [to:16059996452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041566] [to:+14387940417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324918] [to:12054104581] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075086945] [to:+13477147736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865635137] [to:+13053404906] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603268288] [to:+13478086162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622989698] [to:+18185401976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667461] [to:15742745714] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884267] [to:14439452784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418127] [to:15199950331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083126172] [to:+13219990603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835350] [to:15409995792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004314] [to:19032531684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174346280] [to:+13477868593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18042216973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144581533] [to:+14144006381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414478121] [to:+19417256537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863726930] [to:18638442916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030950] [to:19024529861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:18136797220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149439] [to:13168217981] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077808444] [to:+14072680685] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474068949] [to:+16477995024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19093590225] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743223867] [to:+15089874966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684769] [to:18435974243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044775097] [to:+19046947529] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712597894] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488352] [to:18172319096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015708] [to:17756889377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325927016] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:14199613516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:14076908528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815199] [to:12762749345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198101814] [to:+15672067630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524404155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136643581] [to:+13476504391] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078320] [to:14388770122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020035] [to:19739556115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033331] [to:12184105034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+14158532178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-20 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447858370549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006181] [to:14148750216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562672537] [to:+13478992504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095196199] [to:+16108804717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077808444] [to:+14072680685] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-21 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447821389780] [to:+447451238610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190404] [to:15186057694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026895184] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013722] [to:13867483922] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954682] [to:19104204770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:15623365132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482161] [to:17155596121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:15169025840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+14158532178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147952193] [to:+14253327952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737211] [to:14106246101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077808444] [to:+14072680685] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795058] [to:16462904866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454993171] [to:+18459407516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:16025090085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056754564] [to:+12138064418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562881299] [to:+18569550282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739431549] [to:+16304892640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788589932] [to:+13475187117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327502] [to:17037316668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:19313371219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138294440] [to:+13134688660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865042] [to:13156228709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477074493] [to:+16079687211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228352] [to:14196516716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203167] [to:14102271096] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672011] [to:18039400033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085672278] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349861] [to:17063336782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106189765] [to:+15852821326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524127] [to:15126798908] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242219054] [to:+13126311629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703341434] [to:+16784345716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720751] [to:17705681760] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17154979165] [to:+16516664694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020339] [to:15813097401] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+13476903028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193296667] [to:+18194122229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10201] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025808454] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097704] [to:13024700714] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136266] [to:12296696108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989729] [to:15186539266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023905867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086602237] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526154910] [to:+17185042288] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313910] [to:18504192348] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047253996] [to:+14088725798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328853247] [to:+18326501160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789144710] [to:+13479193437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162720] [to:19803199408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524785558] [to:+19417256164] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335678] [to:12409889958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974109] [to:14086006229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217619] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301606] [to:17249544312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307943378] [to:+12342312981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103316669] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000590] [to:15812307211] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047253996] [to:+14088725798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482161] [to:17155596121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062737608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15086237169] [to:17742650344] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731142] [to:18146945927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852627] [to:13023672056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513284459] [to:+17784025376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500039A0202] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513284459] [to:+17784025376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039A0201] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131389] [to:13178285159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167619] [to:18326872465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187334] [to:19177766282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095820507] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17201764338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17201764338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007691] [to:14144914828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557800] [to:19804745841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468594] [to:13173322786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E10202] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049191677] [to:+13369383901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762664058] [to:+13366450166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-21 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447913467969] [to:+447451211261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519259] [to:18036050532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:18477220189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186803698] [to:+15817014720] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718174] [to:12675061019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315579365] [to:+12312996473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965527] [to:19102319614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842822] [to:17325015170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179458778] [to:+15178615182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044775097] [to:+19046947529] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411066] [to:17346206690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855904902] [to:+15852823832] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801834] [to:13012475726] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801834] [to:13012475726] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037706892] [to:+19173911128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059103236] [to:17052216251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896034] [to:19515821609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058457280] [to:+12497001046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527145857] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423110] [to:12708362193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433072967] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:14046620733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126005] [to:18038429339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601948] [to:17728126039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023726771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073576398] [to:+13479789928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238918] [to:+14692058056] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605737629] [to:+12602327502] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435974243] [to:+13478684769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19702086224] [to:+19412642555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457745586] [to:+15852825022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551409] [to:19188033980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178263157] [to:+14076333415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308244547] [to:+15154438778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860007] [to:17066140969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919216] [to:16479837939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:19179827171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068144] [to:18433717152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040332] [to:+19142817275] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:13104306673] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738206239] [to:+13479219454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063575] [to:16062591923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897497] [to:18125896512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037176222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193622308] [to:+12262418597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:15735867068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172318733] [to:16036675909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196438] [to:12074783625] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124296593] [to:+12132959402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199229741] [to:+19194156963] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013859] [to:18634403535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835350] [to:15409995792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044662] [to:12146419750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16468361474] [to:+14807390765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336271] [to:17862368662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619380] [to:15105936817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615043533] [to:+14692057146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688335] [to:16786401110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159398057] [to:+13479806844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477074493] [to:+16079687211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306207084] [to:+13309157503] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314686] [to:18506374175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15402959567] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888984] [to:18436390270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614980] [to:17086737601] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326283314] [to:+18328334316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735783] [to:18609422539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167068227] [to:+13477866974] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379180] [to:15163667606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623365132] [to:+16172139015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974591] [to:15704234841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178211133] [to:+17184169174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004620] [to:19026921062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276575653] [to:+17864107761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14248003809] [to:+18458181359] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751215] [to:+17729797187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16363467681] [to:+16367306284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783841300] [to:+17786549602] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049003661] [to:14042464764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138097] [to:15148350490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16267107484] [to:+16467019441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:12709434876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437561330] [to:+13072402162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15036196136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775544] [to:17313251941] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072433880] [to:+19165836795] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693553202] [to:+12695755429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144914828] [to:+14144007691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404579907] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704050210] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053446344] [to:+16139093010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525177] [to:12069533157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606905610] [to:+19298413259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102957280] [to:+19172751919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18126757507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670488] [to:13137821877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:15169025840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-21 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068450] [to:15736443591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086000] [to:17707338603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067129] [to:13217959240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497436] [to:19293402034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292442920] [to:+15104475673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704050210] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857881123] [to:+12138024006] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:15123504297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008051] [to:18127188951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828718] [to:+14073371251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898083] [to:18144282224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459702] [to:19374891405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137905] [to:17652159967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373979] [to:17703674581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17037479418] [to:12025058642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15032099766] [to:+19717328443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326112] [to:12602510242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405334413] [to:+12405587756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184860409] [to:+15184174118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574788786] [to:+14043900261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-21 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176498248] [to:+12174889156] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009745] [to:14185200307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345314] [to:14078445666] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086299041] [to:+18046242623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314262] [to:13309372474] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704945546] [to:+15703973518] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069927681] [to:13065191147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283021317] [to:+19148468426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003140202] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123293147] [to:+18046243522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056259899] [to:+12485375572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628377] [to:19786881955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802165311] [to:+18639493137] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574788786] [to:+14043900261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404877] [to:14434544920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719938] [to:14436982306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056862016] [to:+19286605465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:13102933972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305888] [to:15093680772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14023375717] [to:+12342315115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659930251] [to:+12134786476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196516716] [to:+16149228352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:13102933972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315693] [to:15178616251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167068227] [to:+13477866974] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498775036] [to:+12894601561] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14795614213] [to:+12138221783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850906] [to:14782783283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625781666] [to:+15103136895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144356655] [to:+13147868338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774633] [to:14017440280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609669] [to:12072057152] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863726930] [to:18638442916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804263] [to:16107646866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003080704] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003080701] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080705] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080703] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296071] [to:13372870183] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003080702] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048071152] [to:+17256660310] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967246] [to:18503639195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045315577] [to:+16317707185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:17809350690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475763406] [to:+17185042100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:12709434876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364864294] [to:+13366450997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606693181] [to:+13607884784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:18609410098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886900] [to:+16467677651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480438] [to:16609883760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214023366] [to:+14072163578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-21 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447881511744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022038496] [to:+14692708568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042290] [to:19177535815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084843684] [to:+19172592080] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775402] [to:13046199357] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144356655] [to:+13147868338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080707] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003080706] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046200886] [to:+17702005863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:18019209046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104043723] [to:+18102218447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305301] [to:16367445805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024881844] [to:+19027062836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184262636] [to:+18572327925] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-21 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727521323] [to:19726747676] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155324401] [to:+18508950377] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462956680] [to:+13473899475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804717] [to:16095196199] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029992541] [to:+12026015630] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343645] [to:14045100454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334046] [to:17067505091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500152] [to:13366826791] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500152] [to:13366826791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542643208] [to:+13476304361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198061885] [to:+18193038497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062092006] [to:+13064000246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-20 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447796447079] [to:+447520609736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041898] [to:+16173419082] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477074493] [to:+16079687211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562296469] [to:+18562916292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038686887] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15018139668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013722] [to:13867483922] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17126427985] [to:18126397378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193094735] [to:+15672819409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788897] [to:12038180587] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15086237169] [to:17742650344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:16319656263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338955] [to:14046683224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199613516] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:14199613516] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212723] [to:18763182406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700773] [to:19803194322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035099] [to:12167895983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625676664] [to:+16465472246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762987718] [to:+13477361378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551409] [to:19189467513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364657997] [to:+13369381769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573769963] [to:+12138064390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064479977] [to:+14788455036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165805507] [to:+13479378787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703126880] [to:+14703334922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043769] [to:18654109482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165535457] [to:+17162790260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466696824] [to:+16466876505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017647814] [to:+12134788713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174346280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278967] [to:18625882361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106407169] [to:+14422816738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003270201] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018095] [to:13365809873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130625] [to:13235228906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078444963] [to:+14388078584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807403318] [to:+16233837133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309441424] [to:+13302374156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-20 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277678] [to:17248101425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-20 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089418294] [to:+19086625921] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106407169] [to:+14422816738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003270202] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808032] [to:15858311969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172135299] [to:+17816024266] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153153] [to:12672067273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14166483466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025003333] [to:+17207291211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155324401] [to:+18508950377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494454] [to:13608093253] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801834] [to:14437712804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19023048632] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812158364] [to:+19177739538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402023943] [to:+14197767985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14153408518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185060931] [to:+12134785610] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086299041] [to:+18046242623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086856006] [to:+15085569535] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536917074] [to:+12532480110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168639] [to:15086674952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672302919] [to:+12039904243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122752490] [to:16038921899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774723] [to:16089635531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177508757] [to:+15178615077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15193286148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132097098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225259] [to:19182260257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479657] [to:18484046262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176860783] [to:+13366452470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029942090] [to:+15028041389] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897131] [to:16054316005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072409] [to:15149676387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028807119] [to:+19027021768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609422539] [to:+13477735783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551683] [to:19737566067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878635] [to:19362177816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043458] [to:19022371776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409233599] [to:+12242140336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:15163766882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742018502] [to:+14157127381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377062113] [to:+16785868124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366752694] [to:+19543142658] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:15127165626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080201] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047322320] [to:+16785867634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389334790] [to:+14388078360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902023] [to:12262346627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777385] [to:14844938924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065643091] [to:+13478082090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074853028] [to:+13477868511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638442916] [to:+17863726930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206294048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206294048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973094] [to:15702909432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16186101065] [to:+12132953702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725734] [to:15593125271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15063002582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058325] [to:19024038844] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817241] [to:13153695405] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128091631] [to:+17194265728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664967] [to:14408236417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725285595] [to:12294001944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402814494] [to:+12407435839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133622375] [to:+14132715431] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515792] [to:18502519544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147757104] [to:+19715129773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138585712] [to:+19175804951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998644] [to:13476596356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232984533] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998644] [to:13476596356] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998644] [to:13476596356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358801] [to:12532227825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18478584910] [to:+14155494861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621216] [to:15704193261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433733266] [to:+12405457893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773185] [to:19372419520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417977] [to:19053344550] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703163304] [to:+19703156034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945354] [to:15147965759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:18477220189] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-20 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408597] [to:19054354275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106085176] [to:+14434530310] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365201911] [to:+19196516865] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023045756] [to:+17037750812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068778145] [to:+13479378238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:15127165626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065523] [to:13163058021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340670] [to:13364575176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597537] [to:19084443665] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513593890] [to:+13479377526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606759641] [to:+17603145633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103631975] [to:+19164690523] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128188818] [to:+17736669282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086560633] [to:+13024391984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E60302] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094052568] [to:+18572193895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017431490] [to:+14242835795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787619620] [to:+17029960696] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736965208] [to:+12136036518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403713645] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042072512] [to:+16784343209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105805637] [to:+14242838483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199683578] [to:+18194140881] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673576343] [to:+18133088901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074305942] [to:+15125597443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244077600] [to:+18477969260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282085430] [to:+17605896518] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236359132] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12707767526] [to:+12139296570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409601088] [to:+17027476275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003140201] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434085218] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194027208] [to:+12262411282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17018710762] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CD0302] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086560633] [to:+13024391984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E60301] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178285159] [to:+15103131389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19494686732] [to:+16784968263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788945683] [to:+19175638969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013724195] [to:+19404687149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19093590225] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195750855] [to:+13025850694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084843684] [to:+15085569801] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348513067] [to:+14342340638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122529574] [to:+17736667383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803296594] [to:+14804392377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17743223867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017543027] [to:+19172669615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087478] [to:17242621659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309441424] [to:+13302374156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-21 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451215738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160494] [to:14074853961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127356792] [to:+12679232337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19544484449] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17149008385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12523951228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853079077] [to:+17125257028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951716] [to:16472858749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196954343] [to:+19282977949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094824] [to:19808885282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356546] [to:16016203753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242763] [to:16316788019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065959571] [to:+12679525177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393562] [to:16144466380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136895] [to:16625781666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563523091] [to:18562361670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044414346] [to:+19173834452] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003080202] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402959567] [to:+19177730792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459683] [to:14195519177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366752694] [to:+19543142658] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707610] [to:16319879457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637750] [to:18173746465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196954343] [to:+19282977949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12163014678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12152816039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398236475] [to:+15703977157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409601088] [to:+17027476275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811500] [to:15852841759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123990] [to:16787698846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122194344] [to:+13479971091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812158364] [to:+19177739538] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014307] [to:+19083824084] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774491] [to:15203131757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504695271] [to:+14158538493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542288898] [to:+15129525404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142896746] [to:+19172593500] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163966733] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207159] [to:12693325000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238836824] [to:+12138023221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345404817] [to:+18018907306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267571033] [to:+12262411045] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660155] [to:12057374489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108244250] [to:16093310629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042100] [to:13475763406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408633] [to:19165820506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433134] [to:17329126316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155057776] [to:18034638606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736664054] [to:17735402748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194311666] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069927681] [to:16399998161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737211] [to:14106246101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095719794] [to:+17097001505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-11 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388770122] [to:+14388078320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508069548] [to:+15817040494] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314262] [to:13309372474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314686] [to:12255050363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/0-OSI_model b/alx-system_engineering-devops-main/0x07-networking_basics/0-OSI_model deleted file mode 100644 index 51993f0..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/0-OSI_model +++ /dev/null @@ -1,2 +0,0 @@ -2 -2 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/1-types_of_network b/alx-system_engineering-devops-main/0x07-networking_basics/1-types_of_network deleted file mode 100644 index 2d6976f..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/1-types_of_network +++ /dev/null @@ -1,3 +0,0 @@ -3 -2 -1 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/2-MAC_and_IP_address b/alx-system_engineering-devops-main/0x07-networking_basics/2-MAC_and_IP_address deleted file mode 100644 index 5f1d0ec..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/2-MAC_and_IP_address +++ /dev/null @@ -1,2 +0,0 @@ -2 -1 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/3-UDP_and_TCP b/alx-system_engineering-devops-main/0x07-networking_basics/3-UDP_and_TCP deleted file mode 100644 index e13c5bf..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/3-UDP_and_TCP +++ /dev/null @@ -1,3 +0,0 @@ -1 -2 -1 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/4-TCP_and_UDP_ports b/alx-system_engineering-devops-main/0x07-networking_basics/4-TCP_and_UDP_ports deleted file mode 100755 index 37044da..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/4-TCP_and_UDP_ports +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# script that displays TCP and UDP listening ports - -netstat -l diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/5-is_the_host_on_the_network b/alx-system_engineering-devops-main/0x07-networking_basics/5-is_the_host_on_the_network deleted file mode 100755 index 4b21913..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/5-is_the_host_on_the_network +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -# script that pings an IP address passed as an argument - -# ip variable -IP="${1}" - -# filename variable -fn=$(basename "${BASH_SOURCE[@]}") - -if ! [ "$IP" ]; then - echo "Usage: ${fn} {IP_ADDRESS}" -else - ping -c 5 "${IP}" -fi diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/README.md b/alx-system_engineering-devops-main/0x07-networking_basics/README.md deleted file mode 100644 index 3e4adaf..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# 0x07. Networking basics #0 - -## Resources - -- [OSI model](https://en.wikipedia.org/wiki/OSI_model) -- [Different types of network](https://www.lifewire.com/lans-wans-and-other-area-networks-817376) -- [LAN Network](https://en.wikipedia.org/wiki/Local_area_network) -- [WAN Network](https://en.wikipedia.org/wiki/Wide_area_network) -- [Internet](https://en.wikipedia.org/wiki/Internet) -- [MAC address](https://whatismyipaddress.com/mac-address) -- [What is an IP address](https://www.bleepingcomputer.com/tutorials/ip-addresses-explained/) -- [Private and public address](https://www.iplocation.net/public-vs-private-ip-address) -- [IPv4 and IPv6](https://www.webopedia.com/insights/ipv6-ipv4-difference/) -- [Localhost](https://en.wikipedia.org/wiki/Localhost) -- [TCP and UDP](https://www.howtogeek.com/190014/htg-explains-what-is-the-difference-between-tcp-and-udp/) -- [TCP/UDP ports List](https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers) -- [What is ping/ICMP](https://en.wikipedia.org/wiki/Ping_%28networking_utility%29) -- [Positional parameters](https://wiki.bash-hackers.org/scripting/posparams) - -## Tasks - -
-0. OSI model
-image -
- -
-1. Types of network
-image -
- -
-2. MAC and IP address
-image -
- -
-3. UDP and TCP
-image -
- -
-4. TCP and UDP ports
-image -
- -
-5. Is the host on the network
-image -
diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/0-change_your_home_IP b/alx-system_engineering-devops-main/0x08-networking_basics_2/0-change_your_home_IP deleted file mode 100755 index 8a2b4f8..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/0-change_your_home_IP +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash -# changes the following domain resolve ips -# localhost from 127.0.0.1 to 127.0.0.2 -# facebook.com from 157.240.11.35 to 8.8.8.8 - -cp /etc/hosts ~/hosts.new -echo "127.0.0.2 localhost" > ~/hosts.new -echo "8.8.8.8 facebook.com" >> ~/hosts.new -cp -f ~/hosts.new /etc/hosts diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/1-show_attached_IPs b/alx-system_engineering-devops-main/0x08-networking_basics_2/1-show_attached_IPs deleted file mode 100755 index dd4180d..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/1-show_attached_IPs +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash -# Displays all acive IPv4 addresses on the machine. - -# a different way using ifconfig but now ip is a new command and ifconfig can be missing in some os -#ifconfig | grep -Eo "inet (addr:)?([0-9]*\.){3}[0-9]*" | awk '{print $2}' - -ip -4 -o addr show | awk '{print $4}' | cut -d "/" -f 1 - diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/100-port_listening_on_localhost b/alx-system_engineering-devops-main/0x08-networking_basics_2/100-port_listening_on_localhost deleted file mode 100755 index 4ae2491..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/100-port_listening_on_localhost +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# a script that listens on poer 98 on localhost - -nc -l localhost 98 diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/README.md b/alx-system_engineering-devops-main/0x08-networking_basics_2/README.md deleted file mode 100644 index 5b819bb..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# 0x08. Networking basics #1 - -## Resource - -- [What is localhost](https://en.wikipedia.org/wiki/Localhost) -- [What is 0.0.0.0](https://en.wikipedia.org/wiki/0.0.0.0) -- [What is the hosts file](https://www.makeuseof.com/tag/modify-manage-hosts-file-linux/) -- [Netcat examples](https://www.thegeekstuff.com/2012/04/nc-command-examples/) - -## Tasks - -
-0. Change your home IP
-image - -
- -
-1. Show attached IPs
-image -
- -
-2. Port listening on localhost
-image -
diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.jpg b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.jpg deleted file mode 100644 index 7314a5bad69266eef0340c1d2b0d663a30868d56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 53408 zcmeFZby!>7x-Xg`c1z%erjT^u6mokyWPkD4geK^ z3_$!A|CiD~^l6g;0Pr6H0QWxsBhN4a0I2c<0A5c1BaikA0PxHg06_QK8rU2BjhXwm z`@5#50Kk4O0Dz+f0O0=s03O5sWb_|(|6z;&MAlcgb;xezw7LD60W1L~fL8zrz#3o# zV7o<}fY$&H0PoEdKmu^@?r-|NzjsUbvF`t-M_5=7u&^IJevJJH8~gFoXHOqL!F_^_ zjRVBNefIo0@cHAXc=&kF@o(|--;Lb)UGv`kN4FK9Kf!)-oBKaVH{SrjM|TJA;orMM z4Y&)ua}RjurWHW`+jnpIy7Q+30Dy-Nu4-0@q*wbHK!O27oYMw1H0HELLwe<6(g6AG3XI&T5eT!4NXIP=g6qI z^a^D5_klrv2{mK$PZ_1)5AZm|l(F!s4eUNfmcFo0|Ne`U zi(6bp)$kK?;2}ZT;5?1m9wDuyQAYF4B;e_-tapL;fB;dz)o+*mzw|$+0es6Q?R1SL z+@FH(5uJTp^hl@|`W^}af>YWT(ldrt`x?6=p9L)wsd1N08{%iU5`Lld-@G2 z)rg<|_-4TAKv#?Dfi2MwWFmyE{kCe5lMiMqV%@cf-0lJ{48 zi4jYM7H1EfB!RQ|+w3NdSTDrW>ymE@;c&myt2Ghf0gGr+ z#D2;rH*w^)Uu^Yn)-s9q?0Wu*Hmi}Es^<>l`Hv0trnK1O&pj_>)}=Z&3lNKx7)1CX z@>1yrAbYSh^$BuNTowjJYn>z)Nz_B1EyGc=7T13i0I)TY*CCXe9GhlJJ1L!3WSWQh zV)3pVa6G}*kXSKMl`ktNc53=ml^}ZYd;lF-sg%m8{m5G#6|EO^r6Fq8a#{$5P%hF? zfWK5;NAz{@oRbf#PS5HFb$rf_Yv?J~p@!T5NMnul?LC`|0ko^h7S~)i06#YdU8J;( zMvee>fdon~f>p1XMrG+btiYMS>`gppT`eVsHbV+(9aC|% zhYpQ-6ynm5^T659vJjVIDV1LPL^gkS8J!Z13qT3ryFtw;X`W*q=Br0y?S74%s`Mqp z;5=39p{fP-MgX4Y3qK$e!w*cT*_;14&-_T1zzO#)>|6>L@(1)Zn-g9Ox6ex`VqZsp|nN^NnR6O#?G(H$)T3H#&v)*nu49GkM> zsdPiv=ml_(Ry13Vltr>Fm)&0IdSJ%@vyX_X_@QP$B(mysKI|>XAZVpYP5j@+PQojY zZ+(H55D1YtHT8Jl9|pgADDj562<<|dKha4UF{}EvI$E_a^gGoqL^$y;L^!C1aH)j$ z44ax&_x(2lrmSdF1}%+Q^qL#@wH(lht7wtm9imWeO*sWJVMQT~B+a(%pD)O5e^AQ% zMp3Yms917uY@<3qQ%3qAUxQE`CFV#|8g82Vit)-CSVK9QOFE5YH5xIO2voJEjgA2# zktQ|7?(O$h@pQEIv{JC-RE!{2?3@QIbm^^(RZwKcn(-}}{J?aK%b2b!s%Dq#VJ^Tm z!1!mvDBcgks|o~BPfvK5@1CF59DwU+!v*`jcn7mdvuoDd^A<@`?ivlFlCZi^yAP^z z%8kBnF)z97&l&d|PY3q0Ku}fqt5kB3$UmmO-A++hEBkTee=HY^**z}92T#x&`*IF~ z)eA8p=aTcDd5!|hs6rP`7gjrZ_0miMy#pWXoGbQd=i zSp7I1*PK3QX}#;T=6)9jI+?YTjOLw`?S(3**#UtGX{~gLcXU}^`B)Uk?U5lCm1Bo7 zVc>A0_XFHeW{khIBpj?VLIvlXVVC>RAbB?;%t(#jSyVT8;mA^Bc(`3s*6t1+RU-1^#l?1*Ygtn12h3q;TGFQyPUw@+ek^T`lE>ER3s=TH#QExP8+fQA1Ub?Z1@iWq7fo;->OpQ`nct8CYIMj~Q1cto)kK)nsi ziGdfPp|y|S1CRxe#yl8n;wezAJybLUdA$qSxCx%!&ToIjd}#{Za(%ox+)<(TBf3KM zWzMLMb-zL(r5$TI_4JQz;oKL-5IJ52;*J?Jd0l})=)dXKb_g#>jCP1SurF%CUZeFDxj{#NOg%U9i?`&pkJmpn`Tv(piemmL5Nb>#n(976CE6WNwyvjtSRBSz zVf}>7XoSQLYg2`FT&rS{KUzGFIQL0<`oyNntFjERe;g$=#AyA;@#8Pp0?=)~*rO0F zANVxS37bX45-*u(J3KSAMefMa=`hY)Z+@vl=vDQ>L6Q5gMJhW~#AE!>ZfNh-=7h;U z`?7Gh$9v{QBBSWV7aQC#V<+3_)cr^fbWc+kC;l8=(L?X8QLN;^D+FfCWE!R4B~V<8 zxHMwYotP`X5`+*466gLvrY=N;Hd}^V#s*?#7rBPBqna$_|05z<@v(;Pd8z_tlE*bgFjAg5eqB zQ@mtrjY`&#s`iuj+G!v&?JSb-c1LW1^we)H{Gg2d1bqla)_g$`F1NlQjY0uvHaTP5#B z)5X;eUsW#k&`6aw_p<-2!F-Lk7p90!>DPiLG-tqqz^7Yu9dg^q3Cia!*#c?iE>W+t z-z_AnY$$!iIiQ|40i{l{j_R<9eae_KWFvk?i|LsV+gdgwYu~#R4<_UY9&FCbD>9A` zz{1Bi@h4?lO2?+AX8(MDBn3;uaKW;2m&IM^Lr<)l@jy$5QJVMT_jJ%-NVZ1D%0{n~ zXLjoEzxin5ByNmbN`{c%pJIJI!8>Knwv^3uJ6O$9o%~&T62(G98&>37$*QW7vWf(_ zKz>(#J{o&H7N3lUn|tsnrVg3O#dX`Ox1q?>%0;cv!0s|Vld-w#;`6s--p*kUukFWg z05g4I4q9-6q+`^#uPpLDQ~?k!qO$l)L_yGNfpGM^Et7Qfps7i9X(?h3Bs{#z!Nn!8 zof?Tx@ivwDgpaz_HlVAhqbNE+oWvr>u$owfDAmE~N@ zUi2PtZY<5QU@>rvtGi#rGukHD)Qlp+(r6A3U7&Xql$BI+EZ+;MAj0dd(>@_;*1cq6 za8cf#mYQX(g`vi0iwzY_#s^Kl&WViM&-a=|F+WAeG;g^iUC7{hF7FZ(J8}XWyYa{5 z5==>4?IKqAQ(9%e7OIC%>k|yWEG!5kJGJkH+IF@969+S=>=kD^(B5Sec%~MDDw2}g zMUL)7?X41`yIdUj%BIt*YEt}(b^@Wh_`7Lk8YBu*lld8ld{gF?prF7>qZ#>&9Ih>$ zZvaiuw}0;MctuiUv3pOyHwd(H-vD0q*{9uAh>qu>9VGQ5mYWx!a~+|3#6!&DCnA45 zmrhJPBFQHwyfZ?wk?q7S);bs^T1gYa*b_1fIu9aogU9FBE((_>yDxwb71W(t2dt+T z5XojO@YDD|1!%w&6hqaZxz}!7?qSW)94sw1=l@wO*Un6jiQe zO?Wc${E7pnLyxRk7a>x1!WBdD5eu7Wn*F-fh3o=d`{`Dl;=G`=pDE=WT;K>xv+-I_ z&!e=Taq-t$#plXx<=aBB3qafp6?XyC@f9I*2opLl5)VO@4y9hHo?;_8gU>lJ1|G93 z2jVi$e%YW$uFZF(af!ejH5`h5?f0bSmL=c}2XtcTmZCc&mt(V0M z*cezg8?)5=kGw5?>fb1FcK36^{rYY^yqsBW;gLi^+PK*)q=GbJ+SNe;G2N;F1jjPq z3)yfig2@*tW+t>o^&0Rw?DGy?GdUC)%#*F;KO85YE?OQ#Y4e6M$^}W++=TrHHx*x< zK!0S+Fw-1GMn*>D4ON&;dq23g((v}Pw5Cq2bwwn4kUyxcSqrXz54aQZ8a`Q+t6a&2 zug+|#TTtmkRR9&z5J96mqj)%|L>(nf;o8qK!;0ERRthoJukJwx$=}4}efVTHGg_&M zRO@t3qbam9tq`j)GIXtA#DpmnI95+y&*Z{1r*Ot)%U)brRnEqNjKgk>a=8M+Do_qku%XUqP_>r7N zim#G+8(;!UX{eQ61&U#WVQg&w$9=zRW=q3-ix6p$@lG)|$ zYui~-^wB+`;ZAGUOJ9=g`_+34xbyShdHh$vqcCyhN$q6;avuwgn1Mdg7vkFTkp?Rsk!}M8pL+uR7}bSF+$}sZifd+sULxVcz*kL z4&T%%RmEx;*XpM%R8Px|7>=ndWBjkC1^W!i0?{FUopMn56TJ(<)uFmk+Vd!6WkD6e z$+^#jAbIk6jyeSmW@K`_eF~w87gdh;7D^*pOG7|0^lk=AA5}{eZt`Le#JsZP{3r@n zRdP`=QnU87t@`_@+CpN{e4WpOByi4Z>3h62>@Kk(2}Rs0rq@ zb3fp(;<0v5Q*Munkxm@dr_eV#XGrL$L}Va2%g-3$^r5R7NHg1eHPdT&MP& zNRNxwPfW>~0|)UZ+5@Q2QMe`{>LW+W$gGyYPdY)k)$`e)iccy}9JqLx%%Kozqm-OP zrHLeELnZMGp|@|Rh6Sg1c{B((dPi~EJKJMp&-gc9NpC_&ZqG#Pu^`RMnQ(wOW-9_Ia@1ythm@c2QEMdh0CE@MexgSZ_7MFPY zc#cXFgYUz(mM^jA=a7jvfVZDbhjo)V>Z?o1^vl$q){I&Tt8+>@S<+7-;Ns49?Ka6- zN&PQOHRiMFO09kO?DCKd%6XMuu7(N8GNIcP7inQJF5Gd4rM>EQ#Hj;{2Lit;6H-E zc^`11IF6#AEF(?fdD5_(R0c<XUxffL0=>S}elq1(d=Bi{A``)L;$ z+cN_6KqNC)fa0W@xw1_e(xg^RR~B=AI}@DXchtN z&8qJ1ZFQ2>R+Fk>Vy5O4_4vf2VNuMOpU~%i;M70H{A0svDu0_tTEN}D-H4ov@Z2cl zdv?s=`eDcOyi{LmH4>83emdOj)~LX6-@G7mE@+577{x`iOT$U}=0DCp8M~{@{h_r_ zULL3|HUj`8Q*Quwgti}sjT@f}Av-dpPn;rEU7_wy3dsaHIudjB4JrPZ<0Im*rWcsa z12XM2wmf|@(yr5EW%VX^CEmE_-b;D@YEXAjoR7J+h@>tsOvES@t#2PZvHvPtG>9Xx z>G|V-dnyMEI^{_DTCris3wfeuaibXr=DJja?9(K^;|-=@pypy)~qxGUY4p7}nD=*|(_gFS|vnRfTf9Km9o z;!OXk{Mr13T(0ft&Aus=7v7*8*{hRymQw<-}aj;5aSjM|`? z8>`u=Af_W!#c_UlmBf{aUN6ff;o_u=1SWdvM$4SGX%f~5)*YZSf`S=dCOaLKR6j^` zB++(sVUwH=U7uUcG0%E;#SOC$D~Ud zo9q$e){MSgUn$lopc$ABN_Be@ET!gWE7;YrgMSdUe*`%XwL>_N4JmHL=)a%ZN_^ID zaG2V$chSWj+LWcWDV$cGUz|5+8WK4=1Cw{py*9|0EvvJmaBwrrYAJuiT`!|nx|RM2 zZbMI-IUe>zGtq1pc-|;+y;l<%c|_HT;2x`}JgXb-fi?%P*AVB}?*r~hy#5a(9~Ku) z7e^tuNHf7&N(-VBplzbcYEnh~$*v7aDpu4&i;S+MV*;IUDFdBe6Tc?uX;2(8$G3kx zG3gg3oe}=J` zX@Q6$6%t0tq|@%37&j8>FVL`Q%a7C$Ti&y|^YOgly9eR5%SiS!A4C5Io7BA!VFLOo zkFm!p)#&$w6UhFAmNF%W^ zHTcPQ;q(J?a5z)tMGRhO=pW86u&PraL)r7IdFK74ZH8Il@L7U_hx*^!TH5BxbQ-E_ zZQAC3DDwDJ;!@=%nknS-L)Q-`lagbr$R&<6t;igcb2~E~)2!ICrDrb^1#M<(-M?x7 zVZkk!k~5($6)qNvAmp*pRLst3cYI>LPt&6EB*^$6P%FC};>4*O+cwJ|$&)0rx`1@3 z7Ay*Yw5Nju%dE8h!Y>;Pgts-*>?MO``Qg`JI-}9G=p;ZJJW^xRpJ)(da zO?Y747sOGOiAJlzU72rR2-AooGn9$Xa-wLaj9y+EsUD8;7NofNBPh7Mbu|!7L(JQm zU4~3qp~H$rm5Iuwz=S?cfe~oc3cm$bE~>j|Hqkh z6p5v2j>PAoy*Y7R_-HItBJlRD37ymr%y061^LJOfzgeNX9WIcrHIl+rUm&I26{OQt z6Mv2qzj~Tt2jCD%#XnM3_bx)#pBxePI{ak49u4#1WqF>qP~>~6IGf$=fI0~tZ(npI z7%vu54;kj^`ly5*2vj~{t(c&CaEe3{zxszuKc8_qG5_Jc3W~UzUaNUzU3XDoE_x8# zalPZH>RJE0M1f@ti7;CKX&WWB=&t>c#)mjBlOVDtKL168CwjxI+Lm`ZXtAB7(dT2ArTHMoA)h z5{h6XVP*rgk`kVGO8PZBS1!C5R;EZS>>T<|F7`q%@8E3JT<~d&J{}XDUwHD_|5)cL zsfg0gBJI~6R=0ja&CXe+{uTAufk)h{JNfXK@XW~t%bpQS`}_zh0X)1d!Oj3W-!jF# z1Z93>Y15oeX3itxgh!oWg;=N@4Z#SDpmHwt(yn}A-z8bOubcE_v3Q+=877kRk;I8f zw0Ygbrp6>DMtR58NnAWIviwYpqNHyfZka)+0c%t~y_zC1FacEt4Q-G%eZ%{eBq!nB zhDb4ePp?J?bKX9FBo$jrVZ8l2Ioge&7<_+8Q-mcllU+IC^S{U@VDcLx@n7p*>|Ye- zp2fecB&>f?7@YsB%Kx6f{qIy|Db8TYiRxz4bw`l5Z#46}r_+-y_&!|9aElFlB7sI? z-1||U{%9x3xhDZ5Ftn`lMZ2k9I_R%;XvZ&S<_c~Ax5Gfe0otqL29QySk=}8vQbCo~ zS%mRcv=U)$^z1$l{q&@-LBX`T@$puCK3q}}Z<5D)vRV*j($QQ_T?QDj-qt7&-##fE za-(M6{yE0I`#2!?odTEu%V>x+KU{%Xu2pg=;AyX-U<5VQOBN$L z66es1h@VZp`Tf6&!dea74`SR+$~sn1$1)heouZ1{ND}6)p;dTq0qT&V@4y9i`lB!r zgSi0^Q``VTRV^7>3qI2Kxv!hDN^4x~u+-qB(`PeYQ&V%{hxgc;wEkeFRtR})Xwsm< zPRCsWsai#;Op7;i!Zv75G2c|b{e6IaxQZ!X_iFHzHN?-ep0tO3)#e#?Nnq?bUdp?I z(158$KSb+gMYaPx<`po6}`$zTV`%;2r zGV;wAosV-GSqRhx5`ts#cSJwSEgJ5ZTj5r>rbDcSL!2!$xHo-GeVJ?oCC#dI{oY(e zEaAE6yRm)J#f0upI-yw!{nDjl=p-+ah>2ZZu2h?WX?pvZ4`TPg`0IxHZ<|8TbvZPr z*Syp}ZRGea<=J-$pTk2-j*5I`o<*;_uQ`c4jo48tX_RCm@tizPqV{bEmAtU(u?$R7 z7&b-QQFhp2Z^-N>c`t><5p3U8W%0`9F^vpGrY!9zJB=c%AR<#Jh5>i?D}v4G9*cxk zV@nrMfy?V3PmXgqMxZFq#oLFApH^*7khtlZ>$ew*1%c+L5o}3a?qKWc$)sVkIB